/* ==========================================
   TIA'S LUNCHROOM
   ========================================== */

:root {
    --cream: #f3eee6;
    --cream-light: #faf8f4;
    --beige: #ded3c4;
    --black: #1b1a18;
    --text: #292722;
    --border: #ddd7ce;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream-light);
    color: var(--text);
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ==========================================
   HEADER
   ========================================== */

.header {
    height: 120px;
    background: var(--cream-light);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    width: min(1380px, calc(100% - 80px));
    height: 100%;
    margin: auto;

    display: grid;
    grid-template-columns: 190px 1fr 180px;
    align-items: center;
    gap: 30px;
}

.header-logo {
    width: 125px;
    height: 70px;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.navigation a {
    position: relative;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

.navigation a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;

    width: 0;
    height: 1px;

    background: var(--black);

    transition: width .2s ease;
}

.navigation a:hover::after,
.navigation a.active::after {
    width: 100%;
}

.reserve-header {
    justify-self: end;

    background: var(--beige);
    padding: 17px 28px;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
}


/* ==========================================
   HERO
   ========================================== */

.hero {
    height: 520px;

    display: grid;
    grid-template-columns: 40% 60%;

    background: var(--cream);
}

.hero-text {
    height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 55px 60px;
}

.hero-text-inner {
    width: 100%;
    max-width: 430px;
}

.eyebrow,
.section-label {
    margin-bottom: 20px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

.hero-logo {
    width: 370px;
    max-height: 210px;

    margin-bottom: 25px;

    object-fit: contain;
    object-position: left center;
}

.hero-description {
    margin-bottom: 27px;

    font-size: 15px;
    line-height: 1.7;
}

.dark-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;

    padding: 16px 25px;

    background: var(--black);
    color: white;

    border-radius: 30px;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.3px;

    transition: transform .2s ease,
                opacity .2s ease;
}

.dark-button:hover {
    transform: translateY(-2px);
    opacity: .88;
}


/* HERO FOTO */

.hero-photo {
    height: 520px;
    overflow: hidden;
}

.hero-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /* Hiermee bepaal je welk deel zichtbaar blijft */
    object-position: center center;
}


/* ==========================================
   HIGHLIGHTS
   ========================================== */

.highlights {
    min-height: 220px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    background: white;
}

.highlight {
    display: flex;
    align-items: center;

    gap: 25px;

    padding: 50px 55px;

    border-right: 1px solid var(--border);
}

.highlight:last-child {
    border-right: none;
}

.highlight-icon {
    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--cream);

    border-radius: 50%;

    font-size: 20px;
}

.highlight:nth-child(2) .highlight-icon {
    background: #cfc3b4;
}

.highlight h3 {
    margin-bottom: 10px;

    font-size: 12px;
    letter-spacing: .7px;
}

.highlight p {
    margin-bottom: 15px;

    font-size: 12px;
    line-height: 1.6;
}

.highlight a {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .8px;
}

.highlight a span {
    margin-left: 8px;
}


/* ==========================================
   ABOUT / VAAS
   ========================================== */

.about {
    height: 430px;

    display: grid;
    grid-template-columns: 45% 55%;

    background: var(--cream);
}


/* VAAS FOTO */

.about-image {
    height: 430px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    /* Hiermee bepaal je welk deel van vaas.jpg zichtbaar is */
    object-position: center center;
}


.about-content {
    height: 430px;

    display: flex;
    align-items: center;

    padding: 50px 9%;
}

