/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url('../assets/garmisch.jpg') center center/cover no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    will-change: transform;
}

/* Modernes dunkles Overlay für bessere Lesbarkeit */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(139, 115, 85, 0.2) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    padding: 3rem 4rem;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: normal;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 15px;
    font-style: italic;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        transform: translateY(20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
        height: 100svh;
        /* Moderne Browser: ohne Address Bar */
        min-height: -webkit-fill-available;
        /* Safari iOS Fix */
    }

    .hero-content {
        padding: 2rem;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .scroll-indicator {
        bottom: 20px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }
}