/* ================================================================
   FESTIVAL CADEAUKAART — WELCOME / HOMEPAGE STYLES
   Page-specific styles for the homepage (light theme)
   ================================================================ */

/* ================================================================
   1. HERO — Bioscoopbon style, bright & bold
   ================================================================ */
.fest-hero {
    position: relative;
    background: linear-gradient(140deg, #FF5D00 0%, #FF3D2E 40%, #FF2D55 100%);
    min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: var(--fc-nav-h);
}

/* Noise texture overlay for a tactile/printed feel */
.fest-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1;
}

/* Floating glow spots */
.fest-hero-glow {
    position: absolute; border-radius: 50%; filter: blur(100px);
    pointer-events: none; z-index: 0;
}
.fest-hero-glow-1 {
    width: 600px; height: 600px; background: rgba(255, 214, 0, .25);
    top: -10%; right: 10%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}
.fest-hero-glow-2 {
    width: 400px; height: 400px; background: rgba(255, 255, 255, .1);
    bottom: -5%; left: 15%;
    animation: heroGlow 8s ease-in-out 4s infinite alternate;
}
@keyframes heroGlow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.3) translate(30px, -20px); }
}

/* Confetti particles */
.fest-confetti { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.fest-confetti-piece {
    position: absolute; width: 10px; height: 10px;
    opacity: 0; animation: confettiFall linear infinite;
}
.fest-confetti-piece:nth-child(1)  { left: 5%;  background: var(--fc-yellow); animation-duration: 6s; animation-delay: 0s; border-radius: 50%; }
.fest-confetti-piece:nth-child(2)  { left: 15%; background: #fff; animation-duration: 7s; animation-delay: 1s; width: 8px; height: 14px; border-radius: 2px; }
.fest-confetti-piece:nth-child(3)  { left: 25%; background: var(--fc-yellow); animation-duration: 5.5s; animation-delay: 2s; border-radius: 2px; }
.fest-confetti-piece:nth-child(4)  { left: 35%; background: #fff; animation-duration: 8s; animation-delay: 0.5s; border-radius: 50%; width: 6px; height: 6px; }
.fest-confetti-piece:nth-child(5)  { left: 45%; background: var(--fc-yellow); animation-duration: 6.5s; animation-delay: 3s; }
.fest-confetti-piece:nth-child(6)  { left: 55%; background: #fff; animation-duration: 7.5s; animation-delay: 1.5s; width: 12px; height: 6px; border-radius: 2px; }
.fest-confetti-piece:nth-child(7)  { left: 65%; background: var(--fc-yellow); animation-duration: 5s; animation-delay: 2.5s; border-radius: 50%; width: 8px; height: 8px; }
.fest-confetti-piece:nth-child(8)  { left: 75%; background: #fff; animation-duration: 6s; animation-delay: 0.8s; }
.fest-confetti-piece:nth-child(9)  { left: 85%; background: var(--fc-yellow); animation-duration: 7s; animation-delay: 3.5s; border-radius: 50%; }
.fest-confetti-piece:nth-child(10) { left: 92%; background: #fff; animation-duration: 8.5s; animation-delay: 1.2s; width: 6px; height: 12px; }
@keyframes confettiFall {
    0%   { transform: translateY(-60px) rotate(0deg); opacity: 0; }
    10%  { opacity: .7; }
    90%  { opacity: .5; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

/* Hero layout */
.fest-hero-inner {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    width: 100%; max-width: 1400px; margin: 0 auto;
    padding: 60px 32px 40px;
    min-height: calc(100vh - var(--fc-nav-h));
}
.fest-hero-card-left,
.fest-hero-card-right {
    flex: 0 0 auto;
    position: relative;
}
.fest-hero-card-left {
    margin-right: -40px;
    z-index: 3;
}
.fest-hero-card-left img {
    max-height: 420px;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,.3));
    transform: rotate(-8deg);
    animation: heroCardFloat 4s ease-in-out infinite alternate;
}
.fest-hero-card-right {
    margin-left: -40px;
    z-index: 3;
}
.fest-hero-card-right img {
    max-height: 460px;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,.25));
    animation: heroCardFloat 4s ease-in-out 2s infinite alternate;
}
@keyframes heroCardFloat {
    0% { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}
.fest-hero-card-left img {
    animation: heroCardFloatTilt 4s ease-in-out infinite alternate;
}
@keyframes heroCardFloatTilt {
    0% { transform: rotate(-8deg) translateY(0); }
    100% { transform: rotate(-6deg) translateY(-14px); }
}

/* Hero center text */
.fest-hero-content {
    position: relative; z-index: 4;
    text-align: center;
    padding: 0 32px;
    flex: 0 1 600px;
}
.fest-hero-content .fest-label { color: rgba(255,255,255,.9); }
.fest-hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.fest-hero-content h1 em {
    font-style: normal;
    color: var(--fc-yellow);
    text-shadow: 0 0 40px rgba(255, 214, 0, .3);
}
.fest-hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,.85);
    line-height: 1.6; margin-bottom: 36px;
    max-width: 440px; margin-left: auto; margin-right: auto;
}
.fest-hero-ctas {
    display: flex; gap: 16px; justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.fest-hero-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: rgba(255,255,255,.8) !important; font-size: .9rem; font-weight: 600;
    transition: all .2s ease;
}
.fest-hero-link:hover { color: #fff !important; gap: 10px; }

@media (max-width: 1100px) {
    .fest-hero-inner { flex-wrap: wrap; padding: 40px 20px 60px; }
    .fest-hero-card-left, .fest-hero-card-right { display: none; }
    .fest-hero-content { flex: 1 1 100%; padding: 0 16px; }
    .fest-hero { min-height: auto; padding-top: calc(var(--fc-nav-h) + 40px); padding-bottom: 40px; }
    .fest-hero-cards-mobile { display: flex !important; }
}
@media (min-width: 1101px) {
    .fest-hero-cards-mobile { display: none !important; }
}

/* Mobile card strip */
.fest-hero-cards-mobile {
    display: none;
    justify-content: center; gap: 24px;
    margin-top: 40px; padding: 0 16px;
}
.fest-hero-cards-mobile img {
    max-height: 240px;
    filter: drop-shadow(0 12px 40px rgba(0,0,0,.25));
}


/* ================================================================
   3. OCCASIONS — Horizontal pills
   ================================================================ */
.fest-occasions {
    padding: 64px 0;
    background: var(--fc-white);
}
.fest-occasions-header {
    text-align: center; margin-bottom: 32px;
}
.fest-occasions-header h2 {
    font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
    color: var(--fc-text);
}
.fest-occasions-header h2 span { color: var(--fc-orange); }
.fest-occasions-scroll {
    display: flex; gap: 12px;
    overflow-x: auto; padding: 8px 0 16px;
    -ms-overflow-style: none; scrollbar-width: none;
    justify-content: center; flex-wrap: wrap;
}
.fest-occasions-scroll::-webkit-scrollbar { display: none; }
.fest-occasion-pill {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: var(--fc-radius-pill);
    background: var(--fc-off-white);
    font-family: var(--fc-font-display); font-size: .92rem; font-weight: 600;
    color: var(--fc-text); white-space: nowrap;
    border: 2px solid transparent;
    transition: all .3s var(--fc-ease);
    cursor: pointer;
}
.fest-occasion-pill:hover {
    border-color: var(--fc-orange);
    background: rgba(255, 93, 0, .06);
    color: var(--fc-orange);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255, 93, 0, .12);
}
.fest-occasion-pill .oc-emoji { font-size: 1.3rem; }


/* ================================================================
   4. PRODUCTS — Magazine/editorial layout
   ================================================================ */
.fest-products {
    padding: 80px 0 100px;
    background: var(--fc-off-white);
    position: relative;
}
/* Diagonal top edge */
.fest-products::before {
    content: '';
    position: absolute; top: -60px; left: 0; right: 0; height: 120px;
    background: var(--fc-off-white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}
.fest-products-header {
    text-align: center; margin-bottom: 56px;
}
.fest-products-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
    color: var(--fc-text); line-height: 1.15;
}
.fest-products-header h2 span { color: var(--fc-orange); }
.fest-products-header p {
    font-size: 1.05rem; color: var(--fc-text-muted);
    max-width: 540px; margin: 12px auto 0; line-height: 1.65;
}

/* Bento grid: 1 large left, 2 stacked right */
.fest-products-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}
.fest-product-card {
    border-radius: var(--fc-radius);
    overflow: hidden;
    position: relative;
    background: var(--fc-white);
    border: 1px solid var(--fc-border);
    transition: all .4s var(--fc-ease);
    display: flex; flex-direction: column;
    cursor: pointer;
}
.fest-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
    border-color: var(--fc-orange);
}
.fest-product-featured {
    grid-row: 1 / 3;
}
.fest-product-card-img {
    position: relative;
    padding: 40px;
    display: flex; align-items: center; justify-content: center;
    min-height: 200px;
    overflow: hidden;
}
.fest-product-featured .fest-product-card-img {
    min-height: 320px;
    background: linear-gradient(135deg, #FFF5EC, #FFF0E0);
}
.fest-product-card-img img {
    max-height: 260px;
    transition: transform .4s var(--fc-ease);
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.1));
}
.fest-product-featured .fest-product-card-img img { max-height: 340px; }
.fest-product-card:hover .fest-product-card-img img {
    transform: scale(1.05) rotate(1deg);
}

