/* De Gastronoom - Main Stylesheet */
:root {
    --color-black: #050505;
    --color-surface: #121212;
    --color-surface-light: #1e1e1e;
    --color-primary: #D5006D;
    /* Gastronoom Pink */
    --color-primary-dark: #a00052;
    --color-white: #FFFFFF;
    --color-text-muted: #A0A0A0;

    --gradient-primary: linear-gradient(135deg, #D5006D 0%, #890046 100%);
    --gradient-dark: linear-gradient(to bottom, #1a1a1a, #050505);

    --font-primary: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-primary);
    line-height: 1.6;
    position: relative;
}

/* Light/beige page variant (used on franchise & vacatures) */
body.page-beige {
    background: #f5f5dc; /* match footer color */
    color: #050505;
}
body.page-beige .section,
body.page-beige .bg-surface {
    background: #f5f5dc;
}
body.page-beige .section-subtitle {
    color: #D5006D;
}
body.page-beige .menu-card,
body.page-beige .location-card {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.08);
}
/* Remove pink glow on fancy brand text for beige pages */
body.page-beige .brand-fancy {
    text-shadow: none !important;
}
/* Keep header nav readable on beige pages */
body.page-beige .navbar .nav-links a {
    color: var(--color-white) !important;
}
body.page-beige .navbar .nav-links a:hover,
body.page-beige .navbar .nav-links a.active {
    color: var(--color-primary) !important;
}
body.page-beige .cart-icon-link,
body.page-beige .cart-icon-link svg {
    color: var(--color-white) !important;
    stroke: currentColor !important;
}
/* Force dark text on beige pages (override inline whites) */
body.page-beige p,
body.page-beige li,
body.page-beige span,
body.page-beige label,
body.page-beige .section p,
body.page-beige .section li {
    color: #111 !important;
}
body.page-beige h1,
body.page-beige h2,
body.page-beige h3,
body.page-beige h4,
body.page-beige h5,
body.page-beige h6 {
    color: #050505 !important;
}
/* Form elements readable on light background */
body.page-beige input,
body.page-beige textarea,
body.page-beige select {
    background: #ffffff !important;
    color: #111 !important;
    border-color: rgba(0,0,0,0.2) !important;
}
body.page-beige input::placeholder,
body.page-beige textarea::placeholder {
    color: rgba(0,0,0,0.45) !important;
}

/* Card outline for beige pages */
.beige-card {
    background: rgba(0, 0, 0, 0.03) !important;
    border: 2px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 20px !important;
}

/* Preserve pink accent for icons/bullets */
body.page-beige .accent {
    color: var(--color-primary) !important;
}

/* Simple grid utilities for forms */
.form-grid {
    display: grid;
    gap: 20px;
}
.form-grid.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    column-gap: 24px;
    row-gap: 22px;
}
.form-grid .grid-span-2 {
    grid-column: 1 / -1;
}

/* Consistent field sizing and tidy labels */
.form-grid label {
    display: block;
    margin-bottom: 8px;
    white-space: nowrap; /* keep * on same line for standard labels */
}
.form-grid input[type="text"],
.form-grid input[type="email"],
.form-grid input[type="tel"],
.form-grid input[type="search"],
.form-grid input[type="number"] {
    width: 100%;
    height: 52px;
    padding: 12px 14px !important;
    line-height: 1.2;
}
.form-grid textarea {
    width: 100%;
    padding: 12px 14px !important;
}

/* Checkbox/consent labels should wrap on small screens */
.form-grid .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    white-space: normal;
}
.form-grid .checkbox-label span {
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
}

.section {
    overflow-x: hidden;
}

/* Override for menu section to show shadows */
#menu.section {
    overflow-x: visible !important;
    overflow-y: visible !important;
    overflow: visible !important;
}

#menu.section * {
    overflow-x: visible !important;
}

#menu .container {
    overflow-x: visible !important;
    overflow-y: visible !important;
    overflow: visible !important;
}

#menu.section {
    overflow-x: visible;
    overflow-y: visible;
    overflow: visible;
}

#menu .container {
    overflow: visible;
}

#menu .container.text-center {
    overflow: visible;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary {
    color: var(--color-primary);
}

.bg-surface {
    background-color: var(--color-surface);
    /* Vloeiende overgang van story section */
    position: relative;
}

/* Vloeiende overgang tussen story en menu */
.story-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom, #1a1a1a 0%, var(--color-surface) 100%);
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--color-primary);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    font-size: 0.9rem;
}

/* Fancy brand type for story title highlight */
.brand-fancy {
    font-family: inherit;
    letter-spacing: normal;
    text-transform: none;
    position: relative;
    text-shadow: none;
}

