/* ============================================================
   LAYOUT.CSS - Grid, Header, Footer & Secties
   ============================================================ */

/* --- HEADER --- */
header {
    background: var(--color-bg); 
    height: 90px;
    width: 100%;
    border-bottom: 1px solid rgba(59, 35, 19, 0.1); 
    position: sticky; 
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative; 
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- LOGO --- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-dark);
    text-decoration: none;
}
.header-logo-img { height: 55px; width: auto; }
.logo-text { font-family: var(--font-logo); font-size: 32px; font-weight: normal; }

/* --- NAVIGATIE --- */
.nav-list { display: flex; list-style: none; }
.nav-list li { margin-left: 30px; }
.nav-list a { 
    text-decoration: none; 
    color: var(--color-dark); 
    font-weight: 700; 
    font-size: 20px; 
    transition: color 0.3s; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}
.nav-list a:hover { color: var(--color-gold); }

/* Twee verschillende signalen, want ze betekenen iets anders. Zweven maakt het
   woord lichter: "hier kun je heen". Waar je NU bent krijgt geen andere kleur maar
   een streepje eronder, als een potloodlijn: dat blijft staan terwijl je leest. */
.nav-list a { position: relative; }
.nav-list a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -7px;
                     height: 2px; background: var(--color-gold);
                     transform: scaleX(0); transform-origin: center;
                     transition: transform .3s ease; }
.nav-list a[aria-current]::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce) { .nav-list a::after { transition: none; } }
.menu-toggle { display: none; font-size: 26px; cursor: pointer; color: var(--color-dark); }


/* =========================================
   HERO SECTIE (FIX: TEKST VOORAAN)
   ========================================= */
.hero {
    height: 92vh;       
    min-height: 550px;
    background-color: var(--color-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-slideshow { 
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    z-index: 1; /* Achtergrondlaag */
}
.hero-slideshow::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(59, 35, 19, 0.4), rgba(59, 35, 19, 0.6));
    z-index: 2; 
}
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0; transition: opacity 2s ease-in-out;
}
.hero-slide.active { opacity: 1; } 

.action-full-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 5; }
.action-full-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.action-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); 
}

/* HIER ZAT HET PROBLEEM: Z-INDEX VERHOOGD */
.hero-content-slider {
    position: relative;
    z-index: 100; /* Zorgt dat tekst ALTIJD bovenop ligt */
    width: 100%;
    max-width: 900px;
    padding: 20px;
}

