:root {
    --primary: #2563eb;    /* Blauw */
    --secondary: #10b981;  /* Groen */
    --dark: #1e293b;
    --light: #f8fafc;
    --text: #334155;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text); 
    line-height: 1.6; 
    scroll-behavior: smooth; 
}

.container { padding: 80px 10%; max-width: 1200px; margin: auto; }
.bg-light { background: var(--light); }

/* --- HEADER --- */
header { 
    padding: 15px 10%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: sticky; 
    top: 0; 
    background: white; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

.logo { 
    font-size: 1.8rem; 
    font-weight: 800; 
    color: var(--primary); 
    letter-spacing: -0.5px;
}
.logo span { color: var(--secondary); }

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Taal Wisselaar */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 2px solid #eee;
    padding: 5px 12px;
    border-radius: 20px;
}

.lang-switch a {
    text-decoration: none;
    color: var(--text);
    opacity: 0.6;
    transition: 0.3s;
}
.lang-switch a:hover { opacity: 1; color: var(--primary); }
.lang-switch a.active { opacity: 1; color: var(--primary); }
.lang-switch span { color: #ccc; }

nav ul { display: flex; list-style: none; gap: 20px; align-items: center; }
nav a { text-decoration: none; color: var(--text); font-weight: 500; }
nav a:hover { color: var(--primary); }

.header-socials {
    display: flex;
    gap: 15px;
    padding-left: 20px;
    border-left: 2px solid #eee;
}
.header-socials a {
    color: var(--text);
    font-size: 1.3rem;
    transition: color 0.3s, transform 0.2s;
}
.header-socials a:hover { color: var(--primary); transform: translateY(-2px); }

/* --- HERO --- */
.hero { 
    height: 80vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=1471&auto=format&fit=crop') center/cover; 
    color: white; 
    padding: 0 20px;
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; }

/* --- KNOPPEN --- */
.btn-main { 
    background: var(--primary); 
    color: white; 
    padding: 15px 30px; 
    text-decoration: none; 
    border-radius: 5px; 
    font-weight: bold; 
    display: inline-block; 
    border: none;
    cursor: pointer;
}

.btn-small { 
    background: var(--dark); 
    color: white; 
    padding: 8px 18px; 
    border-radius: 4px; 
    text-decoration: none; 
}

/* --- WHATSAPP KNOP (NIEUW) --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

/* --- GRID & CARDS --- */
.grid { display: grid; gap: 40px; margin-top: 40px; grid-template-columns: 2fr 1fr; }
.card { 
    background: white; 
    padding: 30px; 
    border-radius: 10px; 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
    border-top: 4px solid var(--primary);
}
.stat-card { 
    background: var(--primary); 
    color: white; 
    padding: 25px; 
    margin-bottom: 15px; 
    border-radius: 8px; 
    text-align: center; 
}

.price { 
    font-size: 1.8rem; 
    font-weight: bold; 
    color: var(--primary); 
    margin-top: 15px; 
    display: block;
}
.maps-placeholder { 
    text-align: center; 
    padding: 40px; 
    background: #f1f5f9; 
    border-radius: 15px; 
    margin-top: 20px; 
}

/* --- FORMULIER --- */
form { display: flex; flex-direction: column; gap: 15px; max-width: 600px; margin: 40px auto; }
input, textarea, select { padding: 14px; border: 1px solid #ddd; border-radius: 5px; font-family: inherit; }
textarea { height: 120px; resize: vertical; }

/* --- FOOTER --- */
footer { 
    background: #f3f4f6; 
    color: var(--dark); 
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section h3 {
    color: #111827;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
    padding-bottom: 5px;
}
.footer-section p { color: #4b5563; margin-bottom: 5px; }

.social-icons { display: flex; gap: 15px; }
.icon {
    display: flex; align-items: center; justify-content: center;
    width: 45px; height: 45px;
    border-radius: 8px; color: white;
    font-size: 1.5rem; text-decoration: none;
    transition: transform 0.2s;
}
.icon:hover { transform: translateY(-3px); }
.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.facebook { background: #3b5998; }

.copyright {
    text-align: center; margin-top: 50px;
    font-size: 0.8rem; color: #9ca3af;
}

/* --- MOBIEL --- */
@media (max-width: 768px) {
    .grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    
    header { flex-direction: column; gap: 20px; padding: 20px; }
    .header-right { flex-direction: column; gap: 20px; }
    .header-socials { border-left: none; padding-left: 0; }
    .lang-switch { margin-bottom: 10px; }

    .footer-container { flex-direction: column; text-align: center; }
    .social-icons { justify-content: center; }
    
    /* WhatsApp knop iets kleiner op mobiel */
    .whatsapp-float { width: 50px; height: 50px; font-size: 25px; bottom: 20px; right: 20px; }
}
/* =========================================
   MOBIELE VERSIE (Responsive Fix)
   ========================================= */
@media (max-width: 900px) {
    
    /* 1. Header wordt hoger en stapelt alles onder elkaar */
    header {
        flex-direction: column;
        height: auto;
        padding: 20px 15px;
        position: relative; /* Zorgt dat hij niet vreemd gaat zweven */
    }

    /* 2. Logo in het midden */
    .logo {
        margin-bottom: 15px;
        font-size: 1.8rem;
    }

    /* 3. Rechterkant (Menu + Socials) ook stapelen */
    .header-right {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    /* 4. Het menu zelf: knoppen onder elkaar of mooi verdeeld */
    nav ul {
        display: flex;
        flex-wrap: wrap; /* Laat knoppen naar de volgende regel gaan als het niet past */
        justify-content: center;
        gap: 10px;
        padding: 0;
    }

    nav ul li {
        margin: 5px;
    }

    /* 5. Knoppen iets groter maken voor vingers */
    nav ul li a {
        padding: 10px 15px;
        background-color: #f1f5f9; /* Lichtgrijze achtergrond voor duidelijkheid */
        border-radius: 8px;
        display: block; /* Zorgt dat het hele vlak klikbaar is */
    }

    /* De blauwe contact knop mag blauw blijven */
    nav ul li a.btn-small {
        background-color: #2563eb;
        color: white;
    }

    /* 6. Taalwissel en Socials centreren */
    .lang-switch, .header-socials {
        justify-content: center;
        margin-top: 5px;
    }
    
    /* Extra: Hero tekst op mobiel iets kleiner zodat het past */
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
/* =========================================
   REVIEWS SECTIE
   ========================================= */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.review-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: left;
    border-top: 4px solid #f59e0b; /* Gouden randje */
}

.review-card .stars {
    color: #f59e0b; /* Gouden sterren */
    font-size: 1.3rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-card .review-text {
    font-style: italic;
    color: #475569;
    margin-bottom: 15px;
    line-height: 1.5;
}

.review-card .review-author {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
}

