/* ============================================
   Speelschaar SFX - Dark Modern Theme
   Primary Blue: #2563EB / #3B82F6
   Primary Yellow: #F59E0B / #FBBF24
   ============================================ */

:root {
  --blue-900: #1e3a5f;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-400: #60a5fa;
  --blue-300: #93c5fd;
  --yellow-600: #c5bb0f;
  --yellow-500: #EFE21F;
  --yellow-400: #EFE21F;
  --yellow-300: #f5f06e;
  --dark-950: #080e1e;
  --dark-900: #0d1530;
  --dark-800: #141e3a;
  --dark-700: #1c2948;
  --dark-600: #243456;
  --dark-500: #314568;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --white: #ffffff;
  --gradient-blue: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  --gradient-yellow: linear-gradient(135deg, var(--yellow-500), var(--yellow-300));
  --gradient-hero: linear-gradient(135deg, var(--dark-900) 0%, var(--blue-900) 50%, var(--dark-900) 100%);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.4);
  --shadow-blue: 0 0 30px rgba(37,99,235,0.15);
  --shadow-yellow: 0 0 20px rgba(239,226,31,0.1);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--dark-950);
  color: var(--gray-300);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}

a {
  color: var(--blue-400);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--yellow-400);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ NAVIGATION ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 21, 48, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 21, 48, 0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  min-width: 0;
}

.nav-logo .nav-title {
  white-space: nowrap;
  font-size: clamp(0.72rem, 2.9vw, 1.15rem);
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-logo .nav-title {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.nav-title-short {
  display: none;
}

@media (max-width: 768px) {
  .nav-title-full {
    display: none;
  }
  .nav-title-short {
    display: inline;
  }
  .nav-logo {
    gap: 8px;
  }
  .nav-logo img {
    height: 32px;
  }
}

.nav-logo .nav-highlight-blue {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-logo .nav-highlight-yellow {
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-links li {
  position: relative;
}

.nav-links a {
  display: block;
  padding: 8px 16px;
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(59, 130, 246, 0.1);
}

.nav-links a.active {
  color: var(--blue-400);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 6px;
  vertical-align: middle;
  transition: var(--transition);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--dark-700);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
  list-style: none;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
}

/* Mobile Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ HERO SECTION ============ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 50%, rgba(37,99,235,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 300px at 80% 30%, rgba(239,226,31,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--dark-950), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(239, 226, 31, 0.1);
  border: 1px solid rgba(239, 226, 31, 0.3);
  border-radius: 50px;
  color: var(--yellow-400);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero h1 .highlight-blue {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .highlight-yellow {
  background: var(--gradient-yellow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.15rem;
  color: var(--gray-400);
  margin: 0 auto 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-blue);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-yellow {
  background: var(--gradient-yellow);
  color: var(--dark-900);
  box-shadow: 0 4px 20px rgba(239, 226, 31, 0.3);
}

.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(239, 226, 31, 0.4);
  color: var(--dark-900);
}

/* ============ SECTIONS ============ */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow-400);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-400);
  max-width: 600px;
  margin: 0 auto;
}

/* ============ CARDS ============ */
.card {
  background: var(--dark-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-blue);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--blue-400);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--gray-400);
  font-size: 0.95rem;
}

/* Card Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* 3-column card grid — stays in a row on desktop, stacks on mobile */
.card-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
  .card-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* 4-column card grid — stays in a row on desktop, 2x2 on tablet, stacks on mobile */
.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .card-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ============ CALENDAR / EVENTS ============ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.event-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--dark-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: var(--transition);
}

.event-item:hover {
  border-color: rgba(59, 130, 246, 0.2);
  background: var(--dark-700);
}

.event-date {
  width: 120px;
  flex-shrink: 0;
  text-align: center;
  padding: 12px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.event-date .day {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-date .date {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-400);
  margin-top: 2px;
}

.event-info h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.event-info p {
  font-size: 0.85rem;
  color: var(--gray-400);
}

.event-time {
  margin-left: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow-400);
  white-space: nowrap;
  background: rgba(239, 226, 31, 0.1);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(239, 226, 31, 0.15);
}