.content-slide {
    display: none;
    animation: fadeContent 1s ease-out;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content-slide.active { display: flex; }

@keyframes fadeContent {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.standard-mode h1 { 
    font-size: 3rem; color: var(--color-white); margin-bottom: 15px; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); font-weight: 700; line-height: 1.1; 
}
.standard-mode p { 
    font-size: 1.3rem; color: #fff; margin-bottom: 25px; max-width: 700px; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7); font-weight: 600; 
}

.action-mode-centered h2 { font-size: 3rem; color: var(--color-white); margin-bottom: 5px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); font-weight: 800; }
.action-mode-centered .action-subtitle { font-size: 1.6rem; color: var(--color-gold); text-shadow: 1px 1px 3px rgba(0,0,0,0.8); margin-bottom: 10px; font-weight: 700; }
.action-mode-centered .action-body-text { font-size: 1.2rem; color: #fff; max-width: 800px; text-shadow: 1px 1px 3px rgba(0,0,0,0.7); margin-bottom: 20px; font-weight: 500; line-height: 1.4; }
.action-badge { background: var(--color-gold); color: var(--color-dark); padding: 5px 12px; border-radius: 20px; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 15px; display: inline-block; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

.slider-controls { position: absolute; bottom: 25px; left: 0; width: 100%; z-index: 101; display: flex; justify-content: center; align-items: center; gap: 20px; }
.slider-btn { background: rgba(255,255,255,0.2); border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 10px 15px; border-radius: 50%; transition: 0.3s; }
.slider-btn:hover { background: var(--color-gold); color: var(--color-dark); }
.slider-dots { display: flex; gap: 10px; }
.dot { height: 12px; width: 12px; background-color: rgba(255,255,255,0.5); border-radius: 50%; display: inline-block; cursor: pointer; transition: 0.3s; }
.dot.active { background-color: var(--color-gold); transform: scale(1.2); }


/* =========================================
   CONTACT SECTIE (DESKTOP)
   ========================================= */
#contact { padding: 60px 0; }

.intro-text { text-align: center; max-width: 700px; margin: 0 auto 30px auto; }

.contact-grid { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 30px; 
    justify-content: center;
    align-items: stretch;
}

/* --- DESKTOP VOLGORDE --- */
/* Kaart LINKS (Order 1), Tekst RECHTS (Order 2) */
.map-wrapper { 
    flex: 1; 
    min-width: 300px; 
    min-height: 400px; 
    height: auto;
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    display: flex; 
    order: 1; 
}
.map-wrapper iframe { width: 100%; height: 100%; flex-grow: 1; border: 0; }

.contact-info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 300px;
    order: 2; 
}

.buttons-wrapper { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    justify-content: center;
    flex-grow: 1; 
}

.contact-card {
    background: #fff; 
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    padding: 25px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--color-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: 0 8px 15px rgba(0,0,0,0.1); }
.contact-card i { font-size: 2rem; color: var(--color-gold); margin-bottom: 10px; }
.contact-card h3 { margin: 0 0 5px 0; font-size: 1.2rem; font-weight: 700; }
.contact-card span { display: block; margin-top: 5px; font-size: 1.3rem; font-weight: 800; color: #000000; font-family: sans-serif; }


/* =========================================
   OVER MIJ SECTIE
   ========================================= */
.about-container { display: flex; align-items: center; gap: 50px; margin-top: 20px; }
.about-image img { width: 100%; max-width: 400px; border-radius: 12px; box-shadow: 10px 10px 0 var(--color-gold); }
.about-text { flex: 1; font-size: 1.1rem; }


/* =========================================
   FOOTER
   ========================================= */
footer { background: var(--color-dark); color: var(--color-bg); text-align: center; padding: 20px 20px; margin-top: 40px; border-top: 4px solid var(--color-gold); font-weight: 500; }
.footer-content { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0; font-size: 0.9rem; max-width: 1200px; margin: 0 auto; }
.footer-content p { margin: 0; }
.footer-content p:not(:last-child)::after { content: "-"; margin: 0 15px; opacity: 0.6; }
.legal-info { font-size: 0.9rem; opacity: 0.9; }
.privacy-link { color: var(--color-bg); text-decoration: underline; font-size: 0.9rem; }
.privacy-link:hover { color: var(--color-white); }
.developer-credit { font-size: 0.75rem; opacity: 0.6; font-weight: 400; letter-spacing: 0.5px; }
.back-to-top { position: fixed; bottom: 25px; right: 25px; background: var(--color-gold); color: var(--color-dark); width: 50px; height: 50px; border-radius: 50%; display: flex; justify-content: center; align-items: center; text-decoration: none; opacity: 0; transition: opacity 0.3s; pointer-events: none; box-shadow: 0 2px 10px rgba(59, 35, 19, 0.3); z-index: 999; }
.back-to-top.visible { opacity: 1; pointer-events: all; }


/* =========================================
   KLEUREN KNOP
   ========================================= */
.cross-link-container {
    text-align: center; 
    margin-top: 30px; 
    padding-top: 20px;
    border-top: 1px dashed rgba(59, 35, 19, 0.2); 
    margin-bottom: 10px;
}

.cross-link-container p { 
    font-size: 1.1rem; 
    font-weight: 600; 
    color: var(--color-dark); 
    margin-bottom: 15px; 
}

.btn-cross-link {
    background: transparent; 
    border: 2px solid var(--color-gold); 
    color: var(--color-dark);
    padding: 10px 20px; 
    border-radius: 25px; 
    font-size: 1rem; 
    font-weight: 700;
    cursor: pointer; 
    transition: 0.3s; 
    font-family: var(--font-primary);
    text-decoration: none; 
    display: inline-block;
}

.btn-cross-link:hover { 
    background: var(--color-gold); 
    color: #fff; 
    transform: translateY(-2px); 
    box-shadow: 0 4px 10px rgba(210, 166, 121, 0.3);
}

.btn-cross-link i { margin-left: 8px; }