.about-inner {
    max-width: 580px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-label span {
    width: 40px;
    height: 1px;
    background: #aaa297;
}

.about h2 {
    margin-bottom: 20px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(36px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.1;
}

.about p:not(.section-label) {
    max-width: 540px;

    margin-bottom: 12px;

    font-size: 14px;
    line-height: 1.7;
}

.about .dark-button {
    margin-top: 15px;
}


/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: #fff;
}

.footer-inner {
    width: min(1380px, calc(100% - 80px));

    margin: auto;

    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr .9fr;

    gap: 65px;

    padding: 75px 0;
}

.footer-brand img {
    width: 170px;
    height: 100px;

    object-fit: contain;
    object-position: left center;

    margin-bottom: 25px;
}

.socials {
    display: flex;
    gap: 18px;
}

.socials a {
    font-size: 18px;
}

.footer h4 {
    margin-bottom: 22px;

    font-size: 11px;
    letter-spacing: 1.2px;
}

.hours {
    display: grid;
    grid-template-columns: 100px 1fr;

    font-size: 11px;
    line-height: 1.8;
}

.footer-column p,
.footer-reserve p {
    margin-bottom: 18px;

    font-size: 11px;
    line-height: 1.8;
}

.footer-link {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .5px;
}

.footer-reserve {
    background: var(--cream);

    border-radius: 80px 80px 0 0;

    padding: 45px 35px;

    text-align: center;
}

.footer-bottom {
    min-height: 55px;

    padding: 18px max(40px, calc((100% - 1380px) / 2));

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--black);
    color: #fff;

    font-size: 9px;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 1000px) {

    .header-inner {
        grid-template-columns: 150px 1fr 150px;
    }

    .navigation {
        gap: 18px;
    }

    .hero {
        grid-template-columns: 45% 55%;
    }

    .highlights {
        grid-template-columns: 1fr;
    }

    .highlight {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 760px) {

    .header {
        height: 90px;
    }

    .header-inner {
        width: calc(100% - 35px);

        display: flex;
        justify-content: space-between;
    }

    .header-logo {
        width: 110px;
    }

    .reserve-header {
        display: none;
    }

    .menu-toggle {
        display: block;

        border: none;
        background: none;

        font-size: 25px;
        cursor: pointer;
    }

    .navigation {
        position: absolute;

        top: 90px;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;

        padding: 35px;

        background: var(--cream-light);

        border-bottom: 1px solid var(--border);

        z-index: 20;
    }

    .navigation.open {
        display: flex;
    }


    /* HERO MOBILE */

    .hero {
        display: flex;
        flex-direction: column;

        height: auto;
    }

    .hero-text {
        height: auto;

        padding: 60px 30px;
    }

    .hero-logo {
        width: 290px;
    }

    .hero-photo {
        height: 380px;
    }

    .hero-photo img {
        object-position: center center;
    }


    /* HIGHLIGHTS MOBILE */

    .highlights {
        display: block;
    }

    .highlight {
        padding: 40px 30px;
    }


    /* ABOUT MOBILE */

    .about {
        display: flex;
        flex-direction: column;

        height: auto;
    }

    .about-image {
        height: 350px;
    }

    .about-image img {
        object-position: center center;
    }

    .about-content {
        height: auto;

        padding: 60px 30px;
    }


    /* FOOTER MOBILE */

    .footer-inner {
        width: calc(100% - 60px);

        grid-template-columns: 1fr;

        gap: 45px;

        padding: 60px 0;
    }

    .footer-reserve {
        border-radius: 50px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;

        text-align: center;
    }
}

/* ==========================================
   MENUKAARTEN PAGINA
   ========================================== */

.menu-page {
    min-height: calc(100vh - 120px);
    background: var(--cream);
    padding: 90px 40px 110px;
}

.menu-page-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    text-align: center;
}

.menu-page .section-label {
    justify-content: center;
    margin-bottom: 15px;
}

.menu-page h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
}

.menu-intro {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 60px;
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.menu-card {
    background: #fff;
    padding: 55px 35px;
    min-height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--cream);
    border-radius: 50%;

    font-size: 25px;
}

.menu-card h2 {
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.menu-card p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.menu-card .dark-button {
    margin-top: auto;
}

/* TABLET */

@media (max-width: 900px) {

    .menu-cards {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .menu-card {
        min-height: 260px;
    }
}

/* MOBIEL */

@media (max-width: 760px) {

    .menu-page {
        padding: 60px 20px 80px;
    }

    .menu-page h1 {
        font-size: 42px;
    }

    .menu-intro {
        margin-bottom: 40px;
    }

    .menu-card {
        padding: 40px 25px;
    }
}

/* ==========================================
   LOGO FORMAAT AANPASSING
   ========================================== */

/* Logo linksboven */
.header-logo {
    width: 150px;
    height: 95px;
    overflow: hidden;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.8);
}

/* Logo in footer */
.footer-brand img {
    width: 210px;
    height: 130px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.35);
}


/* ==========================================
   DEFINITIEVE LOGO FORMATEN
   ========================================== */

/* Logo linksboven - kleiner */
.header-logo {
    width: 105px;
    height: 75px;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
}

