/* ================================================================
   FESTIVAL CADEAUKAART — CORE DESIGN SYSTEM
   Shared by ALL pages using layouts.festival
   ================================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
    --fc-orange: #FF5D00;
    --fc-orange-hover: #E85200;
    --fc-orange-glow: rgba(255, 93, 0, .35);
    --fc-yellow: #FFD600;
    --fc-yellow-hover: #E8C400;
    --fc-pink: #FF2D55;
    --fc-coral: #FF6B6B;
    --fc-navy: #0A0A1A;
    --fc-navy-light: #12122A;
    --fc-white: #FFFFFF;
    --fc-off-white: #FAF8F5;
    --fc-warm-gray: #F3F0EB;
    --fc-text: #1A1A2E;
    --fc-text-muted: #6B7280;
    --fc-text-light: rgba(255,255,255,.7);
    --fc-border: #E5E7EB;
    --fc-font-body: 'THICCCBOI', -apple-system, BlinkMacSystemFont, sans-serif;
    --fc-font-display: 'THICCCBOI', sans-serif;
    --fc-radius: 16px;
    --fc-radius-sm: 10px;
    --fc-radius-pill: 50px;
    --fc-nav-h: 72px;
    --fc-ease: cubic-bezier(.4, 0, .2, 1);
    --fc-ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
}

/* ---------- BASE RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
    margin: 0; padding: 0;
    font-family: var(--fc-font-body);
    color: var(--fc-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: var(--fc-white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s ease; }
h1, h2, h3, h4, h5 { font-family: var(--fc-font-display); margin: 0; }

/* ---------- CONTAINER ---------- */
.fest-container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .fest-container { padding: 0 20px; } }


/* ================================================================
   NAVIGATION
   ================================================================ */
.fest-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--fc-nav-h);
    display: flex; align-items: center;
    padding: 0 32px;
    transition: all .35s var(--fc-ease);
}
.fest-nav.scrolled {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(24px) saturate(1.8);
    -webkit-backdrop-filter: blur(24px) saturate(1.8);
    box-shadow: 0 1px 24px rgba(0,0,0,.06);
}
.fest-nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; max-width: 1320px; margin: 0 auto;
}
.fest-nav-logo img { height: 36px; transition: all .3s ease; }
.fest-nav-links {
    display: flex; align-items: center; gap: 4px;
    list-style: none; margin: 0; padding: 0;
}
.fest-nav-links a {
    font-family: var(--fc-font-display);
    font-size: .88rem; font-weight: 600;
    padding: 9px 18px; border-radius: var(--fc-radius-pill);
    transition: all .25s var(--fc-ease);
    color: rgba(255,255,255,.9);
}
.fest-nav.scrolled .fest-nav-links a { color: var(--fc-text); }
.fest-nav-links a:hover,
.fest-nav-links a.active {
    background: rgba(255, 93, 0, .1);
    color: var(--fc-orange);
}
.fest-nav-cta {
    background: var(--fc-orange) !important;
    color: #fff !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 14px var(--fc-orange-glow);
}
.fest-nav-cta:hover {
    background: var(--fc-orange-hover) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px var(--fc-orange-glow);
}

/* Mobile Toggle */
.fest-nav-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 28px; height: 22px; position: relative; z-index: 1002;
}
.fest-nav-toggle span {
    display: block; width: 100%; height: 2.5px; background: #fff;
    border-radius: 2px; position: absolute; left: 0;
    transition: all .3s var(--fc-ease);
}
.fest-nav.scrolled .fest-nav-toggle span { background: var(--fc-navy); }
.fest-nav-toggle span:nth-child(1) { top: 0; }
.fest-nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.fest-nav-toggle span:nth-child(3) { bottom: 0; }
.fest-nav-toggle.open span { background: #fff !important; }
.fest-nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.fest-nav-toggle.open span:nth-child(2) { opacity: 0; }
.fest-nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile Menu (Full-screen festival poster style) */
.fest-mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: linear-gradient(135deg, var(--fc-orange) 0%, var(--fc-pink) 100%);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
    opacity: 0; pointer-events: none;
    transition: opacity .4s ease;
}
.fest-mobile-menu.open { opacity: 1; pointer-events: all; }
.fest-mobile-menu a {
    font-family: var(--fc-font-display);
    font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 700; color: #fff;
    padding: 10px 32px; border-radius: var(--fc-radius-pill);
    transition: all .25s ease;
    letter-spacing: -.01em;
}
.fest-mobile-menu a:hover { background: rgba(255,255,255,.2); transform: scale(1.05); }

