/* ═══════════════════════════════════════════════
   ABARIE.COM — MAIN STYLESHEET
   Bright, modern, professional entertainer site
   ═══════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --primary:    #e8403a;   /* Destalker-inspired bold red */
  --primary-dk: #c02f2a;
  --primary-lt: #fdecea;
  --gold:       #f5a623;
  --gold-lt:    #fff4e0;
  --dark:       #1a1a2e;   /* deep navy-black */
  --dark2:      #16213e;
  --mid:        #0f3460;   /* rich navy accent */
  --white:      #ffffff;
  --offwhite:   #f8f7f4;
  --light:      #f0eeea;
  --text:       #3d3d3d;
  --muted:      #7a7a8a;
  --border:     #e0ddd8;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Sora', sans-serif;
  --font-serif:   'Playfair Display', serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.16);
  --radius:    6px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5vw; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 5vw; }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
  font-weight: 700; color: var(--primary);
}
.tag::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px; background: var(--primary);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  color: var(--dark);
  letter-spacing: 2px;
  line-height: 1.05;
}
.section-title span { color: var(--primary); }

.section-body {
  color: var(--muted);
  line-height: 1.85;
  max-width: 580px;
}

.btn-red {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--white);
  padding: 13px 30px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background .2s, transform .15s;
  border: none; cursor: pointer;
}
.btn-red:hover { background: var(--primary-dk); transform: translateY(-2px); }

.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--dark); color: var(--dark);
  padding: 11px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background .2s, color .2s;
  background: transparent;
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.6); color: var(--white);
  padding: 11px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background .2s, border-color .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

section { padding: 90px 0; }

/* ═══════════════ NAVBAR ═══════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--dark);
  letter-spacing: 2px;
}
.nav-logo span { color: var(--primary); }

.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block; padding: 8px 16px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text);
  border-radius: var(--radius);
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: var(--primary-lt); }

.nav-cta {
  background: var(--primary); color: var(--white);
  padding: 10px 24px; border-radius: var(--radius);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background .2s;
}
.nav-cta:hover { background: var(--primary-dk); color: var(--white); }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); margin: 5px 0;
  transition: all .3s;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  padding-top: 70px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  overflow: hidden;
}

/* Left: text + slideshow */
.hero-left {
  background: var(--dark);
  padding: 80px 5vw 60px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-left::after {
  content: '';
  position: absolute; bottom: 0; right: -60px;
  width: 120px; height: 100%;
  background: var(--white);
  clip-path: polygon(60px 0, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(232,64,58,0.18);
  border: 1px solid rgba(232,64,58,0.4);
  color: #ff7b78;
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 9rem);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: 3px;
  margin-bottom: 0.3rem;
}
.hero h1 .red { color: var(--primary); }
.hero h1 .thin {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.38em;
  color: rgba(255,255,255,0.55);
  display: block;
  letter-spacing: 6px;
  margin-bottom: 0.5rem;
}

.hero-desc {
  color: rgba(255,255,255,0.62);
  font-size: 0.96rem;
  line-height: 1.85;
  max-width: 400px;
  margin: 1.5rem 0 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 3; }

.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  position: relative; z-index: 3;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
.hero-stat strong span { color: var(--primary); }
.hero-stat small {
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Right: image carousel */
.hero-right {
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
  display: flex; align-items: stretch;
}

.hero-slides {
  display: flex;
  width: 100%; height: 100%;
  transition: none;
}

.hero-slide {
  min-width: 100%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-slide-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  width: 100%; height: 100%; min-height: 400px;
  color: var(--border);
  font-family: var(--font-display);
  letter-spacing: 3px; font-size: 0.9rem;
  text-align: center; gap: 12px;
}

.hero-slide-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 100%);
  padding: 40px 28px 28px;
  color: var(--white);
}
.hero-slide-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; letter-spacing: 2px;
  line-height: 1.1; margin-bottom: 4px;
}
.hero-slide-overlay p { font-size: 0.78rem; opacity: 0.65; }

.hero-slide-nav {
  position: absolute; bottom: 20px; right: 20px;
  display: flex; gap: 8px; z-index: 5;
}
.hero-slide-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: all .2s;
  border: none;
}
.hero-slide-dot.active {
  background: var(--primary);
  width: 24px; border-radius: 4px;
}

.hero-slide-arrows {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 12px; z-index: 5; pointer-events: none;
}
.hero-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); font-size: 1.1rem;
  pointer-events: all;
  transition: background .2s;
  box-shadow: var(--shadow-md);
}
.hero-arrow:hover { background: var(--primary); color: var(--white); }

