/* Rotterdam Caribbean & Afro Festival - Main Stylesheet */

@font-face {
  font-family: 'Sink';
  src: url('../fonts/Sink.ttf') format('truetype');
  font-weight: 900; font-style: italic; font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', sans-serif; overflow-x: hidden; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

:root {
  --rcaf-red: #e8002a;
  --rcaf-yellow: #FFC800;
  --rcaf-marquee-text: #000000;
  --rcaf-lineup-from: #FF007B;
  --rcaf-lineup-to: #f07800;
  --rcaf-lineup-title: #ffffff;
  --rcaf-lineup-card-name: #ffffff;
  --rcaf-dark: #0a0a1a;
  --rcaf-about-title: #ffffff;
  --rcaf-about-body: #9e9e9e;
  --rcaf-about-eyebrow: #FFC800;
  --rcaf-pink: #FF007B;
  --rcaf-tickets-title: #ffffff;
  --rcaf-navy: #0d0d2e;
  --rcaf-cta-title: #ffffff;
  --rcaf-cta-body: #9e9e9e;
  --rcaf-cta-eyebrow: #FFC800;
  --rcaf-sfeer-bg: #0a0a1a;
  --rcaf-faq: #FFD400;
  --rcaf-faq-title: #000000;
  --rcaf-faq-eyebrow: #000000;
  --rcaf-faq-item-bg: #ffffff;
  --rcaf-faq-item-text: #000000;
  --rcaf-faq-icon-open: #FFD400;
  --rcaf-faq-category: #000000;
  --rcaf-footer-contact-bg: #FF007B;
  --rcaf-footer-contact-text: #ffffff;
  --rcaf-footer-body-bg: #0a0a1a;
  --rcaf-footer-text: #8a8a8a;
  --rcaf-footer-hover: #FFC800;
  --rcaf-footer-bottom-bg: #0a0a1a;
  --rcaf-btn-yellow-bg: #FFC800;
  --rcaf-btn-yellow-text: #000000;
  --rcaf-btn-pink-bg: #FF007B;
  --rcaf-btn-pink-text: #ffffff;
  --rcaf-hero-overlay: 0.5;
}

/* NAVBAR */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999; padding: 16px 48px; display: flex; align-items: center; justify-content: space-between; background: transparent; }
.nav__brand { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-top { font-size: 0.58rem; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.nav__brand-main { font-size: 0.88rem; font-weight: 900; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; }
.nav__brand .custom-logo-link img, .nav__brand .custom-logo { height: 48px; width: auto; }
.nav__dropdown { position: relative; }
.nav__info-btn { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--rcaf-red); border: none; padding: 11px 26px; border-radius: 100px; transition: filter 0.2s; }
.nav__info-btn:hover { filter: brightness(0.88); }
.nav__chevron { transition: transform 0.25s ease; flex-shrink: 0; }
.nav__info-btn[aria-expanded="true"] .nav__chevron { transform: rotate(180deg); }
.nav__menu { position: absolute; top: calc(100% + 8px); right: 0; background: var(--rcaf-red); border-radius: 14px; padding: 8px; min-width: 210px; opacity: 0; transform: translateY(-8px) scale(0.97); pointer-events: none; transition: opacity 0.2s, transform 0.2s; box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.nav__dropdown.open .nav__menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.nav__menu-item { display: block; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; padding: 11px 18px; border-radius: 8px; transition: background 0.15s; }
.nav__menu-item:hover, .nav__menu-item.active { background: rgba(0,0,0,0.15); }
.nav__menu-item.active { color: var(--rcaf-btn-yellow-bg); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 13px 32px; border-radius: 100px; transition: filter 0.2s, transform 0.15s; border: none; }
.btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn--pink   { background: var(--rcaf-btn-pink-bg);   color: var(--rcaf-btn-pink-text); }
.btn--yellow { background: var(--rcaf-btn-yellow-bg); color: var(--rcaf-btn-yellow-text); }
.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn--outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,var(--rcaf-hero-overlay,0.5)); }

/* HERO VIDEO */
.hero__video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; overflow: hidden; }
.hero__video video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__video::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,var(--rcaf-hero-overlay,0.5)); }
.hero__bg--mobile-fallback { display: none; }