@media (max-width: 991px) {
    .fest-nav-links { display: none; }
    .fest-nav-toggle { display: block; }
    .fest-nav { padding: 0 20px; }
}


/* ================================================================
   FOOTER
   ================================================================ */
.fest-footer {
    background: var(--fc-navy);
    color: var(--fc-text-light);
    padding: 80px 32px 32px;
}
.fest-footer-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.fest-footer-brand p {
    margin-top: 16px; line-height: 1.7; font-size: .9rem; max-width: 320px;
}
.fest-footer h5 {
    color: #fff; font-family: var(--fc-font-display);
    font-size: .85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .08em; margin-bottom: 20px;
}
.fest-footer ul { list-style: none; padding: 0; margin: 0; }
.fest-footer ul li { margin-bottom: 10px; }
.fest-footer ul a { font-size: .88rem; transition: color .2s; }
.fest-footer ul a:hover { color: var(--fc-orange); }
.fest-footer-bottom {
    max-width: 1320px; margin: 48px auto 0;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
    display: flex; justify-content: space-between; align-items: center;
    font-size: .82rem;
}
.fest-footer-socials { display: flex; gap: 16px; }
.fest-footer-socials a {
    color: rgba(255,255,255,.4); font-size: 1.1rem; transition: all .2s;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.05);
}
.fest-footer-socials a:hover { color: var(--fc-orange); background: rgba(255,93,0,.15); }
@media (max-width: 768px) {
    .fest-footer { padding: 60px 20px 24px; }
    .fest-footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .fest-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
    .fest-footer-inner { grid-template-columns: 1fr; }
}


/* ================================================================
   DRAWER (Right slide-out panel)
   ================================================================ */
.fest-drawer-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(10, 10, 26, .6);
    backdrop-filter: blur(6px);
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.fest-drawer-overlay.open { opacity: 1; pointer-events: all; }
.fest-drawer {
    position: fixed; top: 0; right: 0; bottom: 0; z-index: 2001;
    width: 520px; max-width: 92vw;
    background: #fff;
    box-shadow: -12px 0 60px rgba(0,0,0,.12);
    transform: translateX(100%);
    transition: transform .4s var(--fc-ease);
    overflow-y: auto;
    padding: 40px 32px;
}
.fest-drawer.open { transform: translateX(0); }
.fest-drawer-close {
    position: sticky; top: 0; float: right;
    background: var(--fc-warm-gray); border: none; border-radius: 50%;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1rem; color: var(--fc-text);
    transition: all .2s ease; z-index: 1;
}
.fest-drawer-close:hover { background: var(--fc-border); transform: rotate(90deg); }


/* ================================================================
   BOTTOM SHEET
   ================================================================ */
.fest-sheet-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(10, 10, 26, .6);
    backdrop-filter: blur(6px);
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
}
.fest-sheet-overlay.open { opacity: 1; pointer-events: all; }
.fest-sheet {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 2001;
    transform: translateY(100%);
    background: #fff;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -12px 60px rgba(0,0,0,.12);
    max-height: 85vh; overflow-y: auto;
    transition: transform .4s var(--fc-ease);
    padding: 24px 32px 40px;
}
.fest-sheet.open { transform: translateY(0); }
.fest-sheet-handle {
    width: 48px; height: 4px; background: var(--fc-border);
    border-radius: 4px; margin: 0 auto 24px;
}


/* ================================================================
   SCROLL REVEAL ANIMATIONS
   ================================================================ */
.fest-reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity .8s ease, transform .8s var(--fc-ease);
}
.fest-reveal.visible { opacity: 1; transform: translateY(0); }
.fest-reveal-left {
    opacity: 0; transform: translateX(-40px);
    transition: opacity .8s ease, transform .8s var(--fc-ease);
}
.fest-reveal-left.visible { opacity: 1; transform: translateX(0); }
.fest-reveal-right {
    opacity: 0; transform: translateX(40px);
    transition: opacity .8s ease, transform .8s var(--fc-ease);
}
.fest-reveal-right.visible { opacity: 1; transform: translateX(0); }
.fest-reveal-scale {
    opacity: 0; transform: scale(.9);
    transition: opacity .8s ease, transform .8s var(--fc-ease-bounce);
}
.fest-reveal-scale.visible { opacity: 1; transform: scale(1); }