/* ═══════════════ SOCIAL STRIP ═══════════════ */
.social-strip {
  background: var(--dark);
  padding: 20px 0;
  overflow: hidden;
}
.social-strip-inner {
  display: flex; align-items: center; gap: 3rem;
}
.social-strip-label {
  font-size: 0.68rem; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  font-weight: 700; white-space: nowrap;
}
.social-links-row { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.social-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  transition: all .2s;
}
.social-pill:hover { border-color: var(--primary); color: var(--white); background: rgba(232,64,58,0.12); }
.social-pill svg { flex-shrink: 0; }

/* ═══════════════ ABOUT SNIPPET ═══════════════ */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.about-img-wrap { position: relative; }
.about-img-frame {
  width: 100%; aspect-ratio: 3/4;
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--border);
  font-family: var(--font-display); letter-spacing: 3px;
  font-size: 0.85rem;
}

/* gold corner accent on photo */
.about-img-wrap::before, .about-img-wrap::after {
  content: ''; position: absolute;
  width: 60px; height: 60px;
  border-color: var(--primary); border-style: solid;
}
.about-img-wrap::before { top: -12px; left: -12px; border-width: 3px 0 0 3px; border-radius: 4px 0 0 0; }
.about-img-wrap::after  { bottom: -12px; right: -12px; border-width: 0 3px 3px 0; border-radius: 0 0 4px 0; }

.about-badge {
  position: absolute; bottom: 20px; left: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem; letter-spacing: 1px; line-height: 1;
}
.about-badge small { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }

.about-content { padding-top: 20px; }
.about-content .tag { margin-bottom: 1rem; }
.about-content .section-title { margin-bottom: 1.2rem; }
.about-content p { color: var(--muted); line-height: 1.85; margin-bottom: 1.2rem; }

.about-quote {
  border-left: 3px solid var(--primary);
  padding-left: 20px; margin: 1.5rem 0;
}
.about-quote p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.05rem; color: var(--dark);
  line-height: 1.7; margin: 0;
}
.about-quote cite {
  display: block; margin-top: 8px;
  font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary);
  font-style: normal;
}

.about-facts { display: flex; gap: 2rem; margin-top: 2rem; }
.about-fact { text-align: center; }
.about-fact strong {
  display: block;
  font-family: var(--font-display); font-size: 2rem;
  color: var(--dark); line-height: 1;
}
.about-fact span { color: var(--primary); }
.about-fact small { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* ═══════════════ EVENTS CAROUSEL ═══════════════ */
.events-section { background: var(--offwhite); overflow: hidden; }
.events-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem;
}

.events-track-wrap { overflow: hidden; position: relative; }
.events-track-wrap::before, .events-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.events-track-wrap::before { left: 0; background: linear-gradient(to right, var(--offwhite), transparent); }
.events-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--offwhite), transparent); }

.events-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.event-card {
  min-width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
}
.event-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.event-card-poster {
  height: 200px;
  background: var(--light);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.event-card-poster img { width: 100%; height: 100%; object-fit: cover; }
.event-poster-placeholder {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--border); font-family: var(--font-display);
  letter-spacing: 3px; font-size: 0.85rem;
}
.event-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.event-badge.upcoming { background: var(--primary); color: var(--white); }
.event-badge.past { background: rgba(0,0,0,0.1); color: var(--muted); }
.event-badge.live { background: #22c55e; color: white; }

.event-card-body { padding: 20px; }
.event-date {
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary);
  font-weight: 700; margin-bottom: 6px;
}
.event-name {
  font-family: var(--font-display); font-size: 1.4rem;
  color: var(--dark); letter-spacing: 1px;
  margin-bottom: 6px; line-height: 1.1;
}
.event-venue {
  font-size: 0.8rem; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 14px;
}
.event-acts { font-size: 0.75rem; color: var(--muted); margin-bottom: 16px; }
.event-acts strong { color: var(--text); }
.event-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--primary);
  border-bottom: 1.5px solid rgba(232,64,58,0.25);
  padding-bottom: 2px; transition: border-color .2s;
}
.event-link:hover { border-color: var(--primary); }

.events-controls {
  display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; justify-content: center;
}
.events-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--dark);
  transition: all .2s; box-shadow: var(--shadow-sm);
}
.events-arrow:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.events-dots { display: flex; gap: 8px; }
.events-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  transition: all .2s; border: none;
}
.events-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ═══════════════ PAST EVENTS (YouTube Slider) ═══════════════ */
.past-events { background: var(--dark); overflow: hidden; }
.past-events .section-title { color: var(--white); }
.past-events .section-body { color: rgba(255,255,255,0.5); }