/* Display brand style (matches the bold rounded sample) */
.brand-logo {
    font-family: 'Lilita One', sans-serif;
    font-weight: 400; /* Lilita One is single weight */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary);
}
@media (max-width: 768px) {
    .brand-fancy {
        letter-spacing: 0.5px;
    }
}
/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 0;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(213, 0, 109, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(213, 0, 109, 0.6);
    filter: brightness(1.1);
}

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

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Header/Nav Styles (Global) */
.navbar {
    padding: 25px 0;
    background-color: rgba(5, 5, 5, 0.95);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    margin-bottom: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: padding 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    left: 0;
    right: 0;
    will-change: transform;
    transform: translateZ(0);
}

.navbar.scrolled {
    padding: 20px 0;
    background-color: rgba(5, 5, 5, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Category Navigation Bar */
.category-nav {
    background-color: rgba(5, 5, 5, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    /* Sit directly under the sticky navbar (JS sets --navbar-height) */
    top: var(--navbar-height, 80px); /* desktop-safe fallback */
    z-index: 998;
    padding: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    line-height: 0 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.category-nav .container {
    padding: 0 50px 0 20px !important;
    margin: 0 !important;
    line-height: 0 !important;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

/* On mobile, add extra padding for indicator */
@media (max-width: 768px) {
    .category-nav .container {
        padding-right: 50px !important;
    }
}

.category-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) rgba(255, 255, 255, 0.1);
    -ms-overflow-style: none;
    padding: 0 !important;
    margin: 0 !important;
    line-height: normal;
    min-height: 52px;
    scroll-padding: 0 50px;
    scroll-behavior: smooth;
}

/* On mobile, add padding to prevent button from overlapping links */
@media (max-width: 768px) {
    .category-nav-wrapper {
        padding-right: 50px !important;
    }
}

/* On mobile, add padding to prevent indicator from overlapping links */
@media (max-width: 768px) {
    .category-nav-wrapper {
        padding-right: 45px !important;
    }
}

.category-nav-wrapper::-webkit-scrollbar {
    height: 4px;
}

.category-nav-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.category-nav-wrapper::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 2px;
}

.category-nav-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(213, 0, 109, 0.8);
}

/* Desktop: Allow scrolling if content overflows */
@media (min-width: 769px) {
    .category-nav-wrapper {
        /* Allow scrolling on desktop too, but only if content overflows */
        overflow-x: auto !important;
        justify-content: flex-start;
        padding-right: 0 !important;
        width: 100%;
        flex-wrap: nowrap;
        will-change: auto;
    }
    
    /* Make category links maintain their natural width */
    .category-nav-wrapper .category-link {
        flex: 0 0 auto;
        justify-content: center;
        text-align: center;
        min-width: fit-content;
        white-space: nowrap;
    }
}

.category-nav-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to right, transparent, rgba(5, 5, 5, 0.98));
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-nav-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(to left, transparent, rgba(5, 5, 5, 0.98));
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show gradient fade on mobile when scrollable */
@media (max-width: 768px) {
    .category-nav-wrapper.scrollable-right::after {
        opacity: 1;
    }
    
    .category-nav-wrapper.scrollable-left::before {
        opacity: 1;
    }
}

/* Webkit scrollbar styling is now above */

.category-link {
    display: inline-flex;
    align-items: center;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    position: relative;
    line-height: 1;
    height: 100%;
    z-index: 10;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: var(--color-primary);
    transition: transform 0.3s ease;
}

/* Mobile-only: maak categorieknoppen compacter */
@media (max-width: 768px) {
    .category-link {
        padding: 8px 10px;
        font-size: 0.56rem;
        letter-spacing: 0.2px;
    }
    /* Some pages style via the wrapper selector; mirror the change with same values */
    .category-nav-wrapper .category-link {
        padding: 8px 10px !important;
        font-size: 0.56rem !important;
        letter-spacing: 0.2px !important;
        line-height: 1 !important;
    }
    .category-link::after {
        height: 2px;
        }
}

/* Desktop: houd sticky bar consistent en voorkom “krimpen” bij refresh */
@media (min-width: 769px) {
    .category-nav {
        position: sticky;
        top: 64px; /* fallback */
        top: var(--navbar-height, 64px); /* prefer dynamic height */
        z-index: 999; /* stay above content */
    }
    .category-nav-wrapper {
        min-height: 52px; /* vaste hoogte voorkomt visuele krimp */
    }
}

/* Ensure main navbar is sticky on desktop too (fallback if JS not applied) */
@media (min-width: 769px) {
    .navbar {
        position: relative; /* JS zet nu hele header fixed; voorkom dubbele sticky */
    }
}

