:root {
    --primaire-kleur: #c49b6c;
    --secundaire-kleur: #1a1a1a;
    --secundaire-kleur-transparant: rgba(26, 26, 26, 0.8);
    --achtergrondkleur: #121212;
    --lichte-tekstkleur: #f5f5f5;
    --accentkleur: #8c5e3c;
    --primair-lettertype: "Cormorant Garamond", serif;
    --secundair-lettertype: "Poppins", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--secundair-lettertype);
    background-color: var(--achtergrondkleur);
    color: var(--lichte-tekstkleur);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

#artchoc-logo {
    height: 80px;
}

header {
    background: var(--secundaire-kleur-transparant);
    color: var(--lichte-tekstkleur);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

header h1 {
    font-family: var(--primair-lettertype);
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.index-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.index-sectie {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
}

.logo-kader {
    flex: 1 1 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--secundaire-kleur);
    border: 2px solid var(--accentkleur);
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    overflow: hidden;
}

.logo-kader:nth-child(1) {
    animation-delay: 0.2s;
    border-color: var(--primaire-kleur);
}
.logo-kader:nth-child(2) {
    animation-delay: 0.4s;
    border-color: var(--primaire-kleur);
}

.logo-inhoud {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    transition: transform 0.3s ease;
}

.logo-inhoud img {
    max-width: 80%;
    height: auto;
}

.logo-tekst {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    color: var(--lichte-tekstkleur);
    opacity: 0.8;
}

.logo-kader:hover .logo-inhoud {
    transform: scale(1.08);
}

.gm {
    margin-top: 2rem;
}

.gm img {
    width: 150px;
}

.over-inhoud {
    display: grid;
    grid-template-columns: 1fr 2fr;
    justify-content: center;
    text-align: left;
    height: 100%;
    width: 100%;
}

.over-inhoud p {
    margin: 0 0 1rem 2rem;
}

.over-foto {
    height: 500px;
    display: block;
    margin-bottom: 16px;
    border-radius: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: auto;
    margin-left: 6rem;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin-right: auto;
}

nav li a {
    color: var(--lichte-tekstkleur);
    padding: 1rem;
    text-decoration: none;
    display: block;
    font-family: var(--secundair-lettertype);
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav li a:hover {
    color: var(--primaire-kleur);
}

.hamburger-menu {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.sluit-menu {
    display: none;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--lichte-tekstkleur);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

.taalselectie.vlaggen {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: auto;
}

.taalselectie.vlaggen .taalknop {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition:
        transform 0.2s,
        opacity 0.2s;
    opacity: 0.7;
}

.taalselectie.vlaggen .taalknop.active,
.taalselectie.vlaggen .taalknop:hover {
    transform: scale(1.2);
    opacity: 1;
}

.hero-sectie {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-dias .dia {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: diaAnimatie 15s linear infinite;
}

.hero-dias .dia:nth-child(1) {
    animation-delay: 0s;
}
.hero-dias .dia:nth-child(2) {
    animation-delay: 3s;
}
.hero-dias .dia:nth-child(3) {
    animation-delay: 6s;
}
.hero-dias .dia:nth-child(4) {
    animation-delay: 9s;
}
.hero-dias .dia:nth-child(5) {
    animation-delay: 12s;
}

@keyframes diaAnimatie {
    0% {
        opacity: 0;
        transform: scale(1);
    }
    4% {
        opacity: 1;
        transform: scale(1.02);
    }
    20% {
        opacity: 1;
        transform: scale(1.08);
    }
    24% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.hero-inhoud {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
}

.hero-inhoud h2 {
    font-family: var(--primair-lettertype);
    font-size: 4rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    color: var(--lichte-tekstkleur);
}

.hero-inhoud p {
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.hero-inhoud .cta-knop {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background-color: var(--primaire-kleur);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpSmooth 1s ease forwards;
    animation-delay: 1s;
}

.hero-inhoud .cta-knop:hover {
    background-color: var(--accentkleur);
}

.klein {
    font-size: 0.9rem;
    font-style: italic;
}

.contact-link {
    text-decoration: none;
    color: var(--lichte-tekstkleur);
}

.contact-link:hover {
    color: var(--accentkleur);
}

section {
    padding: 125px 0;
    text-align: center;
}

section h2 {
    font-family: var(--primair-lettertype);
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primaire-kleur);
}

.index-sectie img {
    max-width: 35%;
}

.menu-sectie {
    position: relative;
    z-index: 1;
}

#menu-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.menu-kaart {
    flex: 1 1 calc(50% - 40px);
    width: 300px;
    background: var(--secundaire-kleur);
    padding: 30px;
    border: 1px solid var(--accentkleur);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 0;
    transition: box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(16px);
}

.menu-kaart h3 {
    font-family: var(--primair-lettertype);
    font-size: 1.8rem;
    color: var(--primaire-kleur);
    margin-bottom: 1rem;
}

.menu-kaart h4 {
    font-family: var(--secundair-lettertype);
    font-size: 1.2rem;
    color: var(--lichte-tekstkleur);
    margin-bottom: 1.5rem;
    font-weight: normal;
}

.menu-kaart p {
    font-family: var(--secundair-lettertype);
    font-size: 1.2rem;
    color: var(--lichte-tekstkleur);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.menu-kaart ul {
    list-style: none;
    text-align: center;
}

.menu-kaart li {
    padding: 5px 0;
    border-bottom: 1px dashed var(--accentkleur);
}

.menu-kaart li:last-child {
    border-bottom: none;
}

.menu-kaart:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.kaart-inhoud {
    transition: transform 0.3s ease;
    transform-origin: center;
    will-change: transform;
}

.kaart-inhoud p {
    font-size: 1rem;
    font-weight: 100;
}

.menu-kaart:hover .kaart-inhoud {
    transform: scale(1.03);
}

@keyframes kaartEnter {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-kaart.animate-in {
    animation: kaartEnter 0.7s ease forwards;
}

.openingsinfo,
.reservatieformulier {
    opacity: 0;
    transform: translateY(16px);
    animation: kaartEnter 2s ease forwards;
    animation-delay: 1s;
}

.sociale-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.sociaal-icoon svg {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
    color: var(--lichte-tekstkleur);
}

.sociaal-icoon:hover svg {
    opacity: 1;
    transform: scale(1.1);
}

.openingsinfo {
    max-width: 80%;
    margin: 0 auto;
    text-align: center;
}

.openingsinfo h3 {
    font-size: 2rem;
}

.openingsuren ul,
.verlofperiodes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.openingsuren li,
.verlofperiodes li {
    padding: 6px 0;
    border-bottom: 1px dashed var(--accentkleur);
}

.openingsuren li:last-child,
.verlofperiodes li:last-child {
    border-bottom: none;
}

.openingsinfo h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--primair-lettertype);
    color: var(--primaire-kleur);
}

.openingsuren li.vandaag {
    font-weight: bold;
    color: var(--primaire-kleur);
}

.reservering-tekst {
    margin-bottom: 1rem;
}

@media (prefers-reduced-motion: reduce) {
    .menu-kaart,
    .kaart-inhoud {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

section p {
    max-width: 800px;
    margin: auto;
}

.laatste-paragraaf {
    margin-bottom: 3rem;
}

.contact-sectie {
    padding-bottom: 80px;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-tekst p {
    margin-bottom: 1rem;
}

.contact-tekst ul {
    list-style: none;
}

.reservatieformulier,
.wijzig-reservatieformulier {
    max-width: 500px;
    margin: auto;
    background: var(--secundaire-kleur);
    padding: 40px;
    border-radius: 8px;
}

.reservatieformulier h3 {
    font-family: var(--primair-lettertype);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primaire-kleur);
}

.form-groep {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-groep label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-groep input,
.form-groep textarea {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--accentkleur);
    color: var(--lichte-tekstkleur);
    border-radius: 5px;
    font-size: 1rem;
}

.form-groep select {
    width: 100%;
    padding: 10px;
    background-color: var(--secundaire-kleur);
    border: 1px solid var(--accentkleur);
    color: var(--lichte-tekstkleur);
    border-radius: 5px;
    font-size: 1rem;
    height: 42px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23d4af37"%3e%3cpath d="M7 10l5 5 5-5z"/%3e%3c/svg%3e') no-repeat right 10px
        center;
    background-size: 20px;
}

.knop {
    display: inline-block;
    background: var(--primaire-kleur);
    color: var(--secundaire-kleur);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background 0.3s ease;
}

.knop:hover {
    background: var(--accentkleur);
}

.marge {
    margin: 0 2rem 2rem 2rem;
}

footer {
    background: var(--secundaire-kleur);
    color: var(--lichte-tekstkleur);
    text-align: center;
    padding: 1rem 0;
}

.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none; /* Standaard verborgen */
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.popup-venster {
    background-color: var(--achtergrondkleur);
    padding: 2.5rem;
    border: 2px solid var(--primaire-kleur);
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    opacity: 0;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.popup-container.show {
    display: flex;
}

.popup-container.show .popup-venster {
    transform: scale(1);
    opacity: 1;
}

.popup-bericht {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--lichte-tekstkleur);
}

.popup-knop {
    padding: 0.8rem 2rem;
    font-size: 1rem;
}

#datumkeuze-container {
    position: relative;
    width: 100%;
}

#toon-datum {
    cursor: pointer;
    background: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23d4af37"%3e%3cpath d="M7 10l5 5 5-5z"/%3e%3c/svg%3e') no-repeat right 10px
        center;
    background-size: 20px;
}

#kalender-element {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--secundaire-kleur);
    border: 1px solid var(--accentkleur);
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transform-origin: top;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.kalender-verborgen {
    display: none;
    opacity: 0;
    transform: scaleY(0.9);
}

.kalender-zichtbaar {
    display: block;
    opacity: 1;
    transform: scaleY(1);
}

.nav-knop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.nav-knop .nav-knop {
    background: var(--primaire-kleur);
    color: var(--secundaire-kleur);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 3px;
}

.nav-knop span {
    font-size: 1.2rem;
    font-family: var(--primair-lettertype);
    color: var(--lichte-tekstkleur);
}

.kalender-weekdagen,
.kalender-raster {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
}

.kalender-weekdagen span {
    color: var(--primaire-kleur);
    font-weight: bold;
    padding: 5px;
}

.kalender-raster .dag {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-radius: 3px;
}

.kalender-raster .dag:hover {
    background-color: var(--accentkleur);
    color: var(--secundaire-kleur);
}

.kalender-raster .dag.inactief {
    color: #555;
    cursor: not-allowed;
    background-color: transparent;
    opacity: 0.5;
}

.kalender-raster .dag.geselecteerd {
    background-color: var(--primaire-kleur);
    color: var(--secundaire-kleur);
    font-weight: bold;
}

#tijd {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid var(--accentkleur);
    color: var(--lichte-tekstkleur);
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url('data:image/svg+xml;charset=UTF-8,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23d4af37"%3e%3cpath d="M7 10l5 5 5-5z"/%3e%3c/svg%3e') no-repeat right 10px
        center;
    background-size: 20px;
}

#chef {
    max-height: 800px;
    max-width: 80%;
    margin-top: 1rem;
    border-radius: 50%;
}

section h2,
section p:not(.geen-animatie),
section img {
    opacity: 0;
    transform: translateY(20px);
}

.wijn-tabs {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.wijn-tab {
    background: none;
    border: none;
    color: var(--lichte-tekstkleur);
    font-family: var(--primair-lettertype);
    font-size: 1.2rem;
    padding: 0.5rem 0;
    cursor: pointer;
    position: relative;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.wijn-tab:hover {
    opacity: 1;
}

.wijn-tab.active {
    opacity: 1;
}

.wijn-tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #b33339; /* wijnrood */
    border-radius: 2px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.wijn-tekst {
    font-size: 0.9rem;
    padding-bottom: 1.2rem;
}

.wijn-land {
    margin-top: 1.5rem;
    font-size: 1.4rem;
    color: #b33339;
    padding-bottom: 0.3rem;
    position: relative;
    text-align: center;
}

.land-vertaling {
    font-size: 0.9rem;
    font-style: italic;
}

.wijn-land::after {
    content: "";
    display: block;
    margin: 0.5rem auto 1rem;
    width: 200px;
    height: 2px;
    background: #b33339;
    border-radius: 1px;
}

.wijn-item h5 {
    margin-top: 0.8rem;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

@keyframes fadeInUpSmooth {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes softZoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

section h2 {
    animation: fadeInUpSmooth 1s ease forwards;
    animation-delay: 0.3s;
}

section p:not(.geen-animatie) {
    animation: fadeInUpSmooth 1.2s ease forwards;
    animation-delay: 0.8s;
}

section img {
    animation: softZoomInBlur 1.4s ease forwards;
    animation-delay: 1.3s;
}

@keyframes softZoomInBlur {
    from {
        opacity: 0;
        transform: scale(0.95);
        filter: blur(4px);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* Gallery grid */
.gallery {
    column-count: 4;
    column-gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 16px;

    /* fade-in animatie */
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;

    cursor: pointer;
}

.gallery-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.gallery-image:hover {
    opacity: 0.92;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
    touch-action: pan-y;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    opacity: 0;
    user-select: none;
    -webkit-user-drag: none;
    transform: scale(0.96);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.lightbox.active img {
    opacity: 1;
    transform: scale(1);
}

/* Buttons */
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0 1rem;
}

.lightbox .prev {
    left: 10px;
}
.lightbox .next {
    right: 10px;
}

.lightbox button:hover {
    opacity: 0.7;
}

@media (max-width: 1000px) {
    .index-sectie {
        flex-direction: column;
    }

    .logo-kader {
        flex: 1 1 100%;
        max-height: 250px;
        padding: 1rem;
    }

    .logo-inhoud img {
        max-width: 95%;
    }

    .logo-tekst {
        font-size: 1.1rem;
    }

    .hamburger-menu {
        display: block;
        position: relative;
    }

    nav {
        position: fixed;
        margin-left: 0;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 90% !important;
        max-width: 300px;
        background-color: var(--secundaire-kleur);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 100px;
        transition: left 0.5s ease-in-out;
        z-index: 1001;
        transform: none;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    nav li a {
        padding: 1.5rem 2rem;
        width: 100%;
        border-bottom: 1px solid var(--accentkleur);
    }

    .taalselectie.vlaggen {
        position: static;
        margin: 2rem;
        justify-content: flex-start;
    }

    .sluit-menu {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: var(--lichte-tekstkleur);
        font-size: 2rem;
        cursor: pointer;
        line-height: 1;
        padding: 10px;
    }

    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 1rem;
    }

    header h1 {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .taalselectie {
        margin-top: 0;
    }

    .hero-inhoud h2 {
        font-size: 2.5rem;
    }

    .hero-inhoud p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    section[id] {
        scroll-margin-top: 80px;
    }

    #menu-container {
        flex-direction: column;
        gap: 20px;
    }

    .menu-kaart {
        width: 100%;
        padding: 20px;
    }

    .menu-kaart h3 {
        font-size: 1.5rem;
    }

    .menu-kaart p {
        font-size: 1rem;
    }

    .menu-kaart li {
        font-size: 0.9rem;
    }

    .reservatieformulier {
        padding: 20px;
    }

    .lightbox .nav {
        display: none;
    }

    .over-inhoud {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .over-inhoud p {
        margin: 1rem;
    }

    .over-foto {
        max-width: 80vw;
        width: auto;
        height: auto;
        display: block;
    }

    footer {
        font-size: 0.7rem;
    }
}

@media (max-width: 1200px) {
    .gallery {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .gallery {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .gallery {
        column-count: 1;
    }
}
