/* --- Algemene Stijlen (basis) --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fdfbfb;
}

/* Veiligheidsregel: voorkom onverwacht horizontaal scrollen op kleine schermen */
html, body {
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 10px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    color: #d4a373;
}

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

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    position: relative;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d4a373;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #d4a373;
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    position: relative;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.nav-toggle-label::before,
.nav-toggle-label::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 24px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.nav-toggle-label::before {
    box-shadow:
        0 -8px 0 #333,
        0 8px 0 #333;
}

.nav-toggle-label::after {
    opacity: 0;
}

#nav-toggle:checked + .nav-toggle-label::before {
    background-color: transparent;
    box-shadow: none;
    transform: translate(-50%, -50%) rotate(45deg);
}

#nav-toggle:checked + .nav-toggle-label::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-toggle-label:hover {
    background-color: rgba(212, 163, 115, 0.1);
}

.btn-nav {
    margin-right: 15px;
    background-color: #d4a373;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: #c49563;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.4);
}

.btn-main {
    background-color: #222;
    color: #fff;
    padding: 16px 38px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-main:hover {
    background-color: #d4a373;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-family: 'Playfair Display', serif;
    text-align: center;
    font-size: 36px;
    margin: 60px 0 40px 0;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #d4a373;
    margin: 10px auto 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0e6df;
}

.service-card h3 {
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.price {
    color: #d4a373;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

/* Zorg dat afbeeldingen en iframes niet buiten hun container groeien */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    max-width: 100%;
}

/* Globale knopstijl voor telefoon zodat footer en andere pagina's dezelfde look hebben */
.btn-phone,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #d4a373;
    color: #fff;
    padding: 10px 18px;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 600;
}



.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(212, 163, 115, 0.3);
}

.contact {
    background-color: #f7f1ed;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.info-block {
    margin-top: 25px;
}

.info-block strong {
    color: #d4a373;
}

.info-block a {
    display: inline-block;
    padding: 8px 14px;
    margin-top: 8px;
    margin-right: 8px;
    background-color: #d4a373;
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.info-block a:hover {
    background-color: #222;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(212, 163, 115, 0.3);
}

.map-placeholder {
    background-color: #e0d5ce;
    height: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #777;
}

footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .logo {
        font-size: 20px;
        text-align: left;
        flex: 1 1 auto;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        order: 1;
    }

    .nav-toggle-label {
        display: inline-flex;
        position: relative;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        align-self: center;
        margin: 0 10px 0 0;
        z-index: 200;
        order: 0;
        flex: 0 0 auto;
    }

    nav {
        width: 100%;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.25s ease;
        order: 2;
    }

    #nav-toggle:checked + .nav-toggle-label + nav {
        max-height: 450px;
    }

    nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin: 0;
        padding: 10px 0;
        width: 100%;
    }

    nav ul li {
        margin: 6px 0;
        width: 100%;
        text-align: center;
    }

    .navbar > .nav-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 100%;
        order: 3;
        margin-top: 10px;
    }

    .navbar > .nav-actions a {
        display: block;
        width: 100%;
        min-width: 0;
        padding: 12px 20px !important;
        text-align: center;
        box-sizing: border-box;
    }

    .btn-main {
        padding: 12px 26px;
    }

    .gallery-item img {
        height: 180px;
    }

    .section-title {
        font-size: 28px;
        margin: 40px 0 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Consistentie en kleine verbeteringen --- */
.opening-hours {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
    color: #555;
    line-height: 1.6;
}

.opening-hours li {
    padding: 4px 0;
}

.btn-main,
.btn-nav {
    display: inline-block;
    text-align: center;
}
.btn-nav + .btn-whatsapp {
    margin-left: 0;
}

.btn-whatsapp {
    background-color: #d4a373;
    color: #fff;
    padding: 10px 12px;
    border-radius: 22px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #c49563;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 163, 115, 0.4);
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

.btn-whatsapp span {
    margin-left: 8px;
}

.services-overview p,
.gallery-overview p {
    color: #555;
    margin-bottom: 20px;
}

.gallery-overview {
    margin-bottom: 60px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.28s ease;
}

.gallery-grid {
    gap: 24px;
}

header .logo {
    font-size: 26px;
}

footer p {
    margin: 0;
}

/* small screens adjustments */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .gallery-item img {
        height: 220px;
    }
}