/* ================================================================
   SHARED PILL BUTTONS
   ================================================================ */
.fest-pill {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: var(--fc-radius-pill);
    font-family: var(--fc-font-display); font-weight: 700; font-size: 1rem;
    letter-spacing: .02em; border: none; cursor: pointer;
    transition: all .3s var(--fc-ease); text-transform: uppercase;
}
.fest-pill-yellow {
    background: var(--fc-yellow); color: var(--fc-navy);
    box-shadow: 0 4px 20px rgba(255, 214, 0, .4);
}
.fest-pill-yellow:hover {
    background: var(--fc-yellow-hover); color: var(--fc-navy);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 214, 0, .5);
}
.fest-pill-white {
    background: rgba(255,255,255,.2); color: #fff;
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255,255,255,.35);
}
.fest-pill-white:hover {
    background: rgba(255,255,255,.35); color: #fff;
    transform: translateY(-3px);
}
.fest-pill-orange {
    background: var(--fc-orange); color: #fff;
    box-shadow: 0 4px 20px var(--fc-orange-glow);
}
.fest-pill-orange:hover {
    background: var(--fc-orange-hover); color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 32px var(--fc-orange-glow);
}
.fest-pill i { font-size: .85em; }


/* ================================================================
   SECTION LABELS
   ================================================================ */
.fest-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--fc-font-display); font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
    padding: 8px 18px; border-radius: var(--fc-radius-pill);
    margin-bottom: 20px;
}
.fest-label-orange {
    background: rgba(255, 93, 0, .12); color: var(--fc-orange);
    border: 1px solid rgba(255, 93, 0, .2);
}
.fest-label-white {
    background: rgba(255,255,255,.15); color: #fff;
    border: 1px solid rgba(255,255,255,.2);
}


/* ================================================================
   TRUST TICKER — Marquee strip
   ================================================================ */
.fest-ticker {
    background: var(--fc-navy);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}
.fest-ticker-track {
    display: flex; gap: 48px;
    animation: tickerScroll 30s linear infinite;
    width: max-content;
}
.fest-ticker-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,.8); font-size: .85rem; font-weight: 600;
    white-space: nowrap;
    font-family: var(--fc-font-display);
}
.fest-ticker-item i {
    color: var(--fc-orange); font-size: .9rem;
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ================================================================
   REVIEW CARDS — Reusable component
   ================================================================ */
.fest-review-card {
    flex: 0 0 340px;
    background: var(--fc-white);
    border-radius: var(--fc-radius);
    padding: 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,.04);
    border: 1px solid var(--fc-border);
    scroll-snap-align: start;
    transition: all .3s ease;
}
.fest-review-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
    transform: translateY(-4px);
}
.fest-review-stars { color: var(--fc-yellow); font-size: .9rem; margin-bottom: 12px; }
.fest-review-text {
    font-size: .92rem; color: var(--fc-text); line-height: 1.6; margin-bottom: 16px;
    display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
.fest-review-author {
    display: flex; align-items: center; gap: 10px;
}
.fest-review-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--fc-orange), var(--fc-pink));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: .82rem;
}
.fest-review-author-info { font-size: .82rem; }
.fest-review-author-name { font-weight: 700; color: var(--fc-text); }
.fest-review-author-date { color: var(--fc-text-muted); }


/* ================================================================
   EVENT POSTER CARDS — Reusable component
   ================================================================ */
.fest-event-poster {
    background: var(--fc-navy-light);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--fc-radius);
    padding: 32px 28px;
    text-align: center;
    transition: all .4s var(--fc-ease);
    position: relative;
    overflow: hidden;
}
.fest-event-poster::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,93,0,.05), transparent);
    opacity: 0; transition: opacity .3s ease;
}
.fest-event-poster:hover::before { opacity: 1; }
.fest-event-poster:hover {
    transform: translateY(-8px) rotate(-1deg);
    border-color: rgba(255,93,0,.3);
    box-shadow: 0 20px 60px rgba(255,93,0,.12);
}
.fest-event-poster:nth-child(2):hover { transform: translateY(-8px) rotate(1deg); }
.fest-event-poster-icon {
    font-size: 2.4rem; margin-bottom: 16px;
}
.fest-event-poster h4 {
    color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
}
.fest-event-poster p {
    color: var(--fc-text-light); font-size: .88rem; line-height: 1.55; margin: 0;
}


