/* assets/css/section-hero.css */

/* --- BASIS LAYOUT --- */
.section-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Volledige schermhoogte */
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Correctie voor fixed header */
    margin-top: 0; 
}

/* --- ACHTERGROND & ZOOM EFFECT --- */
.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* De langzame zoom animatie */
    animation: slowZoom 20s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtiel verloop van donker (onder) naar transparant */
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.1) 0%, 
        rgba(0,0,0,0.2) 50%,
        rgba(0,0,0,0.4) 100%
    );
    z-index: 2;
}

/* --- CONTENT --- */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--container-width);
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
    color: var(--color-white);
    /* Lichte blur achter de tekst voor leesbaarheid */
    /* backdrop-filter: blur(3px); OPTIONEEL: Zet uit als het te druk wordt */
}

/* Typografie */
.hero-subtitle {
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: 2px;
}

/* Outline effect voor het woord 'LEMSTER' */
.hero-title .text-outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-white);
    font-weight: 300; /* Dunner voor contrast */
}

.hero-description {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* --- KNOPPEN --- */
.hero-actions {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Primaire knop: Wit met Goud hover */
.btn-primary {
    background-color: var(--color-white);
    color: var(--color-text-main);
    border: 1px solid var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Outline knop: Transparant met Witte rand */
.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    border-color: var(--color-white);
    background-color: rgba(255,255,255,0.1);
}

/* --- SCROLL INDICATOR --- */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    opacity: 0.8;
}

.scroll-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-white) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

/* Bewegend lijntje in de scrollbar */
.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* --- INTRO ANIMATIES (Fade In) --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards ease-out;
}

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

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

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Vertragingen voor trapsgewijs effect */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.2s; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        width: 100%; /* Knoppen full width op mobiel */
        text-align: center;
    }
}