/* ============ PAGE HERO (sub-pages) ============ */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 30% 60%, rgba(37,99,235,0.1) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 70% 30%, rgba(239,226,31,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--dark-950), transparent);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  position: relative;
  z-index: 1;
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============ CONTENT SECTION ============ */
.content-section {
  padding: 60px 0 80px;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block.wide {
  max-width: 1080px;
}

.content-block h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  margin-top: 40px;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p {
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: var(--gray-300);
  line-height: 1.8;
}

.content-block ul,
.content-block ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.content-block li {
  margin-bottom: 8px;
  color: var(--gray-300);
}

/* ============ INFO BOXES ============ */
.info-box {
  background: var(--dark-800);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 32px 0;
}

.info-box.yellow {
  border-color: rgba(239, 226, 31, 0.2);
  background: linear-gradient(135deg, var(--dark-800), rgba(239, 226, 31, 0.03));
}

.info-box h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--yellow-400);
}

.info-box.blue h3 {
  color: var(--blue-400);
}

/* ============ CONTACT GRID ============ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.contact-card {
  background: var(--dark-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.contact-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
}

.contact-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 4px;
}

.contact-card a {
  color: var(--blue-400);
}

.contact-card a:hover {
  color: var(--yellow-400);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--dark-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand img {
  height: 36px;
}

.footer p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--blue-400);
}

.footer-info p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.footer-info p svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.3em;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--gray-400);
}

.footer-bottom a {
  color: var(--gray-400);
}

.footer-bottom a:hover {
  color: var(--blue-400);
}

/* Footer Social Links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 24px;
  height: 24px;
}

/* ============ SCHEDULE WIDGET ============ */
.schedule-widget {
  background: var(--dark-800);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}

.schedule-header {
  background: rgba(59, 130, 246, 0.08);
  padding: 20px 28px;
  border-bottom: 1px solid rgba(59, 130, 246, 0.12);
}

.schedule-header h3 {
  font-size: 1.1rem;
  color: var(--blue-400);
}

.schedule-body {
  padding: 24px 28px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.schedule-row:last-child {
  border-bottom: none;
}

.schedule-row .group {
  font-weight: 500;
  color: var(--gray-300);
}

.schedule-row .time {
  color: var(--yellow-400);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============ GLOWING EFFECTS ============ */
.glow-blue {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.glow-yellow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,226,31,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* ============ SUPPORT TIERS ============ */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.tier-card {
  background: var(--dark-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}

.tier-card:hover {
  border-color: rgba(239, 226, 31, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-yellow);
}

.tier-card.featured {
  border-color: rgba(239, 226, 31, 0.3);
  background: linear-gradient(135deg, var(--dark-800), rgba(239, 226, 31, 0.05));
}

.tier-amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--yellow-400);
  margin-bottom: 8px;
}

.tier-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.tier-card .bonus {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: var(--blue-400);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ============ DIVIDER ============ */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-blue);
  border-radius: 2px;
  margin: 16px auto;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    overflow: visible;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    background: var(--dark-900);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    z-index: 9999;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav-toggle {
    display: flex;
    z-index: 10000;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
  }

  .has-dropdown > a::after {
    display: none;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255,255,255,0.03);
    border: none;
    margin-top: 4px;
    box-shadow: none;
    min-width: unset;
    padding: 4px 0 4px 16px;
  }

  .hero {
    min-height: 70vh;
  }

  .event-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 16px;
  }

  .event-date {
    width: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
  }

  .event-date .day {
    display: inline;
  }

  .event-date .date {
    display: inline;
    margin-top: 0;
  }

  .event-time {
    margin-left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .card-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 60px 0;
  }

  .tier-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .tier-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* ============ SCROLL REVEAL ============ */
.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children when they appear together */
.reveal-item:nth-child(2) { transition-delay: 0.06s; }
.reveal-item:nth-child(3) { transition-delay: 0.12s; }
.reveal-item:nth-child(4) { transition-delay: 0.18s; }
.reveal-item:nth-child(5) { transition-delay: 0.24s; }
.reveal-item:nth-child(6) { transition-delay: 0.30s; }
.reveal-item:nth-child(7) { transition-delay: 0.36s; }
.reveal-item:nth-child(8) { transition-delay: 0.42s; }
.reveal-item:nth-child(9) { transition-delay: 0.48s; }
.reveal-item:nth-child(10) { transition-delay: 0.54s; }
.reveal-item:nth-child(11) { transition-delay: 0.60s; }
.reveal-item:nth-child(12) { transition-delay: 0.66s; }