.category-link:hover {
    color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.category-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.category-link.active {
    color: var(--color-primary);
    background-color: rgba(213, 0, 109, 0.1);
}

.category-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Veggie category highlight in header */
.category-link.category-link-veggie {
    color: rgba(104, 255, 148, 0.95);
}

.category-link.category-link-veggie:hover {
    color: #ffffff;
}

.category-link.category-link-veggie::after {
    background: #1f8b3a;
}

.category-link.category-link-veggie.active {
    color: #1f8b3a;
    background-color: rgba(31, 139, 58, 0.12);
}



/* Category Nav Scroll Buttons */
.category-nav-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.category-nav-scroll-btn svg {
    width: 14px;
    height: 14px;
}

.category-nav-scroll-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(213, 0, 109, 0.5);
}

.category-nav-scroll-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.category-nav-scroll-btn.hidden {
    display: none;
}

.category-nav-scroll-left {
    left: 10px;
}

.category-nav-scroll-right {
    right: 10px;
}

/* Show scroll buttons on mobile for better UX */
@media (max-width: 768px) {
    .category-nav-scroll-btn {
        width: 28px;
        height: 28px;
        background: rgba(213, 0, 109, 0.9);
        border: 2px solid var(--color-primary);
        box-shadow: 0 2px 8px rgba(213, 0, 109, 0.4);
    }
    
    .category-nav-scroll-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .category-nav-scroll-btn.hidden {
        display: none !important;
    }
    
    .category-nav-scroll-left {
        left: 5px;
    }
    
    .category-nav-scroll-right {
        right: 5px;
    }
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 75px;
    max-width: 100%;
    object-fit: contain;
}

.logo {
    padding: 5px 0;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

.cart-icon-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--color-white) !important;
    text-decoration: none !important;
    position: relative !important;
}

.cart-icon-link svg {
    width: 24px !important;
    height: 24px !important;
    stroke: currentColor !important;
    fill: none !important;
}

.cart-icon-link:hover {
    color: var(--color-primary) !important;
}

.cart-count {
    position: absolute !important;
    top: -5px !important;
    right: -5px !important;
    background: var(--color-primary) !important;
    color: white !important;
    border-radius: 50% !important;
    min-width: 20px !important;
    height: 20px !important;
    font-size: 0.7rem !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 700 !important;
    padding: 0 5px !important;
    box-shadow: 0 2px 8px rgba(213, 0, 109, 0.4) !important;
}

.cart-count:not([style*="display: none"]) {
    display: flex !important;
}

/* Floating Cart Icon */
.floating-cart-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(213, 0, 109, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-cart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(213, 0, 109, 0.6);
}

.floating-cart-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
    position: relative;
}

.floating-cart-link svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
}

.floating-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: white;
    color: var(--color-primary);
    border-radius: 50%;
    min-width: 24px;
    height: 24px;
    font-size: 0.75rem;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--color-primary);
}

.floating-cart-count:not([style*="display: none"]) {
    display: flex !important;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(213, 0, 109, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(213, 0, 109, 0.6);
    }
}

/* Global: disable horizontal scrolling/swiping */
html, body {
    overflow-x: hidden;
    width: 100%;
}
body {
    touch-action: pan-y;
    overscroll-behavior-x: none;
}

@media (max-width: 768px) {
    .floating-cart-icon {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .floating-cart-link svg {
        width: 24px;
        height: 24px;
    }
    
    .floating-cart-count {
        min-width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
}

/* Burger Menu Button */
.burger-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    z-index: 1000;
    padding-top: 100px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}


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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px 40px 20px;
    align-items: center;
    margin-top: 20px;
}

.mobile-nav-links li {
    width: 100%;
    text-align: center;
}

