/**
 * Sam Sam Enschede - Frontend Stylesheet
 * Restaurant website met moderne, professionele uitstraling
 *
 * Fonts:
 * - Bellatrix: Quotes en sierlijke teksten
 * - Minimo: Headers en titels
 * - Josefin Sans: Body text (Google Fonts)
 */

/* ================================================
   CUSTOM FONTS
   ================================================ */

@font-face {
    font-family: 'Butler';
    src: url('/fonts/Butler-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Minimo';
    src: url('/fonts/Minimo.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Minimo';
    src: url('/fonts/Minimo-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Minimo';
    src: url('/fonts/Minimo-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Minimo';
    src: url('/fonts/Minimo-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bellatrix';
    src: url('/fonts/Bellatrix.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ================================================
   CSS VARIABLES - SAM SAM HUISSTIJL
   ================================================ */

:root {
    /* Primaire kleuren */
    --black: #1a1a1a;
    --white: #ffffff;
    --cream: #faf8f5;
    --cream-dark: #f0ece5;

    /* Accent kleuren (van de smudges) */
    --yellow: #e8b44c;
    --yellow-light: #f5d590;
    --green: #6b8e6b;
    --green-light: #8fb38f;
    --pink: #d4a5a5;
    --pink-light: #e8c4c4;
    --orange: #d4885a;
    --blue: #7a9eb8;

    /* UI kleuren */
    --text: #2d2d2d;
    --text-light: #6b6b6b;
    --text-muted: #999999;
    --border: #e0dcd5;
    --border-light: #f0ece5;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.2);

    /* Fonts */
    --font-heading: 'Butler', 'Georgia', serif; /* Butler voor headers */
    --font-subheading: 'Minimo', 'Helvetica Neue', sans-serif;
    --font-body: 'Josefin Sans', 'Helvetica Neue', sans-serif;
    --font-display: 'Bellatrix', 'Georgia', serif; /* Bellatrix voor sierlijke display teksten */

    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ================================================
   RESET & BASE
   ================================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px; /* Ruimte voor vaste navigatie */
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Verbeterde scroll performance */
    -webkit-overflow-scrolling: touch;
}

/* Scroll optimalisatie voor secties */
.section {
    scroll-margin-top: 80px;
}

/* Hardware acceleratie voor animaties */
.animate-fade-up,
.animate-scale,
.hero-slide,
.nav {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* Quote styling met Bellatrix font */
.quote, blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-style: normal;
    color: var(--text);
    line-height: 1.4;
}

/* ================================================
   LAYOUT
   ================================================ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-cream {
    background: var(--cream);
}

.section-white {
    background: var(--white);
}

/* Smudge decoraties bij secties */
.section-with-smudge {
    position: relative;
}

.section-smudge {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.section-smudge.top-left {
    top: 20px;
    left: 0;
    width: 350px;
    height: auto;
}

.section-smudge.top-right {
    top: 20px;
    right: 0;
    width: 300px;
    height: auto;
}

.section-smudge.bottom-left {
    bottom: 20px;
    left: 0;
    width: 250px;
    height: auto;
}

.section-smudge.bottom-right {
    bottom: 20px;
    right: 0;
    width: 320px;
    height: auto;
}

@media (max-width: 768px) {
    .section-smudge {
        display: none;
    }
}

/* ================================================
   NAVIGATION
   ================================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.25);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled,
.nav.nav-solid {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Shrink effect bij scrollen */
.nav.scrolled .nav-container,
.nav.nav-solid .nav-container {
    padding: 10px 24px;
}

.nav.scrolled .nav-logo img,
.nav.nav-solid .nav-logo img {
    height: 40px;
    animation: none;
}

.nav.scrolled .nav-link,
.nav.nav-solid .nav-link {
    font-size: 1rem;
}

.nav.scrolled .nav-link.nav-cta,
.nav.nav-solid .nav-link.nav-cta {
    padding: 8px 20px;
    font-size: 0.95rem;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 55px;
    width: auto;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: logoPulse 3s ease-in-out infinite;
    cursor: pointer;
}

/* Logo animaties */
@keyframes logoPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(232, 180, 76, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(232, 180, 76, 0.2);
    }
}

.nav-logo img:hover {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 25px 8px rgba(232, 180, 76, 0.4);
    animation: none;
}

.nav-menu {
    display: flex;
    gap: 36px;
    align-items: center;
}

/* Menu items met Josefin Sans Bold en slide-in animatie */
.nav-link {
    font-family: var(--font-body); /* Josefin Sans voor navigatie */
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    position: relative;
    padding: 8px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(-20px);
    animation: navSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Staggered animatie voor elk menu item - langere delays */
.nav-link:nth-child(1) { animation-delay: 0.3s; }
.nav-link:nth-child(2) { animation-delay: 0.45s; }
.nav-link:nth-child(3) { animation-delay: 0.6s; }
.nav-link:nth-child(4) { animation-delay: 0.75s; }
.nav-link:nth-child(5) { animation-delay: 0.9s; }
.nav-link:nth-child(6) { animation-delay: 1.05s; }

@keyframes navSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--yellow), var(--yellow-light));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--yellow);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.nav-cta {
    background: var(--yellow);
    color: var(--black);
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-body); /* Josefin Sans voor nav CTA */
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 15px rgba(232, 180, 76, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover {
    background: var(--yellow-light);
    color: var(--black);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(232, 180, 76, 0.5);
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-normal);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 95px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Pas mobile menu positie aan wanneer gescrolled */
.nav.scrolled + .mobile-menu,
.nav.scrolled ~ .mobile-menu {
    top: 60px;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-link {
    font-family: var(--font-body); /* Josefin Sans voor mobile navigatie */
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-30px);
}

.mobile-menu.active .mobile-link {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animatie voor mobiele menu items - langere delays */
.mobile-menu.active .mobile-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active .mobile-link:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active .mobile-link:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-link:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active .mobile-link:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active .mobile-link:nth-child(6) { transition-delay: 0.6s; }

.mobile-link:hover {
    color: var(--yellow);
    padding-left: 16px;
    text-shadow: 0 0 20px rgba(232, 180, 76, 0.5);
}

/* ================================================
   HERO SECTION - SLIDESHOW
   ================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
    padding-top: 80px; /* Ruimte voor de vaste navigatie */
}

.hero-logo {
    margin-bottom: 24px;
}

.hero-logo img {
    height: 140px;
    width: auto;
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title-small {
    display: block;
    font-family: var(--font-subheading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0;
    opacity: 0.9;
}

.hero-title-large {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    letter-spacing: 0.02em;
}

.hero-welcome {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #ffffff;
    max-width: 550px;
    margin: 0 auto 28px;
    line-height: 1.7;
    position: relative;
}

.hero-smudge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.hero-welcome-text {
    position: relative;
    z-index: 1;
}

.hero-welcome .highlight {
    color: var(--yellow);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-subheading); /* Minimo voor knoppen */
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--yellow-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--text);
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1rem;
}

.btn i {
    font-size: 1em;
}

/* ================================================
   SECTION HEADERS
   ================================================ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header .section-label {
    margin-bottom: 12px;
}

.section-header .section-title {
    /* inline-block voor correcte smudge positie */
}

.section-label {
    display: inline-block;
    font-family: var(--font-subheading); /* Minimo voor labels */
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--yellow);
    margin-bottom: 16px;
    position: relative;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--yellow);
}

.section-label::before {
    right: calc(100% + 15px);
}

.section-label::after {
    left: calc(100% + 15px);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
    position: relative;
    display: inline-block;
}

/* Smudge achter sectie titels */
.title-smudge {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scale(0.5);
    transform-origin: left center;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

/* Bredere smudge voor langere titels */
.title-smudge-wide {
    transform: translateY(-50%) scale(0.5) scaleX(1.5);
}

.section-title .title-text {
    position: relative;
    z-index: 1;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-label::before,
.section-dark .section-label::after {
    background: var(--yellow);
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Smudge decoratie achter afbeelding */
.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: url('/themes/smudge_yellow.png') no-repeat center;
    background-size: contain;
    z-index: -1;
    opacity: 0.8;
}

.about-text h3 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-text .section-label {
    display: inline-block;
    margin-bottom: 12px;
}

.about-text .section-title {
    display: inline-block;
    margin-bottom: 20px;
}

.about-quote {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text);
    padding: 24px;
    background: var(--cream);
    border-left: 4px solid var(--yellow);
    margin: 32px 0;
}

.about-intro {
    font-size: 1.15rem;
    line-height: 1.8;
}

.about-intro strong {
    color: var(--yellow);
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 28px 0;
}

.about-highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    padding: 12px 20px;
    border-radius: 30px;
    font-family: var(--font-subheading);
    font-size: 0.95rem;
    font-weight: 500;
}

.about-highlight-item i {
    color: var(--yellow);
    font-size: 1.1rem;
}

.about-mission {
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
    color: var(--black);
    padding: 20px 24px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 28px 0;
}

.about-mission i {
    margin-right: 10px;
    color: var(--black);
}

.about-text .btn {
    margin-top: 12px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--yellow);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* History sectie */
.history-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.history-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text);
}

.history-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.history-content .about-stats {
    margin-bottom: 60px;
}

/* Team lijst */
.team-list {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    margin-bottom: -40px; /* Verminder ruimte naar volgende sectie */
}

.team-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.1;
    text-align: center;
}

