/* --- BASIS INSTELLINGEN --- */
*, *::before, *::after {
    box-sizing: border-box; /* Zorgt dat padding de breedte niet beïnvloedt */
}

:root {
    --goud: #FAD898;   
    --bruin: #4A3C39; 
    --wit: #ffffff;
    --transition: all 0.3s ease-in-out;
}

html { scroll-behavior: smooth; }
body { 
    font-family: 'Montserrat', sans-serif; 
    color: var(--bruin); 
    margin: 0; 
    padding: 0; 
    line-height: 1.6; 
    overflow-x: hidden; 
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER --- */
header { 
    background: var(--wit); 
    border-bottom: 4px solid var(--bruin); 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    padding: 10px 0; 
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { height: 65px; display: block; }

.nav-area { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; gap: 20px; font-weight: 700; text-transform: uppercase; font-size: 0.85rem; }
.nav-links a span { position: relative; }
.nav-links a span::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -2px; left: 50%; background: var(--bruin);
    transition: var(--transition); transform: translateX(-50%);
}
.nav-links a:hover span::after { width: 100%; }

.btn { padding: 12px 24px; border-radius: 4px; font-weight: 700; font-size: 0.85rem; display: inline-block; cursor: pointer; border: none; letter-spacing: 1px; text-align: center; }
.btn-primary { background: var(--bruin); color: var(--goud); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.btn-outline { border: 2px solid var(--bruin); background: transparent; color: var(--bruin); }
.btn-outline:hover { background: var(--bruin); color: var(--goud); }

/* --- HERO SECTIE --- */
.hero { height: 75vh; background: var(--goud); display: flex; align-items: center; overflow: hidden; }
.hero-container { display: flex; width: 100%; height: 100%; align-items: center; border-bottom: 1px solid var(--bruin)}
.hero-text { flex: 1; padding: 0 5% 0 10%; }
.hero-text h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin: 0 0 15px 0; line-height: 1.1; font-weight: 700; color: var(--bruin); }
.hero-text p { font-size: 1.2rem; max-width: 500px; margin-bottom: 30px; }
.hero-buttons { display: flex; gap: 15px; }

.hero-visual { flex: 1.2; height: 100%; position: relative; }
.hero-visual img { 
    width: 100%; height: 100%; object-fit: cover; 
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

/* --- INFO GRID --- */
.info-grid { padding: 80px 0; background: var(--wit); }
.grid-3 { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 50px; }
h3 { font-size: 1rem; letter-spacing: 1.5px; margin-bottom: 25px; border-bottom: 1px solid var(--bruin); padding-bottom: 10px; }
.leader-list { list-style: none; padding: 0; }
.leader-list li { display: flex; align-items: center; margin-bottom: 12px; font-size: 0.9rem; }
.leader-list i { margin-right: 10px; color: var(--bruin); width: 15px; text-align: center; }
.dots { flex-grow: 1; border-bottom: 2px dotted #ccc; margin: 0 10px; align-self: flex-end; margin-bottom: 5px; }
.label { font-weight: 600; white-space: nowrap; }
.map-box { border-radius: 8px; overflow: hidden; border: 1px solid #eee; height: 250px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.link-route { color: var(--bruin); font-weight: 700; font-size: 0.8rem; border-bottom: 2px solid var(--goud); display: inline-block; margin-top: 10px; }

/* --- SLIDESHOW OVER ONS --- */
.about-us { background: var(--goud); display: flex; }
.about-container { display: flex; width: 100%; min-height: 550px; border-top: 1px solid var(--bruin);}
.about-image { flex: 1; position: relative; overflow: hidden; background: #333; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.5s ease-in-out; z-index: 1; }
.slide.active { opacity: 1; z-index: 2; }
.about-image::after {
    content: ''; position: absolute; top: 0; right: 0; bottom: 0;
    width: 400px; background: linear-gradient(to right, transparent, var(--goud));
    z-index: 10; pointer-events: none;
}
.about-content { flex: 1; padding: 80px 10%; display: flex; flex-direction: column; justify-content: center; background: var(--goud); color: var(--bruin); }
.about-content h2 { font-size: 2.5rem; margin: 10px 0 25px; line-height: 1.2; }
.about-content p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 20px; }

/* --- FOOTER --- */
footer { background: var(--bruin); color: var(--goud); text-align: center; padding: 50px 20px; border-top: 1px solid rgb(250, 216, 152);}
.socials { margin-bottom: 20px; }
.socials a { 
    background: var(--goud); color: var(--bruin); width: 45px; height: 45px; 
    display: inline-flex; align-items: center; justify-content: center; 
    border-radius: 50%; margin: 0 10px; font-size: 1.3rem; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.socials a:hover { background: var(--wit); transform: translateY(-5px); }

/* --- ANIMATIES --- */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-text h1 { animation: fadeInUp 0.8s ease-out forwards; }
.hero-text p { animation: fadeInUp 0.8s ease-out 0.2s forwards; opacity: 0; }
.hero-buttons { animation: fadeInUp 0.8s ease-out 0.4s forwards; opacity: 0; }

/* --- MOBILE OPTIMALISATIE --- */
@media (max-width: 900px) {
    .header-flex { flex-direction: column !important; align-items: center !important; padding: 10px 0 0 0 !important; }
    .nav-links { display: flex !important; justify-content: center !important; margin: 20px 0 10px 0 !important; width: 100% !important; flex-wrap: wrap; }
    .nav-area .btn-primary { display: none !important; }
    
    h3 { 
        border-bottom: 1px solid var(--bruin) !important; 
        width: 100%; 
        display: block; 
        text-align: center; 
    }
    
    .hero { height: auto !important; display: block !important; }
    .hero-container { flex-direction: column !important; }
    .hero-visual { width: 100% !important; height: 300px !important; order: -1 !important; }
    .hero-visual img { 
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%) !important; 
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 100%) !important; 
    }
    .hero-text { text-align: center !important; padding: 40px 20px !important; }

/* Grotere knoppen centreren op mobiel */
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important; /* Iets meer ruimte tussen de knoppen */
        width: 100%;
        padding: 0 20px; /* Zorgt dat ze niet tegen de schermrand plakken */
    }

    .hero-buttons .btn {
        width: 100% !important;   /* Knop vult de breedte */
        max-width: 300px;         /* Maar wordt niet breder dan 300px */
        padding: 16px 32px !important; /* Grotere padding voor een 'dikker' effect */
        font-size: 1rem !important;    /* Tekst iets groter */
        letter-spacing: 2px !important; /* Tekst iets meer ruimte geven */
    }

    /* --- DE OVER ONS SECTIE (GEFIXED) --- */
    .about-us { 
        display: block !important; 
        background: var(--goud) !important;
        height: auto !important;
    }

    .about-container { 
        display: flex !important; 
        flex-direction: column !important; 
        height: auto !important;
        align-items: center !important; 
    }

    .about-content { 
        order: 1 !important; 
        width: 100% !important;
        padding: 40px 25px !important; 
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important; 
        text-align: center !important; 
        overflow-wrap: break-word;
    }

    .about-content h2 {
        font-size: 2.2rem !important;
        margin-top: 0;
        width: 100%;
    }

    .about-content p {
        font-size: 1.0rem;
        width: 100%;
        max-width: 600px; 
    }

    .about-image { 
        order: 2 !important; 
        width: 100% !important; 
        height: 350px !important; 
        position: relative !important;
        overflow: hidden !important;
        background: var(--bruin) !important; 
    }

    .about-image .slide {
        position: absolute !important;
        width: 100% !important;
        height: 100% !important;
    }

    .about-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: linear-gradient(to bottom, var(--goud), transparent);
        z-index: 10;
        pointer-events: none;
    }
    
    .about-image::after { display: none; }

    /* --- CONTACT SECTIE CENTREREN --- */
    .grid-3 { 
        grid-template-columns: 1fr !important; 
        text-align: center !important; 
        gap: 40px !important; 
    }

    .leader-list li {
        justify-content: center !important;
    }

    .link-route {
        margin: 10px auto 0 auto !important;
    }
}