.mobile-nav-links a {
    display: block;
    padding: 15px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.1rem;
    color: var(--color-white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--color-primary);
    background: rgba(213, 0, 109, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* =========================================
   Migrated Styles from index.php & Features
   ========================================= */

/* Hero Section (New Robust) */
/* Hero Section (Split Layout) */
/* Hero Section (Bold Custom) */
.hero-bold {
    height: 95vh;
    min-height: 520px;
    width: 100%;
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-start;
    background-color: #000;
    overflow: hidden;
}

.hero-bold .container.h-100 {
    height: 100%;
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding-top: clamp(72px, 10vh, 120px);
    padding-bottom: clamp(24px, 4vh, 48px);
    box-sizing: border-box;
}

.h-100 {
    height: 100%;
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.hero-content-bold {
    max-width: 550px;
    padding-left: 0;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-main-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-actions {
    margin-top: 8px;
    position: relative;
    padding-top: 16px;
}

.hero-actions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    max-width: 320px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
}

.tagline {
    font-size: 1.5rem;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0px;
}

.hero-content-bold h1 {
    font-size: 8rem;
    font-weight: 900;
    color: #fff;
    line-height: 0.9;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -3px;
    /* "Thick" look */
}

.hero-content-bold h2 {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    /* Ghost text */
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-content-bold p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 500px;
    border-left: 5px solid var(--color-primary);
    padding-left: 20px;
}

.btn-bold {
    background: white;
    color: black;
    padding: 20px 50px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 2px;
    display: inline-block;
    transition: 0.3s;
    border: none;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
    /* Edgy shape */
}

.btn-bold:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

/* Hide mobile-only elements on desktop */
.site-title-mobile {
    display: none;
}

/* Mobile hero (previous variant) */
@media (max-width: 768px) {
    .hero-bold {
        position: relative;
        width: 100%;
        height: clamp(450px, 72vh, 600px);
        min-height: 0;
        max-height: none;
        margin: 0;
        padding: 0;
        display: block;
        overflow: hidden;
        background-color: #050505;
        /* Intentionally zoom/crop on mobile to avoid black bars */
        background-size: 320% !important;
        background-position: 60% 40% !important;
        background-repeat: no-repeat;
    }

    .hero-bold::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.15) 62%, rgba(0, 0, 0, 0.5) 100%);
    }

    .hero-bold::after {
        display: none;
    }

    .hero-bold .container.h-100 {
        position: absolute;
        inset: 0;
        z-index: 2;
        height: 100%;
        min-height: 100%;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 18px 18px 22px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        box-sizing: border-box;
    }

    .hero-content-bold {
        width: 100%;
        max-width: 400px;
        padding: 0;
        margin: 0;
        flex: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        /* Vertical placement (slightly below top) */
        padding-top: clamp(22px, 4.5vh, 52px);
    }

    .site-title-mobile {
        display: none;
    }

    .hero-main-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .tagline {
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.28em;
        margin: 0 0 12px;
        line-height: 1;
        color: var(--color-primary);
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
    }

    .hero-content-bold h1 {
        font-size: clamp(3.05rem, 13.5vw, 4.15rem);
        line-height: 0.95;
        letter-spacing: -0.02em;
        margin: 0 0 6px;
        text-shadow: 0 3px 18px rgba(0, 0, 0, 0.95);
    }

    .hero-content-bold h2 {
        font-size: clamp(1.55rem, 7vw, 2.05rem);
        line-height: 1.05;
        margin: 0 0 14px;
        color: rgba(255, 255, 255, 0.45);
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
        font-weight: 800;
        text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
    }

    .hero-content-bold p {
        margin: 0 0 18px;
        padding: 0;
        border-left: 0;
        max-width: 360px;
        font-size: 1.02rem;
        line-height: 1.45;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
        font-weight: 500;
        text-align: center;
    }

    .hero-actions {
        margin: 0;
        width: auto;
        max-width: none;
        position: relative;
        padding-top: 14px;
        margin-top: 6px;
    }

    .hero-actions::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: min(220px, 70vw);
        height: 3px;
        background: var(--color-primary);
        border-radius: 2px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
    }

    .btn-bold {
        width: auto;
        text-align: center;
        font-size: 0.9rem;
        padding: 16px 34px;
        letter-spacing: 0.14em;
        min-width: 200px;
        clip-path: polygon(0 0, 100% 0, 100% 85%, 95% 100%, 0 100%);
        border-radius: 0;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55);
        background: #fff;
        color: #000;
    }
}

.section {
    padding: 100px 0;
}