.team-names {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 2;
}

/* ================================================
   MENU SECTION - CASUAL STYLE
   ================================================ */

.menu-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 60px;
}

.menu-intro-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 400px;
}

.menu-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.menu-intro-content .section-label {
    display: inline-block;
    margin-bottom: 12px;
}

.menu-intro-content .section-title {
    display: block;
    margin-bottom: 20px;
}

.menu-intro-content p {
    margin-bottom: 32px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.menu-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.menu-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* Menu Highlights - signature items */
.menu-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.highlight-item {
    text-align: center;
}

.highlight-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 16px;
    transition: transform var(--transition-normal);
}

.highlight-item:hover img {
    transform: scale(1.03);
}

.highlight-item h4 {
    font-family: var(--font-subheading); /* Minimo voor highlight items */
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .menu-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .menu-intro-image {
        order: -1;
    }

    .menu-highlights {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .highlight-item img {
        height: 200px;
    }

    .menu-buttons {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   SPECIALS / ARRANGEMENTS SECTION
   ================================================ */

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

.special-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    transition: all var(--transition-normal);
}

.special-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.special-icon {
    width: 70px;
    height: 70px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: var(--black);
}

.special-title {
    font-family: var(--font-subheading); /* Minimo voor special cards */
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.special-subtitle {
    font-size: 0.9rem;
    color: var(--yellow);
    margin-bottom: 16px;
}

.special-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Arrangementen nieuwe layout */
.arrangementen-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.arrangementen-occasions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.occasion-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-family: var(--font-subheading);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.arrangementen-lead {
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

.arrangementen-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.arrangementen-cta-text {
    font-size: 1.1rem;
    color: var(--yellow);
}

.arrangementen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.arrangementen-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.arrangementen-contact .contact-box,
.arrangementen-contact .concordia-box {
    flex: 1;
}

.arrangementen-serre {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.serre-image {
    flex: 1;
    min-height: 250px;
}

.serre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.serre-info {
    padding: 30px;
}

.serre-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.serre-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 16px;
}

.serre-highlight {
    color: var(--yellow) !important;
    font-weight: 600;
    font-size: 1.1rem;
}

.serre-highlight i {
    margin-right: 8px;
}

.arrangementen-contact {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-box {
    background: var(--yellow);
    border-radius: 12px;
    padding: 32px;
    color: var(--black);
}

.contact-box h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.contact-box h3 i {
    margin-right: 10px;
}

.contact-box p {
    line-height: 1.7;
    margin-bottom: 12px;
}

.contact-box a {
    color: var(--black);
    font-weight: 600;
    text-decoration: underline;
}

.contact-box-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.contact-box .btn-primary {
    background: var(--black);
    color: var(--white);
}

.contact-box .btn-secondary {
    background: transparent;
    border: 2px solid var(--black);
    color: var(--black);
}

/* Accordion / Uitklapmenu */
.accordion-wrapper {
    margin-top: 20px;
}

.accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--black);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-subheading);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.accordion-toggle:hover {
    background: #333;
}

.accordion-toggle span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.accordion-icon {
    transition: transform var(--transition-normal);
}

.accordion-toggle.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--cream);
    border-radius: 0 0 8px 8px;
}

.accordion-content.open {
    max-height: 800px;
}

.accordion-content .group-form {
    padding: 24px;
    max-width: 100%;
}

.accordion-content .form-group label {
    color: var(--text);
}

.accordion-content .form-group input,
.accordion-content .form-group select,
.accordion-content .form-group textarea {
    background: var(--white);
}

.accordion-content .btn {
    margin-top: 16px;
}

.concordia-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
}