.yt-slider-wrap { overflow: hidden; margin-top: 3rem; position: relative; }
.yt-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.yt-card {
  min-width: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .25s, border-color .25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.yt-card:hover { transform: translateY(-6px); border-color: var(--primary); }

.yt-thumb {
  height: 185px;
  background: rgba(255,255,255,0.04);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.yt-thumb img { width: 100%; height: 100%; object-fit: cover; }
.yt-thumb-placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,0.15);
  font-family: var(--font-display); letter-spacing: 3px; font-size: 0.85rem;
}
.yt-play {
  position: absolute;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(232,64,58,0.9);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
  transition: transform .2s, background .2s;
}
.yt-card:hover .yt-play { transform: scale(1.1); background: var(--primary); }

.yt-body { padding: 18px; }
.yt-meta {
  font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); font-weight: 700; margin-bottom: 6px;
}
.yt-title {
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--white); letter-spacing: 1px; line-height: 1.15;
  margin-bottom: 8px;
}
.yt-venue { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

.yt-controls {
  display: flex; align-items: center; gap: 1rem;
  justify-content: center; margin-top: 2.5rem;
}
.yt-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: white; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.yt-arrow:hover { background: var(--primary); border-color: var(--primary); }

/* ═══════════════ SERVICES ═══════════════ */
.services-section { background: var(--offwhite); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: border-color .25s, transform .2s, box-shadow .2s;
}
.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.service-icon.red   { background: var(--primary-lt); color: var(--primary); }
.service-icon.gold  { background: var(--gold-lt); color: var(--gold); }
.service-icon.navy  { background: #e8eef6; color: var(--mid); }
.service-icon.dark  { background: #ebebef; color: var(--dark); }
.service-name {
  font-family: var(--font-display); font-size: 1.3rem;
  color: var(--dark); letter-spacing: 2px; margin-bottom: 8px;
}
.service-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════ SOCIAL CARDS ═══════════════ */
.social-section { background: var(--dark2); }
.social-section .section-title { color: var(--white); }
.social-section .section-body { color: rgba(255,255,255,0.5); }
.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem; margin-top: 3rem;
}
.platform-card {
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  display: block; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}
.platform-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.platform-icon {
  width: 54px; height: 54px; border-radius: 14px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.platform-name {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--white); letter-spacing: 2px; margin-bottom: 4px;
}
.platform-handle { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.platform-handle a { color: inherit; }
.platform-stat { font-size: 0.7rem; color: rgba(255,255,255,0.3); letter-spacing: 1px; }

/* ═══════════════ BOOKING SNIPPET ═══════════════ */
.booking-snippet {
  background: var(--primary);
  padding: 80px 0;
}
.booking-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
}
.booking-inner h2 {
  font-family: var(--font-display); font-size: clamp(2rem,4vw,3.2rem);
  color: var(--white); letter-spacing: 2px; line-height: 1.1;
  margin-bottom: 0.5rem;
}
.booking-inner p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.booking-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ═══════════════ FOOTER ═══════════════ */
footer {
  background: #0d0d1a;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .nav-logo { font-size: 2rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.84rem; color: rgba(255,255,255,0.35); line-height: 1.8; max-width: 260px; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--radius);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all .2s;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }

.footer-col h4 {
  font-family: var(--font-display); font-size: 1.1rem;
  color: var(--white); letter-spacing: 2px;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 0.84rem; color: rgba(255,255,255,0.4);
  transition: color .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--primary); }

.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.4);
  margin-bottom: 0.8rem;
}
.footer-contact li svg { flex-shrink: 0; margin-top: 3px; }
.footer-contact li a { color: inherit; }
.footer-contact li a:hover { color: var(--primary); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: var(--primary); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left::after { display: none; }
  .hero-left { padding: 60px 5vw 50px; }
  .hero-right { height: 50vh; min-height: 320px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-wrap { max-width: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  section { padding: 70px 0; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-facts { flex-wrap: wrap; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 4rem; }
  .events-track .event-card { min-width: 260px; }
  .yt-track .yt-card { min-width: 260px; }
}

/* ═══════════════ MOBILE NAV DRAWER ═══════════════ */
.mobile-nav {
  position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999;
  padding: 2rem 5vw;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid var(--border); }
.mobile-nav ul li a {
  display: block; padding: 1rem 0;
  font-size: 1.1rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--dark); transition: color .2s;
}
.mobile-nav ul li a:hover { color: var(--primary); }
.mobile-nav .btn-red { margin-top: 2rem; width: 100%; justify-content: center; }

/* ═══════════════ PAGE TRANSITION ═══════════════ */
.page-enter { animation: fadeInUp 0.4s ease both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