/* Story Section */
.story-heading {
    display: flex;
    flex-direction: column;
    gap: 0.15em;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.story-heading-line {
    color: #fff;
}

.story-heading-brand {
    color: var(--color-primary);
    text-transform: uppercase;
}

.story-body .story-cta {
    margin-top: 28px;
}

.story-section {
    background: #000;
    position: relative;
    overflow: hidden;
    margin-top: -1px;
    padding-top: 101px;
}

.story-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(213, 0, 109, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "intro image"
        "body image";
    gap: 24px 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.story-intro {
    grid-area: intro;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.story-body {
    grid-area: body;
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.story-body p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ccc;
}

.story-image {
    grid-area: image;
    align-self: center;
}

.story-image img {
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 12px solid white;
    transform: rotate(4deg);
    transition: transform 0.5s ease;
}

.story-image img:hover {
    transform: rotate(0deg) scale(1.02);
    z-index: 2;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.menu-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
}

.menu-card.highlight {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(213, 0, 109, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

.menu-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Tablet and up - 2 columns */
@media (min-width: 769px) and (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.location-card {
    position: relative;
    overflow: visible;
    padding: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(213, 0, 109, 0.2);
}

.location-name {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
}

.location-details {
    margin-bottom: 15px;
}

.location-details p {
    margin: 8px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.location-badge {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.location-specialty {
    position: absolute;
    bottom: -20px;
    right: -15px;
    background: #000;
    color: #ffc107;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    transform: rotate(6deg);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.5);
    z-index: 10;
    white-space: nowrap;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}


/* Responsive locations grid - Mobile 2 columns */
@media (max-width: 768px) {
    #locations .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .locations-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }

    .location-card {
        padding: 20px 15px;
        min-width: 0;
    }

    .location-name {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .location-details {
        margin-bottom: 12px;
    }

    .location-details p {
        margin: 5px 0;
        font-size: 0.85rem;
    }

    .location-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-top: 10px;
    }

    .location-specialty {
        font-size: 0.75rem;
        padding: 10px 16px;
        bottom: -15px;
        right: -12px;
        transform: rotate(5deg);
        letter-spacing: 1.5px;
    }
}

/* Extra small mobile - keep 2 columns but adjust spacing */
@media (max-width: 480px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }

    .location-card {
        padding: 18px 12px;
    }

    .location-name {
        font-size: 1rem;
    }

    .location-details p {
    font-size: 0.8rem;
    }

    .location-badge {
        font-size: 0.7rem;
        padding: 5px 10px;
    }

    .location-specialty {
        font-size: 0.7rem;
        padding: 8px 14px;
        bottom: -12px;
        right: -10px;
        transform: rotate(4deg);
        letter-spacing: 1px;
    }
}

/* Assortiment Section */
.assortiment-section {
    padding: 80px 0;
}

.assortiment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.assortiment-card {
    text-decoration: none;
    color: inherit;
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.assortiment-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(213, 0, 109, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.assortiment-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 0;
    aspect-ratio: 5 / 4;
    overflow: hidden;
}

.assortiment-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(213, 0, 109, 0.15) 0%, rgba(26, 26, 26, 0.95) 100%);
}

.assortiment-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.assortiment-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(213, 0, 109, 0.4);
}

.assortiment-title {
    padding: 12px 10px;
    text-align: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.assortiment-title-underline {
    text-decoration: underline;
    text-decoration-color: var(--color-primary);
    text-underline-offset: 5px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-large:hover .btn-arrow {
    transform: translateX(5px);
}

/* Tablet - Assortiment */
@media (min-width: 769px) {
    .assortiment-grid {
        gap: 22px;
    }

    .assortiment-title {
        font-size: 1.05rem;
        padding: 10px 12px;
    }
}

/* Desktop - Assortiment: ruimere foto's, eten goed zichtbaar */
@media (min-width: 1025px) {
    .assortiment-section {
        padding: 64px 0;
    }

    .assortiment-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        max-width: 880px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px;
    }

    .assortiment-image-wrapper {
        aspect-ratio: 5 / 4;
    }

    .assortiment-image-placeholder img {
        object-fit: cover;
        object-position: center center;
        transform: none;
    }

    .assortiment-title {
        font-size: 0.95rem;
        padding: 7px 10px;
    }

    /* Menu section - titel/knoppen/dots compacter maar leesbaar */
    #menu .section-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        margin-top: 40px;
    }
    #menu .section-subtitle {
        display: inline-block;
        margin-top: 50px;
        margin-bottom: 6px;
    }
    .fb-controls {
        gap: 10px;
        margin-top: 10px;
    }
    .fb-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        border-radius: 24px;
    }
    .page-dots {
        gap: 6px;
    }
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

@media (min-width: 1280px) {
    .assortiment-grid {
        max-width: 920px;
        gap: 22px;
    }
}

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

/* 3D Flipbook - Sheet Logic */
.flipbook-stage {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    margin: 50px 0;
}

.flipbook {
    width: 900px;
    /* Full spread width (2x450) */
    height: 600px;
    position: relative;
    transform-style: preserve-3d;
}

/* Desktop: maak de menu sectie compacter */
@media (min-width: 1025px) {
    .flipbook-stage {
        height: 380px !important;
        margin: 18px 0 !important;
        max-width: 700px !important;
    }
    .flipbook {
        width: 640px !important;
        height: 400px !important;
        transform: none !important;
        transform-origin: top center !important;
    }
    /* Maak bedieningsknoppen ook compacter */
    .fb-controls {
        gap: 8px !important;
        margin-top: 0 !important;
        position: relative !important;
        top: 0 !important;
        transform: translateY(-60px) !important; /* lijnhoogte – schuif de dots/pijlen omhoog */
        z-index: 3;
    }
    .fb-btn {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
        border-radius: 20px !important;
    }
    /* Verplaats de nav-controls (pijlen + dots) dichter onder de kaart */
    #menu .nav-controls {
        margin-top: 0 !important;
        position: relative !important;
        top: 0 !important;
        transform: translateY(-60px) !important;
        z-index: 3;
    }
}

/* Sheets act as the "Paper" containing Front and Back */
.fb-sheet {
    position: absolute;
    top: 0;
    left: 50%;
    /* Spine of the book */
    width: 450px;
    /* Half width */
    height: 100%;
    transform-origin: left center;
    /* Hinge on spine */
    transform-style: preserve-3d;
    transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    cursor: pointer;
}

/* The actual page faces */
.fb-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    /* Hide purely for 1-sided logic */
    display: flex;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    /* Shadows for depth */
}

/* Front Face (Right Side) */
.fb-page.front {
    z-index: 2;
    transform: rotateY(0deg);
    border-radius: 0 5px 5px 0;
    box-shadow: inset 15px 0 20px -10px rgba(0, 0, 0, 0.1), 5px 0 5px rgba(0, 0, 0, 0.1);
}

/* Back Face (Left Side - visible when sheet is flipped) */
.fb-page.back {
    z-index: 1;
    transform: rotateY(180deg);
    border-radius: 5px 0 0 5px;
    box-shadow: inset -15px 0 20px -10px rgba(0, 0, 0, 0.1), -5px 0 5px rgba(0, 0, 0, 0.1);
}

.fb-page img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* Flipped State for Sheet */
.fb-sheet.flipped {
    transform: rotateY(-180deg);
}

/* Control Buttons */
.fb-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.fb-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(213, 0, 109, 0.3);
}

.fb-btn:hover {
    background: #b0005a;
    transform: translateY(-2px);
}

.fb-btn:disabled {
    background: #333;
    opacity: 0.5;
    cursor: default;
    transform: none;
    box-shadow: none;
}

/* Mobile Specific Overrides */
@media (max-width: 768px) {

    /* Layout Adjustments */
    .story-grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "intro"
            "image"
            "body";
        gap: 20px;
    }

    .story-intro {
        margin-bottom: 4px;
    }

    .story-image {
        margin-bottom: 8px;
        align-self: center;
        max-width: 92%;
        margin-left: auto;
        margin-right: auto;
    }

    .story-heading {
        margin-bottom: 0.75rem;
    }

    .story-section {
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 16px 20px;
    }

    .section {
        padding: 60px 0;
    }

    .navbar-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        font-size: 0.8rem;
        gap: 15px;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .assortiment-section {
        padding: 60px 0;
    }
    
    .assortiment-grid {
        gap: 15px;
    }
    
    .assortiment-title {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .assortiment-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
        top: 10px;
        left: 10px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    /* Flipbook Mobile: KEEP 3D, just smaller */
    .flipbook-stage {
        height: 500px;
        /* Reduced height */
        margin: 20px auto;
        perspective: 1500px;
    }

    .flipbook {
        transform: scale(0.65);
        /* Scale down significantly to fit */
        transform-origin: center top;
        transform-style: preserve-3d;
    }

    .fb-page {
        position: absolute;
        /* Keep absolute! */
        /* box-shadow already inherited */
    }

    .fb-controls {
        display: flex;
        /* Ensure buttons show */
        margin-top: -50px;
        gap: 10px;
    }

    .fb-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Icon Adjustments */
    .menu-card .icon {
        margin-bottom: 20px;
        color: white;
        transition: color 0.3s;
    }

    .menu-card:hover .icon {
        color: var(--color-primary);
    }

    .menu-card.highlight .icon {
        color: var(--color-primary);
    }

    .menu-card.highlight:hover .icon {
        filter: drop-shadow(0 0 10px rgba(213, 0, 109, 0.5));
    }
}

/* ========================================
   ELEGANT CAROUSEL
   ======================================== */
.showcase-book-section {
    width: 100%;
    overflow: visible;
    padding: 0;
    margin: 50px 0;
}

/* Text spacing in menu section */
#menu .container.text-center {
    padding-bottom: 30px;
}