.concordia-box h4 {
    font-family: var(--font-subheading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 12px;
}

.concordia-box h4 i {
    color: var(--yellow);
    margin-right: 10px;
}

.concordia-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.concordia-box-large {
    padding: 28px;
}

.concordia-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.concordia-zaal-card {
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

.concordia-zaal-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.concordia-zaal-info {
    padding: 12px;
    text-align: center;
}

.concordia-zaal-info strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.concordia-zaal-info span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.concordia-cta {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.concordia-cta a {
    color: var(--yellow);
    font-weight: 600;
    margin-left: 8px;
}

.concordia-cta a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .arrangementen-grid {
        grid-template-columns: 1fr;
    }

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

    .concordia-zaal-card img {
        height: 150px;
    }
}

/* ================================================
   REVIEWS SECTION
   ================================================ */

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

.review-card {
    background: var(--white);
    border-radius: 8px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.review-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--yellow);
    position: absolute;
    top: 16px;
    left: 24px;
    line-height: 1;
    opacity: 0.3;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars i {
    color: var(--yellow);
    font-size: 1rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--black);
}

.review-author-info h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.review-author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ================================================
   OPENING HOURS
   ================================================ */

.opening-hours {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.opening-hours h3 {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.opening-hours h3 i {
    color: var(--yellow);
}

.hours-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hours-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
}

.hours-card-header {
    background: var(--yellow);
    color: var(--black);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-subheading);
    font-weight: 600;
    font-size: 0.95rem;
}

.hours-card-kitchen .hours-card-header {
    background: var(--black);
    color: var(--white);
}

.hours-card-body {
    padding: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    font-weight: 500;
}

.hours-row span:last-child {
    color: var(--text-light);
}

@media (max-width: 500px) {
    .hours-cards {
        grid-template-columns: 1fr;
    }
}

/* ================================================
   CONTACT SECTION
   ================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-details p,
.contact-details a {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-details a:hover {
    color: var(--yellow);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.contact-social a {
    width: 48px;
    height: 48px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.contact-social a:hover {
    background: var(--yellow);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact-form h3 i {
    color: var(--yellow);
    margin-right: 8px;
}

.form-message {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.form-message.error {
    background: #fbe9e7;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Openingstijden in contact kolom */
.contact-info .opening-hours {
    margin-top: 32px;
}

.contact-info .opening-hours h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-info .opening-hours h3 i {
    color: var(--yellow);
    margin-right: 8px;
}

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

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

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--yellow);
}

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