/* Product badge */
.fest-product-badge {
    position: absolute; top: 20px; left: 20px;
    background: var(--fc-orange); color: #fff;
    font-family: var(--fc-font-display); font-size: .72rem; font-weight: 700;
    padding: 6px 14px; border-radius: var(--fc-radius-pill);
    text-transform: uppercase; letter-spacing: .06em;
    box-shadow: 0 4px 12px var(--fc-orange-glow);
}
.fest-product-badge-yellow {
    background: var(--fc-yellow); color: var(--fc-navy);
    box-shadow: 0 4px 12px rgba(255,214,0,.3);
}

.fest-product-card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex; flex-direction: column;
}
.fest-product-card-body h3 {
    font-size: 1.25rem; font-weight: 700;
    color: var(--fc-text); margin-bottom: 8px;
}
.fest-product-card-body p {
    font-size: .92rem; color: var(--fc-text-muted);
    line-height: 1.6; margin-bottom: 20px; flex: 1;
}
.fest-product-card-cta {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--fc-font-display); font-weight: 700;
    color: var(--fc-orange); font-size: .9rem;
    transition: gap .2s ease;
}
.fest-product-card:hover .fest-product-card-cta { gap: 14px; }

@media (max-width: 768px) {
    .fest-products-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .fest-product-featured { grid-row: auto; }
    .fest-products::before { display: none; }
}