/* Groot logo in het midden van de hero */
.hero-logo {
    width: 430px;
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    object-position: left center;
}

/* Social media tekens verbergen */
.socials {
    display: none;
}


/* Welkom bij dichter boven het hero-logo */
.eyebrow {
    margin-bottom: 8px;
}

.hero-text-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text .eyebrow {
    margin-bottom: 5px;
}


/* ==========================================
   HERO - AFSTANDEN VOLGENS CONCEPT
   ========================================== */

@media (min-width: 761px) {

    .hero-text {
        padding: 60px 70px;
    }

    .hero-text-inner {
        max-width: 430px;
        display: block;
    }

    /* Welkom bij dichter boven logo */
    .hero-text .eyebrow {
        margin-bottom: 10px;
    }

    /* Logo dichter bij de andere onderdelen */
    .hero-logo {
        width: 430px;
        max-height: 260px;
        margin-bottom: 15px;
    }

    /* Tekst dichter onder logo */
    .hero-description {
        margin-bottom: 25px;
    }

    /* Knop zoals in het concept */
    .hero-text .dark-button {
        width: auto;
        min-width: 155px;
        padding: 16px 25px;
    }
}

/* ==========================================
   CONTACT PAGINA
   ========================================== */

.contact-page {
    background: var(--cream-light);
}

/* BOVENSTE TITELGEDEELTE */

.contact-hero {
    background: var(--cream);
    padding: 90px 40px 85px;
}

.contact-heading {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.contact-heading h1 {
    max-width: 750px;
    margin-bottom: 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 400;
    line-height: 1.05;
}

.contact-intro {
    max-width: 520px;

    font-size: 15px;
    line-height: 1.8;
}


/* CONTACTGEDEELTE */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: min(1400px, 100%);
    margin: 0 auto;

    background: #fff;
}


/* LINKERKANT */

.contact-details {
    padding: 90px 10%;
    background: #fff;
}

.contact-details h2,
.contact-form-wrapper h2 {
    margin-bottom: 45px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.1;
}

.contact-info {
    display: grid;
    gap: 35px;
}

.contact-info-block {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.contact-info-block:last-child {
    border-bottom: none;
}

.contact-info-block h3 {
    margin-bottom: 12px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.contact-info-block p {
    font-size: 14px;
    line-height: 1.8;
}

.contact-hours {
    display: grid;
    grid-template-columns: 130px 1fr;

    font-size: 13px;
    line-height: 1.9;
}


/* RECHTERKANT / FORMULIER */

.contact-form-wrapper {
    padding: 90px 10%;

    background: var(--cream);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 16px 0;

    border: none;
    border-bottom: 1px solid #aaa297;

    background: transparent;
    color: var(--text);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;

    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--black);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #918b83;
}

.contact-form .dark-button {
    border: none;
    cursor: pointer;

    margin-top: 10px;
}


/* ==========================================
   CONTACT TABLET
   ========================================== */

@media (max-width: 900px) {

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

    .contact-details,
    .contact-form-wrapper {
        padding: 70px 50px;
    }
}


/* ==========================================
   CONTACT MOBIEL
   ========================================== */

@media (max-width: 760px) {

    .contact-hero {
        padding: 60px 30px;
    }

    .contact-heading h1 {
        font-size: 48px;
    }

    .contact-details,
    .contact-form-wrapper {
        padding: 60px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

/* ==========================================
   SFEER PAGINA
   ========================================== */

.sfeer-page {
    background: var(--cream-light);
}

.sfeer-hero {
    padding: 100px 8%;
    background: var(--cream);
}

.sfeer-hero h1 {
    margin-bottom: 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 6vw, 82px);
    font-weight: 400;
    line-height: 1.05;
}

.sfeer-hero > p:last-child {
    max-width: 500px;

    font-size: 15px;
    line-height: 1.8;
}


/* GALERIJ */

.sfeer-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;

    padding: 12px;
    background: #fff;
}

.sfeer-photo {
    height: 430px;
    overflow: hidden;
}

.sfeer-photo-large {
    height: 600px;
}

.sfeer-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.sfeer-photo:hover img {
    transform: scale(1.03);
}


/* ONDERSTE BLOK */

.sfeer-cta {
    padding: 90px 8%;

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

    background: var(--cream);
}

.sfeer-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 400;
    line-height: 1.05;
}