.form-checkbox {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--yellow);
}

.form-checkbox label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-checkbox label a {
    color: var(--yellow);
    text-decoration: underline;
}

/* ================================================
   GIFTCARD / CADEAUKAART SECTION
   ================================================ */

.giftcard-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.giftcard-info {
    text-align: center;
    padding: 40px;
    background: var(--cream);
    border-radius: 12px;
}

.giftcard-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: var(--black);
}

.giftcard-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.giftcard-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.giftcard-cta {
    color: var(--yellow) !important;
    font-weight: 600;
    font-size: 0.95rem;
}

.giftcard-cta i {
    margin-right: 8px;
}

.giftcard-checker {
    background: var(--cream);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.giftcard-iframe-wrapper {
    flex: 1;
}

.giftcard-checker h4 {
    font-family: var(--font-subheading);
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text);
}

.giftcard-checker h4 i {
    color: var(--yellow);
    margin-right: 10px;
}

.giftcard-checker > p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.giftcard-iframe-wrapper {
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    min-height: 520px;
    overflow: hidden;
}

.giftcard-iframe {
    width: 100%;
    min-height: 500px;
    height: 500px;
    border: none;
    display: block;
}

@media (max-width: 900px) {
    .giftcard-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .giftcard-info,
    .giftcard-checker {
        padding: 28px 20px;
    }

    .giftcard-iframe-wrapper {
        padding: 16px;
        min-height: 540px;
    }

    .giftcard-iframe {
        min-height: 520px;
        height: 520px;
    }
}