/* ================================================================
   BUSINESS PERKS — Reusable component
   ================================================================ */
.fest-business-perks {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
    margin-bottom: 32px;
}
.fest-business-perk {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px; border-radius: var(--fc-radius-sm);
    background: var(--fc-off-white);
}
.fest-business-perk-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(255, 93, 0, .1);
    display: flex; align-items: center; justify-content: center;
    color: var(--fc-orange); font-size: 1rem;
    flex-shrink: 0;
}
.fest-business-perk h5 {
    font-size: .88rem; font-weight: 700; color: var(--fc-text); margin-bottom: 2px;
}
.fest-business-perk p {
    font-size: .8rem; color: var(--fc-text-muted); line-height: 1.5; margin: 0;
}
@media (max-width: 768px) {
    .fest-business-perks { grid-template-columns: 1fr; }
}


/* ================================================================
   HOW IT WORKS — Drawer content
   ================================================================ */
.fest-hiw-title {
    font-size: 1.6rem; font-weight: 800; color: var(--fc-text);
    margin-bottom: 8px;
}
.fest-hiw-subtitle {
    font-size: .95rem; color: var(--fc-text-muted); margin-bottom: 40px; line-height: 1.6;
}
.fest-hiw-steps { display: flex; flex-direction: column; gap: 0; }
.fest-hiw-step {
    display: flex; gap: 20px; padding: 28px 0;
    border-bottom: 1px solid var(--fc-border);
    position: relative;
}
.fest-hiw-step:last-child { border-bottom: none; }
.fest-hiw-step-num {
    width: 48px; height: 48px; border-radius: 14px;
    background: linear-gradient(135deg, var(--fc-orange), #FF7A33);
    color: #fff; font-family: var(--fc-font-display);
    font-size: 1.1rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 14px var(--fc-orange-glow);
}
.fest-hiw-step-text h4 {
    font-size: 1.05rem; font-weight: 700; color: var(--fc-text); margin-bottom: 6px;
}
.fest-hiw-step-text p {
    font-size: .9rem; color: var(--fc-text-muted); line-height: 1.6; margin: 0;
}


/* ================================================================
   ALL REVIEWS — Bottom sheet content
   ================================================================ */
.fest-all-reviews-header {
    text-align: center; margin-bottom: 32px;
}
.fest-all-reviews-header h3 {
    font-size: 1.4rem; font-weight: 800; color: var(--fc-text); margin-bottom: 4px;
}
.fest-all-reviews-header p { color: var(--fc-text-muted); font-size: .9rem; }
.fest-all-reviews-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px; max-height: 60vh; overflow-y: auto;
    padding-right: 8px;
}
.fest-all-reviews-grid::-webkit-scrollbar { width: 4px; }
.fest-all-reviews-grid::-webkit-scrollbar-thumb { background: var(--fc-border); border-radius: 2px; }


/* ================================================================
   FLOATING HOW-IT-WORKS BUTTON
   ================================================================ */
.fest-float-hiw {
    position: fixed; bottom: 32px; left: 32px; z-index: 900;
    background: var(--fc-navy); color: #fff;
    padding: 14px 24px; border-radius: var(--fc-radius-pill);
    font-family: var(--fc-font-display); font-weight: 700; font-size: .85rem;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,.2);
    cursor: pointer; border: none;
    transition: all .3s var(--fc-ease);
    opacity: 0; transform: translateY(20px);
}
.fest-float-hiw.visible { opacity: 1; transform: translateY(0); }
.fest-float-hiw:hover {
    background: var(--fc-orange);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px var(--fc-orange-glow);
}
.fest-float-hiw i { font-size: .9rem; }

@media (max-width: 640px) {
    .fest-float-hiw { bottom: 20px; left: 20px; padding: 12px 20px; font-size: .8rem; }
}
