:root {
    --primary: #2c3e50;
    --accent: #e67e22;
    --light: #f4f7f6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: var(--light);
    color: var(--primary);
}

header {
    background: #fff;
    padding: 1rem 5%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
}

main {
    padding: 4rem 5%;
    min-height: 70vh;
}

.service-card {
    background: white;
    padding: 20px;
    margin-bottom: 10px;
    border-left: 5px solid var(--accent);
    border-radius: 4px;
}

footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 2rem;
}

/* Contact Bar Styling */
.contact-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.contact-bar a {
    display: flex;
    align-items: center;
    gap: 8px; /* Ruimte tussen icoon en tekst */
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

/* De iconen zelf */
.icon {
    width: 20px;
    height: 20px;
    stroke: white; /* Kleur van het icoon */
    transition: stroke 0.3s ease;
}

/* Hover effecten */
.contact-bar a:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Specifieke kleur voor WhatsApp bij hover (optioneel) */
.contact-bar a[aria-label="WhatsApp"]:hover {
    background: #25D366; 
}

/* Mobiele optimalisatie */
@media (max-width: 600px) {
    .contact-bar span {
        display: none; /* Toon alleen iconen op hele kleine schermen */
    }
    .contact-bar a {
        padding: 12px;
    }
}

/* Layout voor pagina's met meer tekst */
.content-page {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.grid-text {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin-top: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.service-detail {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact-info {
    display: flex;
    gap: 20px;
    margin-top: 3rem;
}

.contact-card {
    flex: 1;
    background: #eee;
    padding: 2rem;
    border-radius: 8px;
}

.btn-primary {
    background: var(--accent);
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 1rem;
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 23px;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-left: 10px;
}

/* Steden badges op de homepagina */
.city-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.badge {
    background: #e1e8ed;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--accent);
}

/* Contact grid aanpassing */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 2rem;
}

.city-list {
    list-style: none;
    padding: 0;
}

.city-list li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    font-weight: 500;
}

/* Mobiel vriendelijk maken van de contact grid */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Basis Mobiele Instellingen */
html {
    scroll-behavior: smooth;
}

/* Navigatie & Hamburger */
.menu-toggle {
    display: none; /* Verberg de checkbox */
}

.hamburger {
    display: none; /* Standaard verborgen op desktop */
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: 0.3s;
}

/* --- MEDIA QUERIES VOOR MOBIEL --- */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Toon hamburger op mobiel */
        z-index: 1000;
    }

    #nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Verborgen buiten beeld */
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: 0.4s ease-in-out;
        z-index: 999;
    }

    /* Als de checkbox is aangevinkt, schuif het menu in beeld */
    .menu-toggle:checked ~ #nav-links {
        right: 0;
    }

    /* Kruisje animatie voor de hamburger */
    .menu-toggle:checked ~ .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle:checked ~ .hamburger span:nth-child(2) { opacity: 0; }
    .menu-toggle:checked ~ .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

    /* Layout aanpassingen */
    .hero-section {
        padding: 2rem 0;
        text-align: center;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn-secondary {
        margin-left: 0; /* Verwijder de linker marge op mobiel */
    }

    .grid-text, .contact-grid {
        grid-template-columns: 1fr; /* Alles onder elkaar */
    }

    .stats {
        margin-top: 20px;
        order: -1; /* Zet stats boven de tekst op mobiel */
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
}

/* Grotere knoppen voor duimen */
a, button {
    min-height: 44px; /* Apple/Google standaard voor touch-targets */
    display: inline-flex;
    align-items: center;
}

.section-desc {
    margin-bottom: 2rem;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 1.5rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    background-color: #ddd;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}

/* Subtiel effect voor desktop gebruikers */
@media (min-width: 769px) {
    .gallery-item img:hover {
        transform: scale(1.05);
    }
}

/* Extra ademruimte op mobiel voor de foto's */
@media (max-width: 480px) {
    .gallery-grid {
        gap: 15px; /* Iets minder ruimte tussen foto's op kleine schermen */
    }
}