@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #1c1c1c;
  --bg-light: #242424;
  --navy: #0c4466;
  --navy-light: #1a5a82;
  --gold: #c9a84c;
  --gold-light: #e2c070;
  --white: #f9f9f9;
  --muted: #a0a0a0;
  --font-body: 'Figtree', sans-serif;
  --font-display: 'Playfair Display', serif;
}

html {
  scroll-behavior: smooth;
}

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

/* ─── NAV ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 56px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: 0.55rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-events-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  background: rgba(201, 168, 76, 0.05);
  padding: 7px 10px 6px;
  height: 36px;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}

.nav-events-box:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: rgba(201, 168, 76, 0.5);
  color: var(--white);
}

.nav-event {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  line-height: 1.2;
}

.nav-event-name {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-event-date {
  font-size: 0.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-social-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}

.nav-social:hover {
  color: var(--gold);
}

.nav-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.15);
  list-style: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  background: transparent !important;
  color: var(--gold) !important;
  padding: 7px 14px 6px !important;
  height: 36px;
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 76, 0.6) !important;
  font-size: 0.58rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  animation: navCtaGlow 2.4s ease-in-out infinite;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: rgba(201, 168, 76, 0.12) !important;
  color: var(--gold-light) !important;
  border-color: var(--gold) !important;
}

@keyframes navCtaGlow {
  0%, 100% { box-shadow: 0 0 6px rgba(201, 168, 76, 0.3), 0 0 0px rgba(201, 168, 76, 0); }
  50%       { box-shadow: 0 0 14px rgba(201, 168, 76, 0.7), 0 0 28px rgba(201, 168, 76, 0.2); }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #0a0a0a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* semi-transparent overlays only — no solid base so orbs show through */
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(12,68,102,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 60%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(201,168,76,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 20%, rgba(201,168,76,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 70%, rgba(201,168,76,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 55%, rgba(255,255,255,0.2) 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 2rem 2rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(0.75rem, 1.4vw, 0.9rem);
  color: var(--muted);
  max-width: 360px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: #111;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.35);
  margin-left: 1rem;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s;
}

.hero-scroll:hover {
  color: var(--gold);
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── STAGE SPOTLIGHT ───────────────────────────────────── */
/* two stage spotlights — top-left and top-right */
.hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

/* left beam: origin top-left corner, fans toward center */
.hero-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 85% at 10% 0%,
    rgba(255, 215, 160, 0.55) 0%,
    rgba(255, 200, 130, 0.22) 45%,
    transparent 72%
  );
}

/* right beam: origin top-right corner, fans toward center */
.hero-spotlight::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 85% at 90% 0%,
    rgba(255, 215, 160, 0.55) 0%,
    rgba(255, 200, 130, 0.22) 45%,
    transparent 72%
  );
}