#menu .fb-hint {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
    display: block;
}

.book-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    touch-action: pan-y;
    overflow: visible;
    position: relative;
}

.elegant-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    overflow: visible;
}

.elegant-carousel-page {
    position: absolute;
    width: 350px;
    aspect-ratio: 210 / 297;
    background: #fff;
    box-shadow: 0 15px 50px rgba(0,0,0,0.8), 0 0 0 1px rgba(0,0,0,0.1);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform, opacity;
}

.elegant-carousel-page img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.nav-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff69b4, #d6368f);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    touch-action: manipulation;
}

.nav-btn:hover:not(:disabled) {
    transform: scale(1.1);
}

.nav-btn:active {
    transform: scale(0.9);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.page-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-dot.active {
    background: #ff69b4;
    transform: scale(1.5);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
}

/* Desktop carousel (from showcase) */
@media (min-width: 1024px) {
    .elegant-carousel-wrapper {
        height: 700px;
        perspective: 2000px;
        max-width: 1400px;
        margin: 0 auto;
    }

    .elegant-carousel-page {
        width: 380px !important;
    }
}

/* Mobile carousel (from showcase) - CRITICAL FOR SHADOWS */
/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar {
        position: relative;
        z-index: 1000;
    width: 100%;
        left: 0;
        right: 0;
        margin: 0;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        will-change: transform, position;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
}

    .navbar.scrolled {
        padding: 15px 0;
    }
    
    /* When JavaScript makes it fixed */
    .navbar[style*="position: fixed"] {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
}

    .category-nav {
        position: sticky;
        top: 0;
        z-index: 998;
    }
    
    .category-link {
        padding: 14px 18px;
        font-size: 0.85rem;
        letter-spacing: 0.8px;
    }
    
    .burger-menu-btn {
    display: flex;
        position: absolute;
        right: 20px;
        z-index: 1001;
    }

    .nav-links {
        display: none;
}

    .mobile-menu {
        display: block;
        position: fixed;
        z-index: 999;
}

    .navbar-content {
        position: relative;
        justify-content: center;
        min-height: 70px;
}

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
        z-index: 1001;
}

    .logo img {
        height: 75px;
        max-width: 250px;
    }
    
    /* Ensure body/html don't break sticky */
    html {
        position: relative;
        height: 100%;
}

    body {
        position: relative;
        min-height: 100%;
}

    /* Make sure navbar is direct child of body */
    body > .navbar {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: 0 !important;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        position: relative;
    }

    #menu.section {
        overflow-x: visible !important;
        overflow: visible !important;
        position: relative;
        padding: 60px 0 !important;
    }

    /* Text container - normal padding for text */
    #menu .container.text-center {
        padding-left: 20px !important;
        padding-right: 20px !important;
        padding-bottom: 20px !important;
        overflow-x: visible !important;
        overflow: visible !important;
        max-width: 100% !important;
        width: 100%;
    }

    /* Text styling adjustments for mobile */
    #menu .section-subtitle {
        margin-bottom: 10px;
    }

    #menu .section-title {
        margin-bottom: 15px;
        padding: 0 10px;
    }

    #menu .fb-hint {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 0;
        padding: 0 10px;
    }

    /* Carousel section - full width for shadows */
    #menu .showcase-book-section {
        overflow: visible !important;
        padding: 0 !important;
        margin: 30px 0;
        width: 100%;
        position: relative;
    }

    #menu .showcase-book-section * {
        overflow-x: visible !important;
        overflow: visible !important;
    }

    .book-container {
        max-width: 100%;
        padding: 0 40px;
        overflow: visible !important;
        position: relative;
    }

    .elegant-carousel-wrapper {
        height: 400px;
        width: calc(100% + 80px) !important;
        margin-left: -40px !important;
        overflow: visible !important;
        position: relative;
    }

    .elegant-carousel-page {
        width: 280px;
        box-shadow: 0 15px 50px rgba(0,0,0,0.8), 0 0 0 1px rgba(0,0,0,0.1) !important;
    }

    /* Navigation controls - centered with proper spacing */
    .nav-controls {
        padding: 0 20px;
        margin-top: 30px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Footer with Floating Fries */
.footer {
    background: #f5f5dc;
    color: #050505;
    padding: 48px 0 0 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 200px;
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    outline: none;
    margin-top: 0;
}

/* Footer typography – altijd leesbaar op beige (ook mobiel / donkere pagina's) */
.footer-heading {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #a00052;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link-list a {
    display: inline-block;
    color: #050505;
    text-decoration: none;
    padding: 5px 0;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-link-list a:hover {
    color: #D5006D;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 18px 20px 26px;
    color: #333;
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 10px;
}

.footer-bottom .dot {
    color: #D5006D;
}

.footer-grid {
    display: grid;
    gap: 28px;
    padding-bottom: 24px;
}

.footer-brand {
    text-align: center;
}

.footer-brand .footer-logo-img {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 16px;
}

.footer-brand .footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.footer-brand .footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 14px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #D5006D;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
    border-radius: 10px;
    padding: 8px;
}

.footer-social-link:hover {
    color: #a00052;
    transform: translateY(-2px);
}

.footer-social-link svg {
    width: 36px;
    height: 36px;
    display: block;
    flex-shrink: 0;
}

/* Beige pagina's: footer blijft donker (override globale witte body-tekst) */
body.page-beige .footer,
body.page-beige .footer a:not(.footer-social-link),
body.page-beige .footer .footer-heading,
body.page-beige .footer .footer-bottom,
body.page-beige .footer .footer-bottom span {
    color: #050505 !important;
}

body.page-beige .footer .footer-heading {
    color: #a00052 !important;
}

body.page-beige .footer .footer-link-list a:hover {
    color: #D5006D !important;
}

/* Donkere pagina's: footer-links altijd zwart op beige achtergrond */
body:not(.page-beige) .footer .footer-heading {
    color: #a00052;
}

body:not(.page-beige) .footer .footer-link-list a,
body:not(.page-beige) .footer .footer-bottom,
body:not(.page-beige) .footer .footer-bottom span {
    color: #050505;
}

/* Desktop-only enhanced footer layout */
@media (min-width: 1025px) {
    .footer::before,
    .footer::after {
        content: '';
        position: absolute;
        top: -40px;
        bottom: -40px;
        width: 160px;
        filter: blur(0.2px);
        opacity: 0.25;
        background: radial-gradient(ellipse at center, rgba(213,0,109,0.25) 0%, rgba(213,0,109,0.05) 60%, transparent 70%);
        pointer-events: none;
    }
    .footer::before { left: -30px; transform: rotate(-8deg); }
    .footer::after { right: -30px; transform: rotate(8deg); }
    
    .footer-container {
        max-width: 1200px;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: 300px 1fr 320px;
        gap: 40px;
        align-items: start;
        padding-bottom: 30px;
    }
    
    .footer-brand .footer-logo-img {
        max-width: 260px;
        height: auto;
        display: block;
        margin-bottom: 18px;
        filter: drop-shadow(0 6px 14px rgba(0,0,0,0.15));
    }
    
    .footer-brand .footer-social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        gap: 14px;
        margin: 6px auto 0;
    }
    
    .footer-social-link {
        color: #D5006D;
        transition: transform .2s ease, color .2s ease, box-shadow .2s ease;
        border-radius: 10px;
        padding: 6px;
    }
    .footer-social-link:hover {
        color: #a00052;
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(213,0,109,0.25);
        background: rgba(213,0,109,0.06);
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 30px;
    }
    .footer-heading {
        grid-column: 1 / -1;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: #a00052;
        margin: 0 0 6px 0;
    }
    .footer-link-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .footer-link-list a {
        display: inline-block;
        color: #050505;
        text-decoration: none;
        padding: 6px 0;
        font-weight: 600;
        letter-spacing: .2px;
        transition: color .2s ease, transform .2s ease;
    }
    .footer-link-list a:hover {
        color: #D5006D;
        transform: translateX(2px);
    }
    
    /* Gebruik banner als decoratieve achtergrond rechts-onder, behoud transparantie */
    .footer-has-banner {
        position: relative;
    }
    .footer-has-banner::after {
        content: '';
        position: absolute;
        right: -40px;
        bottom: -20px;
        width: 520px;
        height: 260px;
        background-image: var(--footer-banner);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right bottom;
        opacity: 1;
        pointer-events: none;
        filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18));
    }
    .footer-banner-fallback { display: none; }
    
    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 18px 0 26px 0;
        color: #6b6b6b;
        font-size: 0.9rem;
        border-top: 1px solid rgba(0,0,0,0.08);
        margin-top: 10px;
    }
    .footer-bottom .dot { color: #D5006D; }
}