/* Reset stagger delay once revealed so it doesn't linger on hover etc */
.reveal-item.revealed {
  transition-delay: 0s;
}

/* Floating particles */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-500);
  opacity: 0.3;
  animation: float 3s ease-in-out infinite;
}

/* ============ FLOATING MUSIC NOTES ============ */
@keyframes noteFloat1 {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.18; }
  80%  { opacity: 0.18; }
  100% { transform: translate(60px, -180px) rotate(25deg); opacity: 0; }
}
@keyframes noteFloat2 {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.14; }
  80%  { opacity: 0.14; }
  100% { transform: translate(-50px, -200px) rotate(-20deg); opacity: 0; }
}
@keyframes noteFloat3 {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.12; }
  80%  { opacity: 0.12; }
  100% { transform: translate(40px, -160px) rotate(15deg); opacity: 0; }
}

.music-notes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.music-note {
  position: absolute;
  font-size: 1.4rem;
  color: var(--blue-400);
  opacity: 0;
  user-select: none;
}

.music-note:nth-child(1) { left: 8%; bottom: 18%; animation: noteFloat1 7s ease-in-out 0s infinite; font-size: 1.2rem; }
.music-note:nth-child(2) { left: 22%; bottom: 10%; animation: noteFloat2 9s ease-in-out 1.5s infinite; color: var(--yellow-400); font-size: 1.6rem; }
.music-note:nth-child(3) { left: 42%; bottom: 22%; animation: noteFloat3 8s ease-in-out 0.8s infinite; font-size: 1.1rem; }
.music-note:nth-child(4) { left: 60%; bottom: 12%; animation: noteFloat1 10s ease-in-out 3s infinite; color: var(--yellow-400); font-size: 1.3rem; }
.music-note:nth-child(5) { left: 78%; bottom: 20%; animation: noteFloat2 7.5s ease-in-out 2s infinite; font-size: 1.5rem; }
.music-note:nth-child(6) { left: 90%; bottom: 8%; animation: noteFloat3 9.5s ease-in-out 4s infinite; color: var(--yellow-400); font-size: 1.1rem; }
.music-note:nth-child(7) { left: 35%; bottom: 5%; animation: noteFloat1 8.5s ease-in-out 5s infinite; font-size: 1rem; }
.music-note:nth-child(8) { left: 70%; bottom: 28%; animation: noteFloat2 11s ease-in-out 2.5s infinite; color: var(--yellow-400); font-size: 1.2rem; }

/* Inline icon helper */
.icon-inline {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  fill: currentColor;
}

/* ============ HERO WITH BACKGROUND IMAGE ============ */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,14,30,0.92) 0%, rgba(30,58,95,0.8) 50%, rgba(8,14,30,0.92) 100%);
}

/* ============ PAGE HERO WITH BACKGROUND IMAGE ============ */
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,14,30,0.9) 0%, rgba(30,58,95,0.75) 50%, rgba(8,14,30,0.9) 100%);
}

/* ============ PHOTO GALLERY GRID ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 48px 0;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(59, 130, 246, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,14,30,0.5) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ============ IMAGE CARD (card with image) ============ */
.card-with-image {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card-with-image .card-image {
  height: 200px;
  overflow: hidden;
  margin: -32px -32px 20px -32px;
}

.card-with-image .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-with-image:hover .card-image img {
  transform: scale(1.05);
}

/* ============ FEATURE IMAGE (text + image side by side) ============ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 60px 0;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.1);
  pointer-events: none;
  z-index: 1;
}

.feature-text h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.feature-text p {
  color: var(--gray-300);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ============ LIGHTBOX ============ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8,14,30,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox-overlay.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

/* ============ FULL-WIDTH IMAGE BANNER ============ */
.image-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin: 48px 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
}

.image-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,14,30,0.7) 0%, transparent 50%, rgba(8,14,30,0.7) 100%);
  pointer-events: none;
}

.image-banner-text {
  position: absolute;
  bottom: 24px;
  left: 32px;
  z-index: 2;
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
}

/* ============ RESPONSIVE IMAGES ============ */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .card-with-image .card-image {
    height: 160px;
  }

  .image-banner {
    height: 200px;
    margin: 32px 0;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