/* TABLET / MOBIEL */

@media (max-width: 760px) {

    .sfeer-hero {
        padding: 65px 30px;
    }

    .sfeer-gallery {
        grid-template-columns: 1fr;
    }

    .sfeer-photo,
    .sfeer-photo-large {
        height: 400px;
    }

    .sfeer-cta {
        padding: 65px 30px;

        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }
}

/* ==========================================
   OVER ONS PAGINA
   ========================================== */

.over-page {
    background: var(--cream-light);
}


/* HERO */

.over-hero {
    padding: 100px 8%;
    background: var(--cream);
}

.over-hero-inner {
    width: min(1200px, 100%);
    margin: auto;
}

.over-hero h1 {
    margin-bottom: 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 400;
    line-height: 1.05;
}

.over-hero p:last-child {
    max-width: 500px;

    font-size: 15px;
    line-height: 1.8;
}


/* ONS VERHAAL */

.over-story {
    display: grid;
    grid-template-columns: 50% 50%;

    min-height: 600px;
}

.over-story-image {
    min-height: 600px;
    overflow: hidden;
}

.over-story-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}

.over-story-content {
    display: flex;
    align-items: center;

    padding: 80px 10%;

    background: #fff;
}

.over-story-inner {
    max-width: 580px;
}

.over-story h2 {
    margin-bottom: 30px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 4vw, 60px);
    font-weight: 400;
    line-height: 1.08;
}

.over-story p:not(.section-label) {
    margin-bottom: 18px;

    font-size: 14px;
    line-height: 1.8;
}


/* WAARDEN */

.over-values {
    padding: 100px 8%;
    background: var(--cream);
}

.over-values-heading {
    margin-bottom: 60px;
}

.over-values-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 400;
}

.over-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.over-value {
    padding: 50px 45px;

    border-right: 1px solid var(--border);
}

.over-value:last-child {
    border-right: none;
}

.over-value > span {
    display: block;
    margin-bottom: 35px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
}

.over-value h3 {
    margin-bottom: 15px;

    font-size: 11px;
    letter-spacing: 1.3px;
}

.over-value p {
    max-width: 300px;

    font-size: 13px;
    line-height: 1.8;
}


/* CTA */

.over-cta {
    padding: 90px 8%;

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

    background: #fff;
}

.over-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 400;
    line-height: 1.05;
}


/* TABLET / MOBIEL */

@media (max-width: 760px) {

    .over-hero {
        padding: 65px 30px;
    }

    .over-story {
        grid-template-columns: 1fr;
    }

    .over-story-image {
        min-height: 400px;
        height: 400px;
    }

    .over-story-content {
        padding: 65px 30px;
    }

    .over-values {
        padding: 65px 30px;
    }

    .over-values-grid {
        grid-template-columns: 1fr;
    }

    .over-value {
        padding: 40px 0;

        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .over-value:last-child {
        border-bottom: none;
    }

    .over-cta {
        padding: 65px 30px;

        flex-direction: column;
        align-items: flex-start;
        gap: 35px;
    }
}

/* ==========================================
   CATERING PAGINA
   ========================================== */

.catering-page {
    background: var(--cream-light);
}


/* HERO */

.catering-hero {
    padding: 110px 8%;
    background: var(--cream);
}

.catering-hero-inner {
    width: min(1200px, 100%);
    margin: auto;
}

.catering-hero h1 {
    max-width: 900px;
    margin-bottom: 30px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 6vw, 82px);
    font-weight: 400;
    line-height: 1.05;
}

.catering-intro {
    max-width: 600px;
    margin-bottom: 35px;

    font-size: 15px;
    line-height: 1.8;
}


/* VERHAAL */

.catering-story {
    display: grid;
    grid-template-columns: 1fr 1fr;

    padding: 100px 8%;

    background: #fff;
}

.catering-story-left {
    padding-right: 50px;
}

.catering-story h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 400;
    line-height: 1.05;
}

.catering-story-right {
    max-width: 580px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.catering-story-right p {
    margin-bottom: 20px;

    font-size: 14px;
    line-height: 1.9;
}


/* MOGELIJKHEDEN */

.catering-options {
    padding: 100px 8%;

    background: var(--cream);
}

.catering-options-heading {
    margin-bottom: 60px;
}

.catering-options-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 400;
    line-height: 1.05;
}