@media (max-width: 480px) {
    .giftcard-info,
    .giftcard-checker {
        padding: 24px 16px;
    }

    .giftcard-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .giftcard-info h3 {
        font-size: 1.5rem;
    }

    .giftcard-iframe-wrapper {
        padding: 12px;
        min-height: 560px;
    }

    .giftcard-iframe {
        min-height: 540px;
        height: 540px;
    }
}

/* ================================================
   RESERVATION SECTION
   ================================================ */

.reservation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.reservation-image {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
}

.reservation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 900px) {
    .reservation-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .reservation-image {
        order: -1;
    }
}

.reservation-image-full {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.reservation-image-full img {
    width: 100%;
    height: auto;
    display: block;
}

.reservation-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--cream);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
}

.info-card i {
    font-size: 1.5rem;
    color: var(--yellow);
    margin-bottom: 12px;
    display: block;
}

.info-card h4 {
    font-family: var(--font-subheading); /* Minimo voor kleine koppen */
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.info-card p a {
    color: var(--black);
    font-weight: 500;
}

.info-card p a:hover {
    color: var(--yellow);
}

@media (max-width: 768px) {
    .reservation-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1;
        min-width: 140px;
    }
}

.info-card-highlight {
    background: linear-gradient(135deg, var(--yellow-light), var(--yellow));
    color: var(--black);
}

.info-card-highlight i {
    color: var(--black);
}

/* Group Reservation Form */
.group-reservation {
    margin-top: 80px;
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.group-reservation-header {
    text-align: center;
    margin-bottom: 40px;
}

.group-reservation-header i {
    font-size: 2.5rem;
    color: var(--yellow);
    margin-bottom: 16px;
}

.group-reservation-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 12px;
}

