/**
 * Enhanced Hero Section Styles
 * Inspiriert von React HeroSection mit modernen Features
 */

/* Hero Container */
.hero-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 2rem;
}

/* Background Image mit Gradient Overlay */
.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 39, 77, 0.6) 0%,
        rgba(15, 39, 77, 0.4) 50%,
        rgba(255, 255, 255, 0.95) 100%
    );
}

/* Snowflakes Animation */
@keyframes snowfall {
    0% {
        transform: translateY(-10vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) translateX(100px);
        opacity: 0;
    }
}

.snowflakes-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.snowflake {
    position: absolute;
    top: -10vh;
    color: rgba(255, 255, 255, 0.7);
    -webkit-user-select: none;
    user-select: none;
    animation: snowfall linear infinite;
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    padding: 8rem 1rem 4rem;
    text-align: center;
}

.hero-title-section {
    margin-bottom: 3rem;
}

.hero-main-heading {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    color: white;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-family: var(--wr-font-heading, 'Quicksand', sans-serif);
    line-height: 1.1;
}

.hero-heading-large {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: clamp(1.25rem, 4vw, 2rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    margin: 0 0 1.5rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1.4;
}

.hero-long-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 3rem;
    max-width: 48rem;
    line-height: 1.7;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Countdown Timer Container */
.hero-countdown-container {
    margin-bottom: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .hero-cta-buttons {
        flex-direction: row;
    }
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    border: none;
}

.hero-btn-primary {
    background: var(--wr-color-gold, #d4a574);
    color: var(--wr-color-navy, #0f274d);
}

.hero-btn-primary:hover {
    background: var(--wr-color-gold-dark, #c49564);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--wr-color-navy, #0f274d);
    border: 2px solid white;
}

.hero-btn-secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.5);
}

.hero-btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* CTA Banner */
.hero-cta-banner {
    background: rgba(212, 165, 116, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid rgba(212, 165, 116, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.cta-banner-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.cta-banner-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--wr-color-navy, #0f274d);
}

.cta-banner-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--wr-color-navy, #0f274d);
    margin: 0;
}

.cta-banner-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.25rem 2rem;
    background: var(--wr-color-navy, #0f274d);
    color: var(--wr-color-gold, #d4a574);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(15, 39, 77, 0.3);
}

.cta-banner-button:hover {
    background: rgba(15, 39, 77, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 39, 77, 0.4);
}

.cta-banner-button-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Tip Box */
.hero-tip-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.hero-tip-text {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--wr-color-navy, #0f274d);
    font-weight: 500;
    margin: 0;
}

.hero-tip-text strong {
    font-weight: 600;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-indicator-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0.125rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .hero-content-wrapper {
        padding: 6rem 1rem 2rem;
    }

    .hero-title-section {
        margin-bottom: 2rem;
    }

    .hero-countdown-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-cta-banner {
        padding: 1.25rem;
    }

    .cta-banner-text {
        font-size: 1rem;
    }

    .cta-banner-button {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .hero-scroll-indicator {
        bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 5rem 1rem 2rem;
    }

    .hero-title-section {
        margin-bottom: 1.5rem;
    }

    .hero-countdown-container {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta-banner {
        padding: 1rem;
    }

    .cta-banner-header {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }

    .cta-banner-icon {
        width: 1rem;
        height: 1rem;
    }

    .cta-banner-text {
        font-size: 0.9375rem;
    }

    .cta-banner-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .hero-tip-box {
        background: rgba(15, 39, 77, 0.9);
    }
    
    .hero-tip-text {
        color: white;
    }
}