.catering-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.catering-option {
    min-height: 270px;

    padding: 45px;

    border-right: 1px solid var(--border);
}

.catering-option:last-child {
    border-right: none;
}

.catering-option > span {
    display: block;
    margin-bottom: 45px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
}

.catering-option h3 {
    margin-bottom: 15px;

    font-size: 11px;
    letter-spacing: 1.2px;
}

.catering-option p {
    max-width: 300px;

    font-size: 13px;
    line-height: 1.8;
}


/* CONTACT */

.catering-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;

    padding: 100px 8%;

    background: #fff;
}

.catering-contact-text h2 {
    margin-bottom: 25px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 65px);
    font-weight: 400;
    line-height: 1.05;
}

.catering-contact-text > p:last-child {
    max-width: 450px;

    font-size: 14px;
    line-height: 1.8;
}

.catering-contact-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    gap: 28px;
}

.catering-contact-details h3 {
    margin-bottom: 7px;

    font-size: 9px;
    letter-spacing: 1.3px;
}

.catering-contact-details > div > a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}


/* MOBIEL */

@media (max-width: 760px) {

    .catering-hero {
        padding: 65px 30px;
    }

    .catering-story {
        grid-template-columns: 1fr;
        gap: 40px;

        padding: 65px 30px;
    }

    .catering-options {
        padding: 65px 30px;
    }

    .catering-options-grid {
        grid-template-columns: 1fr;
    }

    .catering-option {
        min-height: 0;
        padding: 40px 0;

        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .catering-option:last-child {
        border-bottom: none;
    }

    .catering-contact {
        grid-template-columns: 1fr;
        gap: 50px;

        padding: 65px 30px;
    }

    .catering-contact-details > div > a {
        font-size: 18px;
    }
}



/* ==========================================
   SFEER - HORIZONTALE SWIPE GALERIJ
   ========================================== */

.sfeer-slider-section {
    padding: 30px 0 80px;
    overflow: hidden;
}

.sfeer-slider {
    position: relative;
    width: 100%;
}

.sfeer-track {
    display: flex;
    gap: 10px;

    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;

    padding: 10px 3% 20px;

    scrollbar-width: none;
    -ms-overflow-style: none;

    -webkit-overflow-scrolling: touch;
}

.sfeer-track::-webkit-scrollbar {
    display: none;
}

.sfeer-slide {
    flex: 0 0 calc((100vw - 12% - 40px) / 5);

    min-width: 240px;
    height: 440px;

    overflow: hidden;
    border-radius: 5px;

    scroll-snap-align: start;

    background: #eee;
}

.sfeer-slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* PIJLEN */

.sfeer-arrow {
    position: absolute;
    top: 50%;
    z-index: 10;

    width: 52px;
    height: 52px;

    transform: translateY(-50%);

    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;

    background: rgba(20,20,20,.70);
    color: #fff;

    font-size: 24px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: background .2s ease, transform .2s ease;
}

.sfeer-arrow:hover {
    background: #111;
    transform: translateY(-50%) scale(1.05);
}

.sfeer-prev {
    left: 20px;
}

.sfeer-next {
    right: 20px;
}


/* BOLLETJES */

.sfeer-dots {
    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    margin-top: 15px;
}

.sfeer-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: #d6d2ca;

    cursor: pointer;

    transition: transform .2s ease, background .2s ease;
}

.sfeer-dot.active {
    background: #a77a3c;
    transform: scale(1.15);
}


/* TEKST ONDER GALERIJ */

.sfeer-gallery-caption {
    margin-top: 35px;

    text-align: center;

    font-size: 10px;
    letter-spacing: 3px;
}


/* TABLET */

@media (max-width: 1000px) {

    .sfeer-slide {
        flex-basis: 38vw;
        min-width: 300px;
        height: 430px;
    }

}


/* MOBIEL */

@media (max-width: 650px) {

    .sfeer-slider-section {
        padding-top: 15px;
        padding-bottom: 55px;
    }

    .sfeer-track {
        gap: 12px;

        padding-left: 20px;
        padding-right: 20px;
    }

    .sfeer-slide {
        flex: 0 0 82vw;

        min-width: 0;
        height: 430px;

        scroll-snap-align: center;
    }

    .sfeer-arrow {
        display: none;
    }

    .sfeer-gallery-caption {
        padding: 0 20px;

        font-size: 8px;
        line-height: 1.8;
        letter-spacing: 2px;
    }

}


