/* ========================================================================
   SMG HERO SECTION WIDGET
   Vollbild-Hero mit Video/Bild-Hintergrund und CTAs
   ======================================================================== */

.smg-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background Styles */
.smg-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.smg-hero-bg-gradient {
    background: linear-gradient(135deg, var(--primary-red) 0%, #b91c1c 50%, var(--primary-dark) 100%);
}

.smg-hero-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.smg-hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smg-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 41, 55, 0.4);
    z-index: 2;
}

/* Content Styles */
.smg-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    width: 100%;
}

.smg-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.smg-hero-title {
    /* Use unified title system from common.css */
    font-family: var(--font-secondary);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--smg-space-lg);
    letter-spacing: -0.02em;
    background: var(--smg-gradient-brand-alt);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.smg-hero-subtitle {
    display: block;
    font-size: 0.7em;
    font-weight: 500;
    color: var(--accent-blue);
    margin-top: 0.5rem;
}

.smg-hero-description {
    /* Use unified subtitle system from common.css */
    font-size: var(--smg-text-xl);
    line-height: 1.6;
    margin-bottom: var(--smg-space-xl);
    color: var(--smg-text-dark-secondary);
    font-weight: 400;
}

/* USP Bullets */
.smg-hero-usps {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.smg-hero-usp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.smg-hero-usp:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.smg-hero-usp i {
    color: var(--accent-blue);
    font-size: 1.1rem;
}

/* CTA Buttons */
.smg-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Scroll Indicator */
.smg-hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.smg-hero-scroll-indicator:hover {
    color: white;
    transform: translateX(-50%) translateY(-5px);
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.5;
    }
    100% {
        top: 8px;
        opacity: 1;
    }
}

/* RESPONSIVE STYLES
   ======================================================================== */

@media (max-width: 768px) {
    .smg-hero-inner {
        padding: 0 1.5rem;
    }

    .smg-hero-usps {
        justify-content: center;
        gap: 0.75rem;
    }

    .smg-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .smg-hero-scroll-indicator {
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .smg-hero-description {
        font-size: 1.125rem;
    }

    .smg-hero-usp {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
} 