/* ================================================================
   5. PHOTO STRIP — Customer photos placeholders
   ================================================================ */
.fest-photos {
    padding: 80px 0;
    background: var(--fc-white);
    overflow: hidden;
}
.fest-photos-header {
    text-align: center; margin-bottom: 40px;
}
.fest-photos-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
    color: var(--fc-text);
}
.fest-photos-header h2 span { color: var(--fc-orange); }
.fest-photos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px; margin: 0 auto;
}
.fest-photo-placeholder {
    aspect-ratio: 1;
    border-radius: var(--fc-radius);
    background: var(--fc-warm-gray);
    border: 2px dashed var(--fc-border);
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 8px;
    color: var(--fc-text-muted); font-size: .85rem; font-weight: 500;
    transition: all .3s ease;
}
.fest-photo-placeholder i { font-size: 1.8rem; color: var(--fc-border); }
.fest-photo-placeholder:hover { border-color: var(--fc-orange); background: rgba(255,93,0,.03); }
@media (max-width: 768px) {
    .fest-photos-grid { grid-template-columns: 1fr 1fr; }
}


/* ================================================================
   6. EVENTS PEEK — Dark, poster-style section
   ================================================================ */
.fest-events {
    padding: 100px 0;
    background: var(--fc-navy);
    position: relative;
    overflow: hidden;
}
/* Decorative glow */
.fest-events::after {
    content: '';
    position: absolute; top: -200px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255,93,0,.15) 0%, transparent 70%);
    pointer-events: none;
}
.fest-events-inner { position: relative; z-index: 1; }
.fest-events-header {
    text-align: center; margin-bottom: 56px;
}
.fest-events-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800;
    color: #fff; line-height: 1.15;
}
.fest-events-header h2 span { color: var(--fc-orange); }
.fest-events-header p {
    font-size: 1.05rem; color: var(--fc-text-light);
    max-width: 480px; margin: 12px auto 0; line-height: 1.6;
}
.fest-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto 48px;
}
.fest-events-cta { text-align: center; }

@media (max-width: 768px) {
    .fest-events-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}


/* ================================================================
   7. REVIEWS — Horizontal scroll strip
   ================================================================ */
.fest-reviews {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF5EC 0%, #FFF0E0 100%);
}
.fest-reviews-header {
    text-align: center; margin-bottom: 48px;
}
.fest-reviews-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
    color: var(--fc-text);
}
.fest-reviews-header h2 span { color: var(--fc-orange); }
.fest-reviews-scroll {
    display: flex; gap: 20px;
    overflow-x: auto; padding: 8px 0 24px;
    -ms-overflow-style: none; scrollbar-width: none;
    scroll-snap-type: x mandatory;
}
.fest-reviews-scroll::-webkit-scrollbar { display: none; }
.fest-reviews-cta { text-align: center; margin-top: 40px; }


/* ================================================================
   8. BUSINESS TEASER — Compact
   ================================================================ */
.fest-business {
    padding: 80px 0;
    background: var(--fc-white);
}
.fest-business-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
}
.fest-business-text h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
    color: var(--fc-text); margin-bottom: 16px;
}
.fest-business-text h2 span { color: var(--fc-orange); }
.fest-business-text > p {
    font-size: 1.05rem; color: var(--fc-text-muted); line-height: 1.65;
    margin-bottom: 32px;
}
.fest-business-visual {
    display: flex; align-items: center; justify-content: center;
}
.fest-business-visual img {
    max-height: 360px;
    filter: drop-shadow(0 16px 48px rgba(0,0,0,.08));
}
@media (max-width: 768px) {
    .fest-business-inner { grid-template-columns: 1fr; gap: 40px; }
    .fest-business-visual { order: -1; }
}


/* ================================================================
   9. CTA BANNER — Bold closing
   ================================================================ */
.fest-cta-banner {
    padding: 100px 0;
    background: linear-gradient(140deg, #FF5D00 0%, #FF2D55 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.fest-cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}
.fest-cta-banner h2 {
    position: relative;
    font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
    color: #fff; margin-bottom: 16px; line-height: 1.1;
}
.fest-cta-banner p {
    position: relative;
    font-size: 1.15rem; color: rgba(255,255,255,.85);
    margin-bottom: 40px; max-width: 480px; margin-left: auto; margin-right: auto;
}
.fest-cta-banner .fest-pill { position: relative; }