/* SFEER FOTO HOVER ZOOM */

.sfeer-slide img {
    transition: transform 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
    .sfeer-slide:hover img {
        transform: scale(1.10);
    }
}


/* SFEER - volledige foto tonen bij hover */

@media (hover: hover) and (pointer: fine) {

    .sfeer-slide {
        transition: background 0.3s ease;
    }

    .sfeer-slide:hover {
        background: #111;
    }

    .sfeer-slide:hover img {
        transform: none;
        object-fit: contain;
    }

}


/* ==========================================
   SFEER - FOTO KOMT UIT FRAME BIJ HOVER
   ========================================== */

@media (hover: hover) and (pointer: fine) {

    .sfeer-slider,
    .sfeer-slider-section {
        overflow: visible;
    }

    .sfeer-track {
        overflow-x: auto;
        overflow-y: visible;
        padding-top: 80px;
        padding-bottom: 80px;
        margin-top: -80px;
        margin-bottom: -80px;
    }

    .sfeer-slide {
        position: relative;
        overflow: visible;
        z-index: 1;
    }

    .sfeer-slide img {
        position: relative;
        z-index: 1;

        object-fit: cover;

        transition:
            transform 0.35s ease,
            box-shadow 0.35s ease;

        transform-origin: center center;
    }

    .sfeer-slide:hover {
        z-index: 50;
        background: transparent;
    }

    .sfeer-slide:hover img {
        position: absolute;

        top: 50%;
        left: 50%;

        width: auto;
        height: auto;

        max-width: none;
        max-height: 620px;

        object-fit: contain;

        transform: translate(-50%, -50%) scale(1.15);

        box-shadow: 0 15px 45px rgba(0,0,0,0.35);

        border-radius: 6px;

        z-index: 100;
    }

}


/* SFEER - hover formaat iets kleiner */

@media (hover: hover) and (pointer: fine) {

    .sfeer-slide:hover img {
        max-height: 520px;
        max-width: 420px;

        transform: translate(-50%, -50%) scale(1.05);
    }

}


/* SFEER - navigatiepijlen altijd boven de foto's */

.sfeer-arrow {
    z-index: 9999 !important;
    pointer-events: auto;
}


/* ==========================================
   FOOTER SOCIAL BUTTONS
   ========================================== */

.footer-social-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.footer-social-buttons a {
    display: block;

    width: 48px;
    height: 48px;

    border-radius: 50%;
    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-social-buttons img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.footer-social-buttons a:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (max-width: 650px) {
    .footer-social-buttons {
        gap: 10px;
        margin-top: 18px;
    }

    .footer-social-buttons a {
        width: 44px;
        height: 44px;
    }
}


/* ==========================================
   LOSSE MENUKAART PAGINA
   ========================================== */

.menukaart-page {
    background: #f5f1e9;
    padding: 80px 20px 100px;
}

.menukaart-heading {
    max-width: 1000px;
    margin: 0 auto 45px;
    text-align: center;
}

.menukaart-heading h1 {
    margin: 10px 0 25px;
}

.menukaart-back {
    display: inline-block;

    color: inherit;
    text-decoration: none;

    font-size: 11px;
    letter-spacing: 2px;

    transition: opacity .2s ease;
}

.menukaart-back:hover {
    opacity: .55;
}

.menukaart-image-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.menukaart-image {
    display: block;

    width: auto;
    max-width: 100%;
    height: auto;

    margin: 0 auto;

    box-shadow: 0 15px 45px rgba(0,0,0,.12);
}

@media (max-width: 650px) {

    .menukaart-page {
        padding: 45px 12px 70px;
    }

    .menukaart-heading {
        margin-bottom: 30px;
    }

}


/* ==========================================
   CONTACTFORMULIER
   ========================================== */

.contact-form input,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
}

.contact-form textarea {
    resize: vertical;
    min-height: 160px;
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin: 22px 0 28px;

    font-size: 12px;
    line-height: 1.6;

    cursor: pointer;
}

.contact-consent input {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-top: 2px;

    accent-color: #a77a3c;
}

.contact-submit {
    cursor: pointer;
}


