* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f7f7f4;
    color: #111;
    line-height: 1.7;
    font-size: 17px;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    font-size: 18px;
}

.nav .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 35px;
    text-decoration: none;
    /* verwijdert onderstreping */
    color: inherit;
    /* gebruikt dezelfde kleur als de omliggende tekst */
    cursor: pointer;
    /* verandert cursor naar handje bij hover */
}

.nav .logo img.logo-img {
    width: 40px;
    /* pas grootte aan naar wens */
    height: auto;
}

.nav-toggle {
    display: none;
    /* desktop verbergen */
}

/* HERO */
.hero {
    height: 100vh;
    background: url("images/forest-low.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero-content {
    background: rgba(0, 0, 0, .45);
    padding: 50px 30px;
    color: white;
    max-width: 650px;
}

.hero h1 {
    font-size: 38px;
    margin-bottom: 20px;
}

.hero p {
    margin-bottom: 30px;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    font-size: 16px;
}

.btn-primary {
    background: white;
    color: black;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

/* PRODUCTS */
.products {
    display: grid;
    gap: 30px;
}

.card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
}

.btn-secondary {
    background: black;
    color: white;
    border: none;
    padding: 12px 20px;
    margin-top: 15px;
    cursor: pointer;
}

/* ===== OVER WINKELPUUR ===== */

.about-grid {
    display: grid;
    gap: 40px;
}

.about-left,
.about-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.store-image {
    width: 100%;
    max-width: 520px;
    /* groter dan eerst */
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.hours-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.hours-table .row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.hours-table .row:last-child {
    border-bottom: none;
}

.map-small iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

/* CONTACT BLOCK */

.contact-block {
    display: grid;
    gap: 40px;
    margin-top: 150px;
}

.contact-left {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.contact-left img {
    width: 260px;
    border-radius: 16px;
    object-fit: cover;
    background: rgb(255, 255, 255);

    box-shadow: 0 15px 40px rgba(185, 19, 19, 0.06);
}

.contact-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

.contact-right a {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    padding: 14px 18px;
    border-radius: 15px;
    font-weight: 500;
}

.contact-right img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* ===== DESKTOP ===== */

@media (min-width:900px) {

    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .contact-block {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact icons professional sizing */
.contact-links img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    /* prevent stretching */
}

/* DESKTOP layout */
@media(min-width:900px) {
    .about-grid {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .store-text-box {
        gap: 30px;
    }

    .store-image {
        max-width: 350px;
    }
}

/* AGENDA */
.agenda {
    display: grid;
    gap: 25px;
}

.agenda-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.agenda-date {
    font-weight: 600;
    font-size: 18px;
}

.center {
    text-align: center;
    margin-top: 40px;
}

/* MODAL */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: none;
    align-items: center;
    justify-content: center;
    touch-action: pan-y;
}

.modal-box {
    background: #f7f7f4;

    padding: 50px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 320px;
}

.modal-box a {
    display: flex;
    align-items: center;
    gap: 12px;
    background: black;
    color: white;
    text-decoration: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 18px;
}

.modal-box img {
    width: 22px;
}

#closeModal {
    padding: 14px;
    font-size: 16px;
    border: none;
    background: rgb(255, 255, 255);

    cursor: pointer;
}

#closeModal:hover {
    padding: 14px;
    font-size: 16px;
    border: none;
    background: #ddd;

    cursor: pointer;
}

.product-modal {
    max-width: 900px;
    width: 95%;
}

.modal-content {
    display: flex;
    gap: 30px;

}

.modal-images {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #f0f0ed; */
    border-radius: 12px;
}

.modal-images button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
}

.modal-prev {
    left: 10px;
}

.modal-next {
    right: 10px;
}

.modal-images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: center;
}

.modal-contact a {
    background: rgb(255, 255, 255);
    color: #111;
}

.modal-contact a:hover {
    background: #ddd;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #111;
    color: white;
}

.image-slider {
    position: relative;
    overflow: hidden;
}

.image-slider img {
    width: 100%;
    display: none;
}

.image-slider img.active {
    display: block;
}

.image-slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.image-slider .prev {
    left: 5px;
}

.image-slider .next {
    right: 5px;
}

@media(max-width:700px) {

    .image-slider button {
        padding: 12px 25px;
        /* 3x groter dan 5px 10px */
        font-size: 18px;
        /* optioneel, voor pijl/icoon */
    }


    .modal-content {
        flex-direction: column;
    }

    .nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        /* minder hoogte */
    }

    .nav .logo {
        font-size: 22px;
        font-weight: 900;
        /* Winkelpuur dikgedrukt */
    }

    .nav-toggle {
        display: block;
        /* drie streepjes menu */
        font-size: 28px;
        cursor: pointer;
        background: none;
        border: none;
    }

    .nav-links {
        display: none;
        /* standaard ingeklapt */
        flex-direction: column;
        gap: 12px;
        margin-top: 10px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links.show {
        display: flex;
        /* uitklappen */
    }

    .modal-box {
        height: 80%;
        width: 90%;
        /* kleiner dan 95% op mobiel */
        max-width: 350px;
        /* zorgt voor marge rondom */
        padding: 30px;
        /* minder padding op mobiel */
        border-radius: 18px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .modal-content {
        flex-direction: column;
        gap: 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-content::-webkit-scrollbar {
        width: 6px;
    }

    .modal-content::-webkit-scrollbar-thumb {
        background-color: rgba(0, 0, 0, 0.4);
        border-radius: 3px;
    }

    .modal-content::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }

    .modal-images {
        width: 100%;
        aspect-ratio: 1/1;
        /* vierkant */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .modal-images img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .modal-prev,
    .modal-next {
        top: 45%;
        padding: 12px 25px;
    }

    .contact-block {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    /* contact-left */
    .contact-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Webkit browsers (Chrome, Safari, Edge) */
    ::-webkit-scrollbar {
        width: 4px;
        /* breedte van de scrollbar */
    }

    ::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        /* achtergrond van de track */
        border-radius: 3px;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.7);
        /* paars, maak feller */
        border-radius: 3px;
    }

    /* Optioneel: hover effect */
    ::-webkit-scrollbar-thumb:hover {
        background: rgb(0, 0, 0);
    }

}

/* DESKTOP */
@media(min-width:900px) {

    .products {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-owner {
        flex-direction: row;
        align-items: center;
        gap: 40px;
    }

    .agenda-item {
        flex-direction: row;
        gap: 40px;
    }

    .agenda-date {
        min-width: 180px;
    }

    .container {
        max-width: 1300px;
    }
}