/* ─── HERO LOGO ──────────────────────────────────────────── */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: scale(0.92) translateY(10px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

/* gold blur behind the logo */
.hero-logo-wrap::after {
  content: '';
  position: absolute;
  inset: -20% -18%;
  background: radial-gradient(ellipse at center,
    rgba(201, 168, 76, 0.40) 0%,
    rgba(180, 140, 40, 0.15) 55%,
    transparent 75%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

/* dark blurred rectangle behind "Gospel Lounge" at bottom of logo */
.logo-gospel-bar {
  position: absolute;
  bottom: 0%;
  left: calc(15% + 35px);
  right: calc(15% - 35px);
  height: 16%;
  background: rgba(0, 0, 0, 0.10);
  border-radius: 4px;
  filter: blur(12px);
  pointer-events: none;
  z-index: 1;
}

.hero-logo-wrap.loaded {
  opacity: 1;
  transform: scale(1) translateY(0);
}


.hero-logo {
  position: relative;
  z-index: 2;
  width: min(860px, 92vw);
  display: block;
  margin-left: -100px;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-logo:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

/* ─── FLOATING ORBS ──────────────────────────────────────── */
.orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: orbFloat 9s ease-in-out infinite;
  z-index: 1;
  will-change: transform, filter;
}

.orb-1 {
  width: 1600px; height: 1600px;
  background: radial-gradient(circle, #8b0000, transparent);
  top: -400px; left: -400px;
  animation-delay: 0s;
}
.orb-2 {
  width: 1300px; height: 1300px;
  background: radial-gradient(circle, #7b1040, transparent);
  top: 10%; right: -350px;
  animation-delay: -3s;
}
.orb-3 {
  width: 1200px; height: 1200px;
  background: radial-gradient(circle, #6b0f1a, transparent);
  bottom: -200px; left: 15%;
  animation-delay: -6s;
}
.orb-4 {
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, #7c1230, transparent);
  bottom: 10%; right: -150px;
  animation-delay: -1.5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0px)   scale(1); }
  50%       { transform: translateY(-35px) scale(1.06); }
}

/* ─── FLOATING MUSIC NOTES ───────────────────────────────── */
.float-note {
  position: absolute;
  bottom: -2rem;
  pointer-events: none;
  user-select: none;
  animation: floatUp linear infinite;
  z-index: 1;
  line-height: 1;
}

@keyframes floatUp {
  0%   { transform: translateY(0)   rotate(-8deg); opacity: 0; }
  8%   { opacity: 1; }
  85%  { opacity: 0.7; }
  100% { transform: translateY(-105vh) rotate(12deg); opacity: 0; }
}


/* ─── FEATURE CONTAINERS ────────────────────────────────── */
.features {
  display: flex;
  flex-direction: column;
}

.feature {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.feature-bg {
  position: absolute;
  inset: 0;
}

.feature-overlay {
  position: absolute;
  inset: 0;
}

/* Upper Room Gospel Lounge */
.feature--gospel .feature-bg {
  background:
    linear-gradient(135deg, #05101a 0%, #0c2232 40%, #0c4466 100%);
}

.feature--gospel .feature-overlay {
  background:
    radial-gradient(ellipse 70% 80% at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(12,68,102,0.5) 0%, transparent 60%),
    linear-gradient(90deg, rgba(5,16,26,0.95) 0%, rgba(5,16,26,0.5) 50%, rgba(5,16,26,0.2) 100%);
}

/* Gospel Bowling */
.feature--bowling .feature-bg {
  background:
    linear-gradient(135deg, #00101e 0%, #001e38 40%, #002f52 100%);
}

.feature--bowling .feature-overlay {
  background:
    radial-gradient(ellipse 70% 80% at 30% 50%, rgba(20,80,160,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
    linear-gradient(270deg, rgba(0,16,30,0.95) 0%, rgba(0,16,30,0.5) 50%, rgba(0,16,30,0.2) 100%);
}

.feature--bowling {
  flex-direction: row;
}

/* Gala */
.feature--gala .feature-bg {
  background:
    linear-gradient(135deg, #0a0a0a 0%, #1a1200 40%, #2a1f00 100%);
}

.feature--gala .feature-overlay {
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 80% 80%, rgba(80,40,0,0.4) 0%, transparent 60%),
    linear-gradient(90deg, rgba(10,10,10,0.97) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.3) 100%);
}

.feature-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  padding-right: calc(5% + 80px);
}

.feature--bowling .feature-visual {
  justify-content: flex-end;
  padding-right: calc(5% + 80px);
  padding-left: 0;
}

.feature--gala .feature-visual {
  padding-right: calc(5% + 105px);
}

.feature-icon-large {
  font-size: clamp(8rem, 18vw, 16rem);
  opacity: 0.06;
  line-height: 1;
  user-select: none;
}

.feature-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 6rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature--bowling .feature-inner {
  direction: ltr;
}

.feature-content {
  max-width: 560px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.feature-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.feature-number {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  color: rgba(201,168,76,0.08);
  position: absolute;
  top: 5rem;
  right: 3.5rem;
  pointer-events: none;
  font-style: italic;
}

.feature--bowling .feature-number {
  right: auto;
  left: 3.5rem;
}

.feature h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.feature h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.feature-desc {
  color: rgba(249,249,249,0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 300;
}

.feature-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.feature-detail {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.feature-detail-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.feature-detail-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.feature-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.feature-deco {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-emblem {
  width: min(380px, 90%);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  padding: 3rem;
  position: relative;
}

.feature--gospel .feature-emblem {
  border: 1px solid rgba(201,168,76,0.2);
  background: radial-gradient(ellipse at center, rgba(12,68,102,0.3) 0%, rgba(12,68,102,0.05) 100%);
  box-shadow: 0 0 80px rgba(12,68,102,0.3), inset 0 0 60px rgba(12,68,102,0.1);
}

.feature--bowling .feature-emblem {
  border: 1px solid rgba(201,100,20,0.25);
  background: radial-gradient(ellipse at center, rgba(74,30,0,0.4) 0%, rgba(74,30,0,0.05) 100%);
  box-shadow: 0 0 80px rgba(100,40,0,0.25), inset 0 0 60px rgba(74,30,0,0.1);
}

.feature--gala .feature-emblem {
  border: 1px solid rgba(201,168,76,0.3);
  background: radial-gradient(ellipse at center, rgba(42,31,0,0.5) 0%, rgba(42,31,0,0.05) 100%);
  box-shadow: 0 0 100px rgba(201,168,76,0.15), inset 0 0 60px rgba(42,31,0,0.15);
}

.emblem-icon {
  font-size: 4rem;
  line-height: 1;
}

.emblem-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.3;
}

.emblem-sub {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Harlem Nights feature colors ───────────────────────── */
.feature--harlem .feature-bg {
  background: linear-gradient(135deg, #120010 0%, #220030 40%, #3a0050 100%);
}

.feature--harlem .feature-overlay {
  background:
    radial-gradient(ellipse 70% 80% at 70% 50%, rgba(160,80,201,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(40,0,60,0.5) 0%, transparent 60%),
    linear-gradient(90deg, rgba(18,0,16,0.96) 0%, rgba(18,0,16,0.5) 50%, rgba(18,0,16,0.2) 100%);
}

/* ── Reversed layout variant (flyer left, text right) ────── */
.feature--reversed {
  flex-direction: row-reverse;
}

.feature--reversed .feature-inner {
  direction: rtl;
}

.feature--reversed .feature-inner > * {
  direction: ltr;
}

.feature--reversed .feature-visual {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: 5%;
}

/* ── Past events collapsible list ───────────────────────── */
.past-events-list {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.7s cubic-bezier(0.4,0,0.2,1), opacity 0.45s ease;
  pointer-events: none;
}

.past-events-list.open {
  max-height: 600vh;
  opacity: 1;
  pointer-events: auto;
}

/* ── Past events toggle button ──────────────────────────── */
.past-events-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: var(--bg);
  position: relative;
}

.past-events-toggle-wrap::before,
.past-events-toggle-wrap::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25));
}

.past-events-toggle-wrap::before {
  right: 50%;
  margin-right: 10rem;
}

.past-events-toggle-wrap::after {
  left: 50%;
  margin-left: 10rem;
  background: linear-gradient(270deg, transparent, rgba(201,168,76,0.25));
}

.past-events-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 3px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: all 0.25s;
}

.past-events-toggle:hover {
  color: var(--gold);
  border-color: rgba(201,168,76,0.6);
  background: rgba(201,168,76,0.06);
}

.toggle-arrow {
  display: flex;
  align-items: center;
  transition: transform 0.35s ease;
  color: var(--gold);
}

.past-events-toggle[aria-expanded="true"] .toggle-arrow {
  transform: rotate(180deg);
}

/* ── Feature flyer (replaces emblem) ─────────────────────── */
.feature-flyer-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.feature-flyer {
  width: min(504px, 90%);
  max-height: 700px;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-flyer:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 8px 30px rgba(201,168,76,0.15);
}

/* ── Archived feature ─────────────────────────────────────── */
.tag-archived {
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.12em;
}

.feature--archived {
  opacity: 0.88;
}

.feature--archived .feature-overlay {
  background-image: linear-gradient(90deg, rgba(5,16,26,0.98) 0%, rgba(5,16,26,0.55) 50%, rgba(5,16,26,0.25) 100%);
}

/* divider line between features */
.feature-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}

/* ─── ABOUT STRIP ────────────────────────────────────────── */
.about-strip {
  background:
    radial-gradient(ellipse 120% 90% at 50% -10%, rgba(201,168,76,0.28) 0%, rgba(201,168,76,0.08) 40%, transparent 70%),
    radial-gradient(ellipse 80% 70% at 0% 110%, rgba(201,168,76,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 90%, rgba(180,130,30,0.12) 0%, transparent 55%),
    #000;
  padding: 5rem 2rem;
}

.about-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-strip-photo {
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(201,168,76,0.2),
    0 0 80px rgba(201,168,76,0.1);
}

.about-strip-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-strip-text {
  text-align: left;
}

.about-logo {
  display: block;
  width: min(340px, 100%);
  margin-bottom: 1.25rem;
  filter: brightness(1.05) drop-shadow(0 2px 12px rgba(201,168,76,0.25));
}

.about-strip p {
  color: rgba(249,249,249,0.75);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-strip .section-eyebrow {
  display: block;
  text-align: left;
  margin-bottom: 0.75rem;
}

/* ─── GALLERY PREVIEW ────────────────────────────────────── */
.gallery-preview {
  padding: 3rem 0 4rem;
  background: var(--bg-light);
  position: relative; /* anchors absolute arrows */
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 2rem; /* restore horizontal padding now that section has none */
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* must come AFTER .section-eyebrow to win the cascade */
.recent-events-title {
  font-size: 1.1rem;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 0;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
}

.gallery-carousel-wrap {
  position: relative;
  /* full width — section already has no horizontal padding */
  overflow: hidden;
}

/* soft fade at left/right edges — hides shadow clip cleanly */
.gallery-carousel-wrap::before,
.gallery-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.gallery-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-light), transparent);
}
.gallery-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-light), transparent);
}

.gallery-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 2rem 1.5rem 2.5rem;
  justify-content: center;
}

.gallery-grid::-webkit-scrollbar {
  display: none;
}

/* arrows: absolutely positioned at the true page edges */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(0,0,0,0.55);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 10;
  backdrop-filter: blur(6px);
}

.gallery-arrow:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}

.gallery-arrow--prev { left: 1rem; }
.gallery-arrow--next { right: 1rem; }

/* wrapper: holds shadow + scroll-snap, NO overflow:hidden so shadow never clips */
.gallery-card-wrap {
  /* ~30% smaller, centered when not filling full width */
  flex: 0 0 calc((100vw - 7rem) / 5 * 0.7);
  scroll-snap-align: start;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.45);
  transition: box-shadow 0.3s, transform 0.3s;
  will-change: transform;
}