.group-reservation-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.group-form {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.group-form .btn {
    width: 100%;
    margin-top: 20px;
    padding: 16px 32px;
}

.group-form .btn i {
    margin-right: 8px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .group-reservation {
        padding: 32px 24px;
    }
}

/* ================================================
   CROSS-PROMOTIE
   ================================================ */

.cross-promo {
    background: var(--cream-dark);
    padding: 60px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cross-promo-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cross-promo-logo {
    width: 80px;
    height: auto;
    flex-shrink: 0;
}

.cross-promo-text {
    flex: 1;
}

.cross-promo-label {
    font-family: 'Butler', serif;
    font-size: 1.8rem;
    color: var(--black);
    margin: 0;
    line-height: 1.3;
}

.cross-promo-desc {
    font-size: 1rem;
    color: rgba(26, 26, 26, 0.5);
    margin: 8px 0 0;
    line-height: 1.6;
}

.cross-promo-address {
    font-size: 0.85rem;
    color: rgba(26, 26, 26, 0.45);
    margin: 12px 0 0;
}

.cross-promo-address i {
    margin-right: 4px;
}

.cross-promo-social {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.cross-promo-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(26, 26, 26, 0.08);
    color: var(--black);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cross-promo-social a:hover {
    background: var(--yellow);
    color: var(--black);
}

.cross-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: var(--cream);
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.cross-promo-btn:hover {
    background: var(--yellow);
    color: var(--black);
}

@media (max-width: 768px) {
    .cross-promo {
        padding: 48px 0;
    }
    .cross-promo-inner {
        flex-direction: column;
        text-align: center;
    }
    .cross-promo-logo {
        width: 64px;
    }
    .cross-promo-label {
        font-size: 1.4rem;
    }
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-subheading); /* Minimo voor footer koppen */
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--yellow);
}

.footer-contact p,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact a:hover {
    color: var(--yellow);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--black);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-bottom a:hover {
    color: var(--yellow);
}

/* ================================================
   ANIMATIONS
   ================================================ */

/* Fade in up animation */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for cards */
.animate-fade-up:nth-child(1) { transition-delay: 0.1s; }
.animate-fade-up:nth-child(2) { transition-delay: 0.2s; }
.animate-fade-up:nth-child(3) { transition-delay: 0.3s; }
.animate-fade-up:nth-child(4) { transition-delay: 0.4s; }
.animate-fade-up:nth-child(5) { transition-delay: 0.5s; }
.animate-fade-up:nth-child(6) { transition-delay: 0.6s; }

/* Scale animation for images */
.animate-scale {
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.6s ease;
}

.animate-scale.visible {
    transform: scale(1);
    opacity: 1;
}

/* ================================================
   UTILITY CLASSES
   ================================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .about-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    /* Navigation */
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Hero */
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Alle knoppen full width op mobiel */
    .section .btn,
    .contact-box .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }


    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        margin-bottom: 32px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-brand img {
        height: 40px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 24px;
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Section header */
    .section-label::before,
    .section-label::after {
        display: none;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }

    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.85rem;
    }

    .btn-large {
        padding: 16px 28px;
    }

    .menu-cards {
        grid-template-columns: 1fr;
    }

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

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

    .contact-form {
        padding: 24px;
    }

}

/* ================================================
   PARALLAX EFFECTS
   ================================================ */

.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

/* Fallback voor mobiel (geen fixed attachment) */
@media (max-width: 1024px) {
    .parallax-bg {
        background-attachment: scroll;
        top: 0;
        height: 100%;
    }
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
}

/* Parallax banner tussen secties */
.parallax-banner {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-banner .parallax-bg {
    background-attachment: fixed;
}

.parallax-banner .parallax-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.parallax-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 24px;
}

.parallax-banner-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.parallax-banner-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .parallax-banner {
        height: 300px;
    }
}

/* ================================================
   LIGHTBOX / IMAGE MODAL
   ================================================ */

.lightbox-trigger {
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.lightbox-trigger:hover {
    transform: scale(1.02);
}

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: lightboxZoomIn 0.3s ease;
}

@keyframes lightboxZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: var(--yellow);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.lightbox-close:hover {
    background: var(--yellow-light);
    transform: scale(1.1);
}

.lightbox-caption {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--white);
    font-family: var(--font-subheading);
    font-size: 1rem;
}

/* Lightbox navigatie pijlen */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav:hover {
    background: var(--yellow);
    color: var(--black);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        position: fixed;
    }

    .lightbox-caption {
        bottom: 20px;
        position: fixed;
    }

    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}

/* ================================================
   PRINT STYLES
   ================================================ */

@media print {
    .nav,
    .footer,
    .hero-scroll,
    .btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        padding: 20px 0;
    }
}