.hero__content { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; padding: 0 24px; }
.hero__logo-wrap .custom-logo-link img, .hero__logo-wrap .custom-logo { max-width: clamp(200px,35vw,380px); height: auto; margin-bottom: 16px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); }
.hero__name { display: flex; flex-direction: column; align-items: center; margin-bottom: 16px; line-height: 1; }
.hero__name-top { font-weight: 600; font-size: clamp(0.8rem,2vw,1.1rem); letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 4px; }
.hero__name-main { font-weight: 900; font-size: clamp(2.8rem,8vw,6.5rem); text-transform: uppercase; color: #fff; line-height: 0.9; text-shadow: 0 4px 32px rgba(0,0,0,0.4); }
.hero__name-bottom { font-weight: 900; font-size: clamp(1.4rem,4vw,3rem); text-transform: uppercase; color: var(--rcaf-btn-yellow-bg); letter-spacing: 0.12em; }
.hero__sub { font-weight: 500; font-size: clamp(0.8rem,1.8vw,1rem); letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* MARQUEE */
.marquee { padding: 13px 0; overflow: hidden; white-space: nowrap; background: var(--rcaf-yellow); }
.marquee__track { display: inline-flex; animation: marqueeScroll 28s linear infinite; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee__item { font-weight: 700; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--rcaf-marquee-text); padding: 0 24px; }
.marquee__sep { color: rgba(0,0,0,0.3); }

/* SECTION SHARED */
.section-wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; gap: 16px; flex-wrap: wrap; }
.section-eyebrow { font-weight: 600; font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 6px; }
.section-title { font-weight: 900; font-size: clamp(2rem,5vw,3.8rem); text-transform: uppercase; line-height: 0.95; }

/* LINEUP */
.lineup { padding: 90px 0; background: linear-gradient(160deg, var(--rcaf-lineup-from) 0%, var(--rcaf-lineup-to) 100%); }
.lineup .section-eyebrow { color: rgba(255,255,255,0.55); }
.lineup .section-title { color: var(--rcaf-lineup-title); }
.lineup__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 24px; }
.lineup__card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; background: rgba(0,0,0,0.25); transition: transform 0.3s, box-shadow 0.3s; }
.lineup__card:hover { transform: translateY(-8px); box-shadow: 0 24px 56px rgba(0,0,0,0.4); }
.lineup__card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.lineup__card:hover .lineup__card-img { transform: scale(1.06); }
.lineup__placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 2px dashed rgba(255,255,255,0.2); }
.lineup__placeholder-icon { font-size: 2rem; opacity: 0.35; margin-bottom: 6px; }
.lineup__placeholder-text { font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.lineup__card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.05) 55%, transparent 100%); }
.lineup__card-name { position: absolute; bottom: 12px; left: 12px; right: 12px; font-family: 'Sink', sans-serif; font-weight: 900; font-style: italic; font-size: clamp(1rem,1.8vw,1.35rem); text-transform: uppercase; color: var(--rcaf-lineup-card-name); line-height: 1; }
.lineup__more { text-align: center; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.lineup__more span { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 1px; }

/* SPLIT */
.split { display: flex; min-height: 520px; }
.split__photo { flex: 1; overflow: hidden; }
.split__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.split__photo:hover img { transform: scale(1.03); }
.split__text { flex: 1; padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
.split--dark .split__text { background: var(--rcaf-dark); }
.split--navy .split__text { background: var(--rcaf-navy); }
.split__eyebrow { font-weight: 700; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
.split__eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: currentColor; flex-shrink: 0; }
.split--dark .split__eyebrow { color: var(--rcaf-about-eyebrow); }
.split--navy .split__eyebrow { color: var(--rcaf-cta-eyebrow); }
.split__title { font-weight: 900; font-size: clamp(1.8rem,3vw,2.6rem); text-transform: uppercase; line-height: 1.05; margin-bottom: 18px; }
.split--dark .split__title { color: var(--rcaf-about-title); }
.split--navy .split__title { color: var(--rcaf-cta-title); }
.split__title em { font-style: normal; color: var(--rcaf-btn-pink-bg); }
.split__body { font-size: 0.95rem; line-height: 1.85; margin-bottom: 32px; }
.split--dark .split__body { color: var(--rcaf-about-body); }
.split--navy .split__body { color: var(--rcaf-cta-body); }
.split__body strong { color: #fff; font-weight: 600; }

/* TICKETS */
.tickets { padding: 90px 0; background: var(--rcaf-pink); }
.tickets .section-eyebrow { color: rgba(255,255,255,0.55); }
.tickets .section-title { color: var(--rcaf-tickets-title); }
.tickets__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 20px; }
.ticket-card { background: #fff; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 8px 30px rgba(0,0,0,0.2); transition: transform 0.3s, box-shadow 0.3s; }
.ticket-card:hover { transform: translateY(-8px); box-shadow: 0 20px 56px rgba(0,0,0,0.3); }
.ticket-card__photo { height: 210px; overflow: hidden; position: relative; flex-shrink: 0; }
.ticket-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ticket-card:hover .ticket-card__photo img { transform: scale(1.06); }
.ticket-card__badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-weight: 700; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; background: #ffd600; color: #000; padding: 4px 10px; border-radius: 100px; }
.ticket-card__body { padding: 18px 20px 10px; flex: 1; display: flex; flex-direction: column; }
.ticket-card__label { font-weight: 700; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 3px; }
.tc-free .ticket-card__label { color: #ffd600; }
.tc-kids-s .ticket-card__label { color: #00a86b; }
.tc-kids-t .ticket-card__label { color: #7c3aed; }
.tc-earlybird .ticket-card__label { color: #f07800; }
.tc-regular .ticket-card__label { color: #e8006f; }
.tc-door .ticket-card__label { color: #004f8c; }
.tc-free { background: #111; }
.tc-free .ticket-card__name { color: #fff; }
.tc-free .ticket-card__desc { color: rgba(255,255,255,0.55); }
.tc-free .ticket-card__footer { border-top-color: rgba(255,255,255,0.1); }
.ticket-card__name { font-family: 'Sink', sans-serif; font-weight: 900; font-style: italic; font-size: 1.4rem; text-transform: uppercase; color: #111; line-height: 1; margin-bottom: 8px; }
.ticket-card__desc { font-size: 0.78rem; color: #888; line-height: 1.6; flex: 1; }
.ticket-card__footer { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px 16px; border-top: 1px solid #f0f0f0; margin-top: 12px; }
.ticket-card__price { display: flex; align-items: baseline; gap: 2px; }
.ticket-card__currency { font-weight: 600; font-size: 0.88rem; color: #aaa; }
.ticket-card__amount { font-family: 'Sink', sans-serif; font-weight: 900; font-style: italic; font-size: 1.9rem; line-height: 1; color: #111; }
.ticket-card__amount--free { color: #ffd600; font-size: 1.5rem; }
.ticket-card__btn { font-weight: 700; font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; padding: 9px 18px; border-radius: 100px; white-space: nowrap; transition: filter 0.18s, transform 0.15s; }
.ticket-card__btn:hover { filter: brightness(1.12); transform: translateY(-1px); }
.tc-free .ticket-card__btn { background: #ffd600; color: #000; }
.tc-kids-s .ticket-card__btn { background: #00a86b; }
.tc-kids-t .ticket-card__btn { background: #7c3aed; }
.tc-earlybird .ticket-card__btn { background: #f07800; }
.tc-regular .ticket-card__btn { background: #e8006f; }
.tc-door .ticket-card__btn { background: #004f8c; }

/* SFEER */
.sfeer { background: var(--rcaf-sfeer-bg); }
.sfeer__grid { display: grid; grid-template-columns: repeat(3,1fr); grid-template-rows: repeat(2,50vw); gap: 0; }
.sfeer__item { overflow: hidden; position: relative; background: #111; }
.sfeer__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s; }
.sfeer__item:hover img { transform: scale(1.05); }
.sfeer__item::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background 0.3s; }
.sfeer__item:hover::after { background: rgba(0,0,0,0.12); }

/* FAQ */
.faq { padding: 90px 0; background: var(--rcaf-faq); }
.faq .section-eyebrow { color: var(--rcaf-faq-eyebrow); opacity: 0.6; }
.faq .section-title { color: var(--rcaf-faq-title); }
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 56px; }
.faq__category-title { font-weight: 900; font-size: 1rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--rcaf-faq-category); margin-bottom: 14px; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { background: var(--rcaf-faq-item-bg); border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.faq__question { width: 100%; background: none; border: none; text-align: left; padding: 15px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.faq__question-text { font-weight: 600; font-size: 0.88rem; color: var(--rcaf-faq-item-text); line-height: 1.4; }
.faq__icon { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; transition: background 0.2s, border-color 0.2s; }
.faq__icon svg { width: 10px; height: 10px; stroke: var(--rcaf-faq-item-text); transition: transform 0.3s; }
.faq__item.open .faq__icon { background: var(--rcaf-faq-item-text); border-color: var(--rcaf-faq-item-text); }
.faq__item.open .faq__icon svg { stroke: var(--rcaf-faq-icon-open); transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq__item.open .faq__answer { max-height: 400px; }
.faq__answer-inner { padding: 0 18px 14px; font-size: 0.86rem; line-height: 1.75; color: rgba(0,0,0,0.6); }
.faq__answer-inner a { color: #004f8c; }

/* FOOTER */
.footer { background: var(--rcaf-footer-body-bg); }
.footer__contact { background: var(--rcaf-footer-contact-bg); padding: 56px 0; }
.footer__contact-inner { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.footer__contact-title { font-weight: 900; font-size: clamp(1.3rem,2.5vw,1.8rem); text-transform: uppercase; color: var(--rcaf-footer-contact-text); margin-bottom: 8px; }
.footer__contact-sub { font-size: 0.88rem; color: var(--rcaf-footer-contact-text); opacity: 0.75; margin-bottom: 20px; line-height: 1.6; }
.footer__email-display { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.88rem; color: var(--rcaf-footer-contact-text); background: rgba(255,255,255,0.15); border: 1.5px solid rgba(255,255,255,0.3); padding: 11px 20px; border-radius: 100px; }
.footer__sponsor-title { font-weight: 900; font-size: clamp(1.3rem,2.5vw,1.8rem); text-transform: uppercase; color: var(--rcaf-footer-contact-text); margin-bottom: 8px; }
.footer__sponsor-sub { font-size: 0.88rem; color: var(--rcaf-footer-contact-text); opacity: 0.75; margin-bottom: 20px; line-height: 1.6; }
.footer__sponsor-btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rcaf-footer-contact-bg); background: #fff; padding: 12px 26px; border-radius: 100px; transition: opacity 0.2s, transform 0.15s; }
.footer__sponsor-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.footer__body { background: var(--rcaf-footer-body-bg); padding: 56px 0 40px; }
.footer__body-inner { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer__logo { width: 120px; height: auto; margin-bottom: 14px; }
.footer__logo .custom-logo-link img { width: 120px; height: auto; }
.footer__tagline { font-size: 0.8rem; color: var(--rcaf-footer-text); line-height: 1.7; margin-bottom: 22px; max-width: 220px; }
.footer__social { display: flex; gap: 10px; }
.footer__social-link { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: var(--rcaf-footer-text); transition: border-color 0.2s, color 0.2s, background 0.2s; }
.footer__social-link:hover { border-color: var(--rcaf-footer-hover); color: var(--rcaf-footer-hover); background: rgba(255,200,0,0.08); }
.footer__col-title { font-weight: 700; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rcaf-footer-text); opacity: 0.5; margin-bottom: 16px; }
.footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.footer__col-links a { font-size: 0.86rem; color: var(--rcaf-footer-text); transition: color 0.15s; }
.footer__col-links a:hover { color: var(--rcaf-footer-hover); }
.footer__bottom { background: var(--rcaf-footer-bottom-bg); border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; }
.footer__bottom-inner { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-size: 0.7rem; color: rgba(255,255,255,0.2); }
.footer__bottom-links { display: flex; gap: 18px; }
.footer__bottom-links a { font-size: 0.7rem; color: rgba(255,255,255,0.2); transition: color 0.15s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,0.45); }

/* RESPONSIVE */
@media (max-width: 1024px) { .lineup__grid { grid-template-columns: repeat(3,1fr); } .tickets__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 860px) { .split { flex-direction: column; min-height: auto; } .split__photo { height: 320px; width: 100%; } .split__text { padding: 48px 28px; width: 100%; } .footer__contact-inner { grid-template-columns: 1fr; gap: 32px; } .footer__body-inner { grid-template-columns: 1fr 1fr; gap: 32px; } .faq__grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 768px) { .hero__video--mobile-fallback { display: none !important; } .hero__bg--mobile-fallback { display: block !important; } }
@media (max-width: 680px) { .lineup__grid { grid-template-columns: repeat(2,1fr); gap: 10px; } .tickets__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 20px; } .section-wrap { padding: 0 20px; } .lineup,.tickets,.faq { padding: 60px 0; } .footer__contact-inner,.footer__body-inner,.footer__bottom-inner { padding: 0 20px; } .footer__body-inner { grid-template-columns: 1fr; } .footer__bottom-inner { flex-direction: column; text-align: center; } .nav { padding: 12px 20px; } .nav__brand-top { display: none; } .nav__brand-main { font-size: 0.78rem; } .nav__info-btn { padding: 9px 18px; font-size: 0.76rem; } .sfeer__grid { grid-template-columns: repeat(2,1fr); grid-template-rows: repeat(3,50vw); } }
@media (max-width: 420px) { .lineup__grid { grid-template-columns: 1fr 1fr; gap: 8px; } .nav__brand-main { font-size: 0.68rem; } .nav__info-btn { padding: 8px 14px; font-size: 0.7rem; } .nav__menu { min-width: 180px; } .hero__name-main { font-size: clamp(2.2rem,10vw,3.5rem); } }
.admin-bar .nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .nav { top: 46px; } }

/* SOLD OUT */
.ticket-card--sold-out { position: relative; }
.ticket-card--sold-out .ticket-card__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}
.ticket-card--sold-out .ticket-card__badge {
  background: #111; color: #fff; z-index: 2;
}
.ticket-card__sold-badge {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  background: #e8002a; color: #fff;
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 8px 24px; border-radius: 4px;
  border: 3px solid rgba(255,255,255,0.8);
  z-index: 2; pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  white-space: nowrap;
}
.ticket-card--sold-out .ticket-card__btn {
  background: #aaa !important;
  pointer-events: none; cursor: not-allowed;
  opacity: 0.7;
}
.ticket-card--sold-out .ticket-card__amount,
.ticket-card--sold-out .ticket-card__amount--free {
  text-decoration: line-through; opacity: 0.5;
}
.ticket-card--sold-out:hover { transform: none; box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.ticket-card--sold-out:hover .ticket-card__photo img { transform: none; }

/* WEB CREDITS */
.footer__credits {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.2);
  cursor: default;
  position: relative;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.2s;
}
.footer__credits:hover { color: rgba(255,255,255,0.5); }
.footer__credits-name {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(4px);
}
.footer__credits:hover .footer__credits-name {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* WEB CREDITS */
.footer__credits { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.18); position: relative; text-decoration: none; transition: color 0.2s; white-space: nowrap; }
.footer__credits:hover { color: rgba(255,255,255,0.45); }
.footer__credits-name { position: absolute; bottom: calc(100% + 7px); left: 50%; transform: translateX(-50%) translateY(4px); background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); color: #fff; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 12px; border-radius: 6px; white-space: nowrap; pointer-events: none; opacity: 0; transition: opacity 0.2s, transform 0.2s; }
.footer__credits:hover .footer__credits-name { opacity: 1; transform: translateX(-50%) translateY(0); }

/* COMING SOON */
.coming {
  padding: 110px 48px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; min-height: 520px;
}
.coming__inner {
  max-width: 680px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.coming__icon {
  font-size: 4rem; line-height: 1;
  animation: comingPulse 2.4s ease-in-out infinite;
}
@keyframes comingPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0.7; }
}
.coming__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 900; font-size: clamp(2.2rem, 6vw, 4.5rem);
  text-transform: uppercase; line-height: 1;
  color: var(--rcaf-coming-title, #fff);
  letter-spacing: -0.01em;
}
.coming__sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--rcaf-coming-sub, #aaa);
  line-height: 1.7; max-width: 520px;
}
.coming__date {
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rcaf-btn-yellow-bg);
  background: rgba(255,200,0,0.1);
  border: 1px solid rgba(255,200,0,0.25);
  padding: 8px 20px; border-radius: 100px;
}
.coming__btns {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
}
.coming__dots {
  display: flex; gap: 10px; margin-top: 12px;
}
.coming__dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--rcaf-coming-dot, #FF007B);
  animation: comingDot 1.4s ease-in-out infinite;
}
.coming__dots span:nth-child(2) { animation-delay: 0.15s; }
.coming__dots span:nth-child(3) { animation-delay: 0.30s; }
.coming__dots span:nth-child(4) { animation-delay: 0.45s; }
.coming__dots span:nth-child(5) { animation-delay: 0.60s; }
@keyframes comingDot {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.35; }
  40%           { transform: scale(1);   opacity: 1; }
}
@media (max-width: 680px) {
  .coming { padding: 80px 24px; }
}

/* SECTION HIDDEN (customizer preview) */
.rcaf-section--hidden {
  display: none !important;
}

/* HUISREGELS */
.huisregels { padding: 90px 0; }
.huisregels .section-eyebrow { color: rgba(255,255,255,0.45); }
.huisregels__list {
  display: flex; flex-direction: column;
  gap: 0; list-style: none;
}
.huisregels__item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rcaf-huisregels-divider, #222);
  transition: background 0.2s;
}
.huisregels__item:first-child { border-top: 1px solid var(--rcaf-huisregels-divider, #222); }
.huisregels__item:hover { background: rgba(255,255,255,0.02); }
.huisregels__bullet {
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 900; font-size: 1rem;
  color: var(--rcaf-huisregels-bullet, #FF007B);
  margin-top: 1px; line-height: 1.6;
  user-select: none;
}
.huisregels__text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem; line-height: 1.7;
  color: var(--rcaf-huisregels-text, #ccc);
}
@media (max-width: 680px) {
  .huisregels { padding: 60px 0; }
  .huisregels__item { gap: 12px; padding: 14px 0; }
  .huisregels__text { font-size: 0.85rem; }
}
