/* HERO SECTION - PANTHER DESIGN */
* {
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    padding: 0 !important;
    height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100vh;
    overflow-x: hidden;
}

body.site-header-body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

main {
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
    background-color: #000000;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
}

/* Sanfter Verlauf am unteren Rand für weichen Übergang */
.hero-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.7) 60%,
        rgba(0, 0, 0, 1) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Verhindere dass about-us Section den Hero überlappt */
.about-us {
    margin-top: 0 !important;
}

/* HINTERGRUNDBILD MIT PANTHER */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://compiaz.b-cdn.net/Compiaz%20Design/images/Hero%20ompiaz%20DEsign%20Panther.webp');
    background-size: cover;
    background-position: center center;
    z-index: 1;
}

/* SCHWARZER VERLAUF (Damit der Text lesbar bleibt) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(90deg, 
        rgba(0,0,0,1) 0%, 
        rgba(0,0,0,0.8) 40%, 
        rgba(0,0,0,0) 100%);
}

/* TEXT INHALT */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 0 40px;
}

/* TEXT STYLING */
.hero-label {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #aaaaaa;
    margin-bottom: 20px;
    font-weight: 500;
    border-left: 2px solid #f03a70;
    padding-left: 15px;
}

.hero-wrapper h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
    color: #ffffff;
}

/* Der "Break Boring" Effekt passend zum Panther-Ring */
.highlight-text {
    background: linear-gradient(90deg, #f03a70 0%, #e91e63 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

p.description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #d1d1d1;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 300;
}

/* RESPONSIVE ANPASSUNGEN */
@media (max-width: 768px) {
    body {
        padding-top: 0 !important;
        padding-bottom: 80px !important;
    }
    
    .hero-wrapper {
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
        padding-top: 0;
        height: 100vh !important;
        min-height: 100vh !important;
        overflow: visible !important;
    }
    
    .hero-bg {
        background-position: 65% center;
    }
    
    .hero-overlay {
        background: linear-gradient(180deg, 
            rgba(0,0,0,0.3) 0%,
            rgba(0,0,0,0.7) 40%, 
            rgba(0,0,0,0.95) 100%);
    }

    .hero-content {
        padding: 50px 20px 0 20px;
        text-align: center;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(100px);
    }

    .hero-wrapper h1 {
        margin-bottom: 28px;
        font-size: clamp(2.2rem, 9vw, 3.5rem);
        line-height: 1.4;
    }
    
    .hero-label {
        font-size: 0.85rem;
        letter-spacing: 2.5px;
        margin-bottom: 20px;
    }
    
    p.description {
        font-size: 1.05rem;
        margin: 0 auto;
        line-height: 1.7;
    }
    
    /* Scroll Indicator höher positionieren */
    .hero-wrapper .scroll-indicator {
        position: absolute !important;
        bottom: 130px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 100 !important;
        display: flex !important;
    }
}