/* Hide footer if no logo is uploaded */
.footer:empty,
.footer .footer-container:empty {
    display: none;
}

/* Remove any unwanted pseudo-elements */
.footer::before,
.footer::after {
    display: none !important;
    content: none !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
    position: relative;
    z-index: 2;
    border: none;
    outline: none;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.footer-logo {
    flex: 1;
    text-align: center;
}

.footer-logo img {
    max-width: 300px;
    max-height: 150px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}

.footer-banner {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.footer-banner img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    width: 100%;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    width: 100%;
}

.footer-social-text {
    font-size: 0.95rem;
    color: #D5006D;
    font-weight: 700;
    margin: 0;
    text-align: right;
    line-height: 1.4;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
}

.footer-social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #D5006D;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 8px;
    border-radius: 8px;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    color: #a00052;
    background: rgba(213, 0, 109, 0.05);
}

.footer-social-link svg {
    width: 40px;
    height: 40px;
    display: block;
}

.footer-social-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: none;
}


@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-link-list a {
        color: #050505;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        margin-bottom: 0;
    }
    
    .footer-logo img {
        max-width: 250px;
        max-height: 120px;
    }
    
    .footer-social {
        align-items: center;
        width: 100%;
    }
    
    .footer-social-text {
        font-size: 0.9rem;
        margin-bottom: 12px;
        text-align: center;
        color: #D5006D;
        font-weight: 700;
    }
    
    .footer-social-icons {
        width: 100%;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .footer-social-link {
        flex: 1;
        min-width: 120px;
        max-width: 150px;
        padding: 15px;
        background: #D5006D;
        color: #fff !important;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(213, 0, 109, 0.3);
    }
    
    .footer-social-link:hover {
        background: #a00052;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(213, 0, 109, 0.4);
    }
    
    .footer-social-link svg {
        width: 32px;
        height: 32px;
        fill: currentColor;
        stroke: none;
    }
    
    .footer-social-label {
        display: block;
        color: #fff !important;
        font-size: 0.85rem;
        margin-top: 4px;
    }
    
    .footer-banner {
        margin-bottom: 20px;
    }
    
    .footer-banner img {
        max-height: 250px;
    }
}


/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}