.gallery-card-wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.55);
}

.gallery-card {
  aspect-ratio: 2/3;
  border-radius: 12px;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
  width: 100%; /* fills the wrap which is sized to 1/3 of grid */
}

.gallery-card:hover {
  /* scale handled by wrap to avoid overflow clipping interaction */
}

.gallery-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s;
}

.gallery-card:hover .gallery-card-bg {
  transform: scale(1.05);
}

.gallery-card--0 .gallery-card-bg { background: linear-gradient(135deg, #05101a, #0c4466); }
.gallery-card--1 .gallery-card-bg { background: linear-gradient(135deg, #1a0a2e, #0c4466); }
.gallery-card--2 .gallery-card-bg { background: linear-gradient(135deg, #1a1200, #4a2800); }
.gallery-card--3 .gallery-card-bg { background: linear-gradient(135deg, #0a1a0a, #0c3322); }

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.35) 40%, transparent 70%);
}

.gallery-card-info {
  position: relative;
  z-index: 2;
}

.gallery-card-date {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.gallery-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ─── CONTACT FORM ───────────────────────────────────────── */
.contact-form {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-form-row {
  display: flex;
  gap: 0.45rem;
}

.contact-form-row input,
.contact-form-row textarea {
  flex: 1;
  min-width: 0;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 0.5rem 0.7rem;
  width: 100%;
  transition: border-color 0.2s;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(201,168,76,0.5);
}

.contact-send-btn {
  font-size: 0.68rem !important;
  padding: 0 1rem !important;
  height: auto;
  white-space: nowrap;
  align-self: stretch;
  letter-spacing: 0.1em;
}

.contact-form-thanks {
  font-size: 0.75rem;
  color: var(--gold);
  min-height: 1em;
}

/* ─── CONTACT / FOOTER ───────────────────────────────────── */
footer {
  background: #0f0f0f;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-social a {
  color: var(--white);
}

.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col address {
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-col address a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col address a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.8rem;
}

/* ─── GALLERY PAGE ───────────────────────────────────────── */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, #060e14 0%, var(--bg) 100%);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

.gallery-page-content {
  padding: 4rem 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}

.event-section {
  margin-bottom: 5rem;
}

.event-section h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.event-section-meta {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.event-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg-light);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 2.5rem;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .feature-inner {
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
    gap: 3rem;
  }

  .feature--bowling .feature-inner,
  .feature--reversed .feature-inner {
    direction: ltr;
  }

  .feature-deco {
    order: -1;
  }

  .feature-emblem {
    width: min(280px, 80%);
  }

  .feature-flyer {
    width: min(380px, 85%);
  }

  .feature-number {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-strip-text {
    text-align: center;
  }

  .about-strip .section-eyebrow {
    text-align: center;
  }
}

@media (max-width: 680px) {
  nav {
    padding: 0 1.25rem;
  }

  /* ── Mobile nav drawer ─────────────────────────────── */
  .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(18,18,18,0.99);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    overflow-y: auto;
    max-height: calc(100vh - 56px);
  }

  .nav-links.open {
    display: flex;
  }

  /* hide desktop-only decorators */
  .nav-divider,
  .nav-social-group {
    display: none !important;
  }

  /* every link item: full-width row */
  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.68rem;
    width: 100%;
  }

  /* event boxes: reset to plain row, remove border/box look */
  .nav-events-box {
    flex-direction: row;
    gap: 0.6rem;
    height: auto;
    border: none;
    background: transparent;
    border-radius: 0;
    padding: 0.9rem 1.5rem;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-event-name {
    font-size: 0.68rem;
  }

  .nav-event-date {
    font-size: 0.62rem;
    opacity: 0.7;
  }

  /* get tickets CTA: full width, centered */
  .nav-cta {
    width: 100% !important;
    height: auto !important;
    justify-content: center !important;
    padding: 1rem 1.5rem !important;
    border-radius: 0 !important;
    border: none !important;
    border-top: 1px solid rgba(201,168,76,0.2) !important;
    border-bottom: none !important;
    animation: none !important;
  }

  /* ── Hero logo: remove negative margin ─────────────── */
  .hero-logo {
    margin-left: 0;
    width: min(340px, 92vw);
  }

  /* ── Carousel: show 2 tiles on mobile ─────────────── */
  .gallery-card-wrap {
    flex: 0 0 calc((100vw - 4rem) / 2);
  }

  .gallery-grid {
    justify-content: flex-start; /* left-align on mobile for smooth snapping */
    padding: 1.5rem 1rem 2rem;
  }

  /* ── Footer ────────────────────────────────────────── */
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .contact-form .btn {
    align-self: stretch;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .btn-outline {
    margin-left: 0;
  }
}
