/* ================================
   Bijzonder Belgie — style.css
   Design: modern_bold (bold, bright, geometric, high contrast)
   Mobile-first, flexbox-only layouts
   ================================ */

/* ===== CSS RESET & NORMALIZE ===== */
* { box-sizing: border-box; }
html, body { height: 100%; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: Verdana, Geneva, Tahoma, sans-serif; color: #0A0F1A; background: #FFFFFF; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: #0B3D91; text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus { outline: 2px solid #0B3D91; outline-offset: 2px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; border: 0; padding: 0; clip: rect(0 0 0 0); overflow: hidden; }

/* ===== THEME TOKENS ===== */
:root {
  --primary: #0B3D91; /* Rich blue */
  --secondary: #5A3A1E; /* Warm earth */
  --accent: #F5E9DA; /* Light warm */
  --ink: #0A0F1A; /* main text */
  --ink-strong: #070B12;
  --muted: #7C8899;
  --surface: #F7FAFF; /* pale blue surface */
  --surface-2: #FFFFFF;
  --border: #D7DFEA;
  --success: #118A3C;
  --warning: #B85C00;
  --danger: #B00020;
  --shadow: 0 8px 24px rgba(11,61,145,0.15);
}

/* ===== TYPOGRAPHY (modern_bold) ===== */
h1, h2, h3, h4 { font-family: Georgia, 'Times New Roman', Times, serif; color: var(--ink-strong); font-weight: 700; line-height: 1.2; margin: 0 0 14px; letter-spacing: 0.2px; }
h1 { font-size: 40px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
@media (min-width: 768px) { h1 { font-size: 52px; } h2 { font-size: 36px; } h3 { font-size: 24px; } }
p { margin: 0 0 14px; }
.small { font-size: 14px; color: var(--muted); }
.badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: var(--accent); color: var(--ink-strong); border-radius: 999px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; }
.subheadline { font-size: 18px; color: var(--ink); max-width: 70ch; }

/* ===== LAYOUT CONTAINERS (flex-only) ===== */
.container { display: flex; justify-content: center; padding: 0 20px; }
.content-wrapper { display: flex; flex-direction: column; width: 100%; max-width: 1120px; gap: 20px; }
section { display: flex; }
section > .container { width: 100%; }

/* Mandatory spacing & alignment patterns */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow); }
.content-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; }
.text-image-section { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ===== HEADER ===== */
header { display: flex; width: 100%; height: 100px; background: #FFFFFF; border-bottom: 3px solid var(--primary); position: relative; z-index: 20; }
header .container { padding-top: 14px; padding-bottom: 14px; }
header .content-wrapper { flex-direction: row; align-items: center; gap: 16px; }
.logo img { height: 42px; }
.main-nav { display: none; align-items: center; gap: 18px; }
.main-nav a { font-weight: 700; color: var(--ink-strong); padding: 8px 10px; border-radius: 8px; }
.main-nav a[aria-current="page"] { color: #FFFFFF; background: var(--primary); }
.main-nav a:hover { background: var(--accent); text-decoration: none; }
.header-ctas { display: none; align-items: center; gap: 12px; margin-left: auto; }
.mobile-menu-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 2px solid var(--ink-strong); border-radius: 12px; background: #FFF; color: var(--ink-strong); font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease; }
.mobile-menu-toggle:hover { transform: translateY(-1px); background: var(--accent); }

/* Desktop header */
@media (min-width: 992px) {
  .mobile-menu-toggle { display: none; }
  .main-nav { display: flex; }
  .header-ctas { display: flex; }
}

/* ===== MOBILE MENU (slide-in) ===== */
.mobile-menu { display: flex; position: fixed; inset: 0; background: var(--primary); color: #FFFFFF; transform: translateX(100%); transition: transform .35s ease; z-index: 1000; padding: 20px; align-items: flex-start; justify-content: flex-start; }
.mobile-menu[aria-hidden="false"] { transform: translateX(0); }
body.menu-open .mobile-menu { transform: translateX(0); }
.mobile-menu .mobile-menu-close { position: absolute; top: 16px; right: 16px; width: 44px; height: 44px; border-radius: 12px; border: 2px solid #FFF; background: transparent; color: #FFF; font-weight: 800; cursor: pointer; }
.mobile-nav { display: flex; flex-direction: column; gap: 12px; margin-top: 60px; width: 100%; }
.mobile-nav a { display: flex; padding: 14px 12px; border-radius: 10px; background: rgba(255,255,255,0.08); color: #FFF; font-weight: 700; }
.mobile-nav a[aria-current="page"] { background: #FFFFFF; color: var(--primary); }
.mobile-nav a:hover { background: rgba(255,255,255,0.18); text-decoration: none; }

/* ===== HERO ===== */
.hero { position: relative; background: var(--surface); overflow: hidden; }
.hero::before { content: ""; position: absolute; right: -40px; top: -60px; width: 320px; height: 320px; background: var(--accent); border-radius: 28px; transform: rotate(25deg); z-index: 0; }
.hero .container { position: relative; z-index: 1; padding-top: 40px; padding-bottom: 32px; }
.hero h1 { color: var(--primary); }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* Pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { display: inline-flex; align-items: center; padding: 8px 14px; border-radius: 999px; background: var(--accent); color: var(--ink-strong); font-weight: 700; text-transform: uppercase; font-size: 12px; letter-spacing: .4px; border: 2px solid var(--primary); }

/* Trust row */
.trust-row { display: flex; flex-wrap: wrap; gap: 12px 18px; list-style: none; padding: 0; margin: 6px 0 0; color: var(--ink); }
.trust-row li { display: flex; align-items: center; gap: 8px; padding: 6px 10px; border: 1px solid var(--border); border-radius: 10px; background: #FFF; font-weight: 600; }
.trust-row img { width: 18px; height: 18px; }

/* Search bar */
.search-bar { display: flex; align-items: stretch; gap: 10px; width: 100%; background: #FFF; border: 2px solid var(--primary); border-radius: 14px; padding: 8px; box-shadow: var(--shadow); }
.search-bar input[type="search"], .search-bar input[type="text"] { flex: 1 1 auto; border: 0; padding: 10px 12px; border-radius: 10px; background: transparent; }
.search-bar .btn { flex: 0 0 auto; }

/* Filters group */
.filters { display: flex; flex-direction: column; gap: 12px; }

/* ===== FEATURES ===== */
.feature-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.feature { display: flex; flex-direction: column; gap: 10px; padding: 18px; background: #FFFFFF; border: 2px solid var(--primary); border-radius: 16px; box-shadow: var(--shadow); flex: 1 1 260px; min-width: 240px; }
.feature h3 { display: flex; align-items: center; gap: 10px; color: var(--primary); }
.feature h3 img { width: 24px; height: 24px; }

/* ===== LISTS, BULLETS, QUOTES ===== */
.bullet-list { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }
.bullet-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 12px; border-left: 6px solid var(--primary); background: #FFF; border-radius: 10px; box-shadow: 0 2px 0 rgba(11,61,145,0.12); }
blockquote { display: flex; padding: 16px 20px; border-left: 8px solid var(--secondary); background: var(--accent); border-radius: 12px; font-style: italic; }

/* ===== TESTIMONIALS (high contrast, light bg) ===== */
.testimonial-list { display: flex; flex-wrap: wrap; gap: 20px; }
.testimonial-card { background: #FFFFFF; border: 2px solid var(--primary); border-radius: 16px; box-shadow: var(--shadow); color: var(--ink-strong); flex: 1 1 280px; min-width: 260px; }
.testimonial-card p { margin: 0; }
.testimonial-card .author { color: var(--secondary); font-weight: 700; }
.rating-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; background: var(--accent); color: var(--ink-strong); border-radius: 12px; border: 2px solid var(--secondary); font-weight: 700; }
.press-row { display: flex; align-items: center; gap: 10px; color: var(--muted); }

/* ===== TEXT SECTIONS ===== */
.text-section { display: flex; flex-direction: column; gap: 12px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.quick-links { display: flex; flex-wrap: wrap; gap: 10px; }
.quick-facts ul { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; margin: 0; }
.quick-facts li { background: var(--accent); padding: 10px 12px; border-radius: 10px; border: 2px solid var(--secondary); font-weight: 700; }
.pairing-tips ul { padding-left: 18px; }

/* ===== MAP / PLACEHOLDERS ===== */
.map-placeholder { display: flex; align-items: center; justify-content: center; min-height: 220px; background: #FFF; border: 3px dashed var(--secondary); color: var(--secondary); border-radius: 16px; font-weight: 700; }
.notice { display: flex; padding: 12px 14px; border-radius: 12px; background: #FEF3C7; border: 2px solid #F59E0B; color: #92400E; font-weight: 700; }
.disclaimer, .note { display: flex; padding: 10px 12px; background: #F3F4F6; border-radius: 10px; border: 1px solid #E5E7EB; color: #374151; }

/* ===== CONTACT & FOOTER ELEMENTS ===== */
.contact-list { display: flex; flex-direction: column; gap: 8px; list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 10px; align-items: center; padding: 8px 10px; border: 1px solid var(--border); border-radius: 10px; background: #FFF; }
.contact-list img { width: 18px; height: 18px; }
.newsletter-teaser { display: flex; padding: 12px; background: var(--accent); border: 2px solid var(--secondary); border-radius: 12px; }
.downloadables { display: flex; padding: 12px; background: #FFFFFF; border: 1px solid var(--border); border-radius: 12px; }

footer { display: flex; background: #0B1325; color: #E5ECF8; padding: 28px 0; margin-top: 20px; }
footer .content-wrapper { gap: 18px; }
footer .brand { display: flex; align-items: center; gap: 12px; }
footer .brand img { width: 36px; height: 36px; }
.footer-nav, .legal-nav, footer .social { display: flex; flex-wrap: wrap; gap: 12px; }
.footer-nav a, .legal-nav a { color: #E5ECF8; font-weight: 700; padding: 6px 10px; border-radius: 8px; }
.footer-nav a:hover, .legal-nav a:hover { background: rgba(255,255,255,0.08); text-decoration: none; }
.small-print { display: flex; flex-direction: column; gap: 6px; color: #AAB8D0; font-size: 14px; }

/* ===== BUTTONS (modern_bold) ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 16px; border-radius: 14px; border: 2px solid var(--ink-strong); background: #FFF; color: var(--ink-strong); font-weight: 800; text-transform: uppercase; letter-spacing: .5px; cursor: pointer; box-shadow: 0 2px 0 rgba(10,15,26,0.25); transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease; }
.btn:hover { transform: translateY(-2px); background: var(--accent); text-decoration: none; }
.btn:active { transform: translateY(0); box-shadow: 0 1px 0 rgba(10,15,26,0.25) inset; }
.btn.primary { background: var(--primary); color: #FFF; border-color: var(--primary); }
.btn.primary:hover { background: #0A357F; }
.btn.secondary { background: var(--secondary); color: #FFF; border-color: var(--secondary); }
.btn.secondary:hover { background: #4A2F18; }

/* ===== GRIDS & GENERIC FLEX HELPERS ===== */
.grid { display: flex; flex-wrap: wrap; gap: 20px; }
.grid > * { flex: 1 1 260px; min-width: 240px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== RESPONSIVE RULES ===== */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; }
}
@media (min-width: 768px) {
  .hero .container { padding-top: 64px; padding-bottom: 56px; }
}
@media (min-width: 992px) {
  header .content-wrapper { gap: 24px; }
  .feature { flex: 1 1 calc(33% - 14px); }
  .testimonial-card { flex: 1 1 calc(50% - 10px); }
  .text-image-section { flex-direction: row; }
  footer .content-wrapper { flex-direction: row; align-items: flex-start; }
}

/* ===== SPECIAL ELEMENTS ===== */
.rating-badge img, .press-row img { width: 18px; height: 18px; }

/* ===== ACCESSIBILITY STATE COLORS ===== */
[aria-current="page"] { font-weight: 800; }

/* ===== PAGE-SPECIFIC LIGHT STYLES (consistent) ===== */
.hero + section .content-wrapper > h2 { border-left: 10px solid var(--primary); padding-left: 12px; }

/* ===== MOBILE MENU OVERLAY BACKDROP (optional helper) ===== */
.menu-backdrop { display: none; }
body.menu-open .menu-backdrop { display: flex; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 900; }

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 2000; background: #FFFFFF; border-top: 4px solid var(--primary); box-shadow: 0 -8px 24px rgba(0,0,0,0.12); padding: 16px 20px; transform: translateY(100%); transition: transform .4s ease; }
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .container { padding: 0 20px; }
.cookie-banner .content-wrapper { flex-direction: column; gap: 12px; }
.cookie-banner .text { display: flex; flex-direction: column; gap: 6px; }
.cookie-banner .actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-banner .btn { border-color: var(--primary); }
.cookie-banner .btn.accept { background: var(--primary); color: #FFF; }
.cookie-banner .btn.reject { background: #FFFFFF; color: var(--primary); }
.cookie-banner .btn.settings { background: var(--accent); color: var(--ink-strong); border-color: var(--secondary); }

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal { display: none; position: fixed; inset: 0; z-index: 2100; background: rgba(0,0,0,0.55); align-items: center; justify-content: center; padding: 20px; }
.cookie-modal.show { display: flex; }
.cookie-modal .cookie-modal-content { display: flex; flex-direction: column; gap: 14px; width: 100%; max-width: 560px; background: #FFFFFF; border: 3px solid var(--primary); border-radius: 16px; box-shadow: var(--shadow); padding: 18px; }
.cookie-modal .header { display: flex; align-items: center; justify-content: space-between; }
.cookie-modal .body { display: flex; flex-direction: column; gap: 10px; }
.cookie-modal .row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 10px; }
.toggle { display: inline-flex; align-items: center; gap: 8px; }
.toggle input { appearance: none; width: 44px; height: 26px; border-radius: 999px; background: #E5E7EB; position: relative; outline: none; cursor: pointer; transition: background .2s ease; }
.toggle input::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #FFFFFF; box-shadow: 0 1px 2px rgba(0,0,0,0.2); transition: transform .2s ease; }
.toggle input:checked { background: var(--primary); }
.toggle input:checked::after { transform: translateX(18px); }

/* ===== UTILITIES ===== */
.max-w-narrow { max-width: 720px; }
.center { justify-content: center; }
.align-center { align-items: center; }
.space-between { justify-content: space-between; }

/* ===== ICON INLINE IN HEADINGS ===== */
h2 img, h3 img { width: 22px; height: 22px; }

/* ===== PAGE HEADER EMPHASIS ===== */
.hero h1 + .subheadline { color: var(--ink); }

/* ===== LINKS IN BODY TEXT ===== */
.text-section a, p a, li a { color: var(--primary); font-weight: 700; }
.text-section a:hover, p a:hover, li a:hover { text-decoration: underline; }

/* ===== RATING/STATUS COLORS ===== */
.status-success { color: var(--success); font-weight: 700; }
.status-warning { color: var(--warning); font-weight: 700; }
.status-danger { color: var(--danger); font-weight: 700; }

/* ===== HEADER/FOOTER RESPONSIVE LAYOUTS ===== */
footer .legal-nav { opacity: 0.9; }
footer .social a img { width: 22px; height: 22px; }

/* ===== INDEX/ROUTES/FOOD/EVENTS/TIPS PAGE MINOR TWEAKS ===== */
.how-it-works { display: flex; flex-direction: column; gap: 10px; padding: 14px; border: 2px solid var(--primary); border-radius: 12px; background: #FFFFFF; }
.how-it-works ol { margin: 0; padding-left: 18px; }
.export-options { display: flex; padding: 10px 12px; background: var(--accent); border: 2px solid var(--secondary); border-radius: 10px; font-weight: 700; }
.badges { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ===== MAKE ALL MAJOR BLOCKS FLEX ===== */
.hero, .feature-grid, .testimonial-list, .text-section, .search-bar, .filters, .quick-links, .press-row, .how-it-works, .export-options, .badges, .filter-row { display: flex; }

/* ===== SPACING BETWEEN SECTIONS ===== */
main section { padding: 28px 0; }

/* ===== PREVENT OVERLAP & Z-INDEX MANAGEMENT ===== */
.hero .content-wrapper, header, .mobile-menu, .cookie-banner { position: relative; z-index: 1; }

/* ===== PRINT BASICS ===== */
@media print {
  .mobile-menu-toggle, .header-ctas, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  a { text-decoration: underline; }
}