/* CONTACT - status en spambeveiliging */

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-status {
    margin-bottom: 28px;
    padding: 16px 20px;

    font-size: 13px;
    line-height: 1.6;

    border-radius: 3px;
}

.contact-status.success {
    display: block;
    background: #e8efe6;
    border: 1px solid #a9bca4;
    color: #354b31;
}

.contact-status.error {
    display: block;
    background: #f5e7e3;
    border: 1px solid #d3aaa0;
    color: #6b3328;
}


/* ================================
   TAALKEUZE MENUKAART
================================ */

.language-modal {
    position: fixed;
    inset: 0;
    background: rgba(25, 24, 20, 0.72);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 25px;
    z-index: 99999;
    backdrop-filter: blur(4px);
}

.language-modal.active {
    display: flex;
}

.language-modal-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #f3eee5;
    padding: 55px 45px 45px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

.language-modal-small {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #6f765d;
}

.language-modal-box h2 {
    margin: 0 0 15px;
    font-size: 42px;
    font-family: Georgia, serif;
    font-weight: normal;
    color: #27251f;
}

.language-modal-text {
    margin: 0 auto 30px;
    color: #777267;
    line-height: 1.6;
}

.language-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.language-options a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    background: #27251f;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    transition: transform .2s ease, opacity .2s ease;
}

.language-options a:hover {
    transform: translateY(-2px);
    opacity: .88;
}

.language-flag {
    font-size: 21px;
    line-height: 1;
}

.language-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    border: 0;
    background: transparent;
    color: #27251f;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 600px) {
    .language-modal-box {
        padding: 50px 22px 30px;
    }

    .language-modal-box h2 {
        font-size: 34px;
    }
}



/* ==========================================
   CONTACT - GOOGLE MAPS
   ========================================== */

.contact-map-section {
    display: grid;
    grid-template-columns: 38% 62%;
    min-height: 520px;
    background: var(--cream);
}

.contact-map-heading {
    padding: 80px 12%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.contact-map-heading h2 {
    margin: 10px 0 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 4vw, 60px);
    font-weight: 400;
    line-height: 1.08;
}

.contact-map-heading > p:not(.eyebrow) {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.8;
}

.contact-map {
    min-height: 520px;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
}

@media (max-width: 760px) {
    .contact-map-section {
        grid-template-columns: 1fr;
    }

    .contact-map-heading {
        padding: 65px 30px;
    }

    .contact-map {
        min-height: 400px;
    }

    .contact-map iframe {
        min-height: 400px;
    }
}


/* ==========================================
   PRIVACY & ALGEMENE VOORWAARDEN
   ========================================== */

.legal-page {
    background: var(--cream-light);
}

.legal-hero {
    padding: 100px 8%;
    background: var(--cream);
}

.legal-hero h1 {
    margin: 10px 0 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 400;
    line-height: 1.05;
}

.legal-hero > p:last-child {
    max-width: 650px;
    font-size: 15px;
    line-height: 1.8;
}

.legal-content {
    width: min(850px, 84%);
    margin: 0 auto;
    padding: 90px 0 110px;
}

.legal-content h2 {
    margin: 45px 0 15px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 14px;
    line-height: 1.9;
}

.legal-updated {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
    font-size: 12px !important;
    opacity: .7;
}

@media (max-width: 760px) {
    .legal-hero {
        padding: 65px 30px;
    }

    .legal-content {
        width: auto;
        padding: 60px 30px 80px;
    }

    .legal-content h2 {
        font-size: 24px;
    }
}


/* ==========================================
   404 PAGINA
   ========================================== */

.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 30px;
    background: var(--cream);
    text-align: center;
}

.error-content {
    width: min(760px, 100%);
}

.error-number {
    margin: 10px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(100px, 18vw, 190px);
    font-weight: 400;
    line-height: .9;
    opacity: .12;
}

.error-content h1 {
    margin: -20px 0 25px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 400;
    line-height: 1.08;
}

.error-text {
    max-width: 570px;
    margin: 0 auto 35px;
    font-size: 15px;
    line-height: 1.8;
}

.error-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.error-menu-link {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

@media (max-width: 760px) {
    .error-page {
        min-height: 65vh;
        padding: 70px 25px;
    }

    .error-content h1 {
        margin-top: -10px;
    }

    .error-buttons {
        flex-direction: column;
        gap: 25px;
    }
}
