/* ==========================================================================
   CATHOLIC COMEDY - ULTRA-MODERN 2026 DESIGN SYSTEM (STAFF SAINT LOGOS)
   ========================================================================== */

/* Gooddog Webfont Setup */
@font-face {
  font-family: 'Gooddog';
  src: local('Gooddog'), local('GoodDog Plain'), local('GoodDog'),
       url('https://fonts.cdnfonts.com/s/17399/GoodDog.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-logo: 'Gooddog', 'GoodDog Plain', 'Shantell Sans', 'Fredoka', cursive, sans-serif;
  --font-heading: 'Gooddog', 'GoodDog Plain', 'Shantell Sans', 'Fredoka', cursive, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme (Default Bright Emerald Green & Gold) */
[data-theme="light"] {
  --bg-main: #faf9f6;
  --bg-alt: #f3f0e8;
  --bg-card: #ffffff;
  --border-color: #e5e0d8;

  --text-main: #111827;
  --text-muted: #4b5563;
  --heading-color: #0d5c3a;

  --primary-green: #0d5c3a;
  --accent-gold: #d97706;
  --badge-bg: #fef3c7;
  --badge-text: #92400e;
  --badge-border: #f59e0b;

  --header-bg: #0d5c3a;
  --header-text: #ffffff;
  --header-link: #ffffff;
  --header-hover: #fef08a;

  --btn-primary-bg: #0d5c3a;
  --btn-primary-text: #ffffff;
  --btn-primary-border: #f59e0b;

  --btn-secondary-bg: #ffffff;
  --btn-secondary-text: #0d5c3a;
  --btn-secondary-border: #0d5c3a;

  --shadow-card: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --glass-bg: rgba(255, 255, 255, 0.85);
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-main: #0f172a;
  --bg-alt: #1e293b;
  --bg-card: #1e293b;
  --border-color: #334155;

  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --heading-color: #fde047;

  --primary-green: #10b981;
  --accent-gold: #fde047;
  --badge-bg: #062c1c;
  --badge-text: #fde047;
  --badge-border: #eab308;

  --header-bg: #062c1c;
  --header-text: #ffffff;
  --header-link: #f8fafc;
  --header-hover: #fde047;

  --btn-primary-bg: #eab308;
  --btn-primary-text: #000000;
  --btn-primary-border: #ffffff;

  --btn-secondary-bg: #1e293b;
  --btn-secondary-text: #ffffff;
  --btn-secondary-border: #eab308;

  --shadow-card: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  --glass-bg: rgba(30, 41, 59, 0.85);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Saint Banner */
.saint-quote-bar {
  background: linear-gradient(90deg, #062c1c 0%, #0d5c3a 50%, #062c1c 100%);
  color: #fef08a;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 1rem;
  border-bottom: 2px solid #eab308;
}
.saint-quote-bar strong {
  color: #ffffff;
  font-family: var(--font-heading);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--header-bg);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  border-bottom: 3px solid #eab308;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  border: 2px solid #eab308;
  background: #ffffff;
}

.brand-name {
  font-family: var(--font-logo);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--header-text);
  line-height: 1;
}

.brand-sub {
  font-size: 0.75rem;
  color: #fef08a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-item, .dropdown-trigger {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--header-link);
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.nav-item:hover, .dropdown-trigger:hover, .nav-item.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--header-hover);
}

.dropdown-trigger.highlight { color: #fef08a; }

.nav-dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border: 2px solid #0d5c3a;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}

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

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  color: #111827;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
}
.dropdown-menu a:hover {
  background: rgba(13, 92, 58, 0.1);
  color: #0d5c3a;
}

.dropdown-divider {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #6b7280;
  padding: 0.4rem 0.9rem 0.2rem;
  font-weight: 800;
}

.featured-link { color: #0d5c3a !important; font-weight: 800; }

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

.theme-toggle {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.cta-button {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text) !important;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid var(--btn-primary-border);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  font-family: var(--font-heading);
}
.cta-button:hover { transform: translateY(-2px); }

/* Mobile Hamburger */
.mobile-hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  width: 30px;
}

.mobile-hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-card);
  border-left: 2px solid var(--heading-color);
  z-index: 2000;
  transition: right 0.35s ease;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.mobile-drawer.open { right: 0; }

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.drawer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.close-drawer {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text-main);
  cursor: pointer;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  overflow-y: auto;
}

.drawer-links a {
  color: var(--text-main);
  font-size: 1.05rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  text-decoration: none;
  font-weight: 600;
}

/* Modern Hero Grid Layout */
.hero-section {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at top right, rgba(13, 92, 58, 0.08) 0%, var(--bg-main) 70%);
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--badge-bg);
  border: 2px solid var(--badge-border);
  color: var(--badge-text);
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  color: var(--heading-color);
}

.gradient-text { color: var(--heading-color); }

.hero-lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-secondary {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border: 2px solid var(--btn-secondary-border);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-heading);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
}

.stats-row {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.stat-card { display: flex; flex-direction: column; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Compact Staff Card & Saint Logos */
.staff-compact-card {
  padding: 2rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.staff-logo-box {
  width: 140px;
  height: 140px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.staff-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Poster Image Container Bounds */
.poster-img-container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-poster-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border-radius: var(--radius-md);
  border: 3px solid var(--border-color);
  box-shadow: var(--shadow-card);
  margin: 0 auto;
  display: block;
}

.preview-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  max-height: 240px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* Featured Preview Card */
.featured-preview-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.card-badge-top {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--heading-color);
  color: #ffffff;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  font-family: var(--font-heading);
  z-index: 2;
}

.preview-card-body { padding: 1.5rem; }
.preview-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--heading-color);
  margin-bottom: 0.4rem;
}
.preview-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.btn-sm {
  background: var(--badge-bg);
  color: var(--badge-text);
  border: 1px solid var(--badge-border);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  cursor: pointer;
  font-size: 0.85rem;
}

/* Sections & Layout */
.section { padding: 4rem 0; }
.section-alt { background-color: var(--bg-alt); }

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-subtitle {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  color: var(--heading-color);
}

.section-description {
  color: var(--text-muted);
  font-size: 1.15rem;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.glass-card { backdrop-filter: blur(10px); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--badge-bg);
  border: 2px solid var(--badge-border);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card-title {
  font-size: 1.7rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  color: var(--heading-color);
}

.card-desc {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.audio-mini-player {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg-alt);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.play-track-btn {
  background: var(--heading-color);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.audio-track-info h4 {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  color: var(--heading-color);
}
.audio-track-info p { font-size: 0.85rem; color: var(--text-muted); }

.cartoon-preview-wrap {
  text-align: center;
  background: var(--bg-alt);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.profile-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth);
}
.profile-card:hover { transform: translateY(-5px); }

.profile-img-wrap {
  width: 100%;
  height: 320px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info { padding: 1.5rem; }

.profile-role {
  color: var(--accent-gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 800;
}

.profile-name {
  font-size: 1.9rem;
  margin: 0.25rem 0 0.5rem;
  font-family: var(--font-heading);
  color: var(--heading-color);
}

.profile-bio { color: var(--text-muted); font-size: 0.95rem; }

/* Festival Banner Teaser */
.festival-teaser-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.countdown-container {
  background: var(--bg-alt);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.countdown-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--badge-text);
  line-height: 1;
}

.countdown-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--badge-text);
  font-weight: 800;
}

.gallery-card {
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  height: 260px;
  box-shadow: var(--shadow-card);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-card:hover img { transform: scale(1.05); }

.sponsor-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 1rem;
}
.sponsor-logo-grid img {
  max-height: 80px;
  object-fit: contain;
}

.form-container {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: span 2; }

.form-group label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-submit-btn {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  width: 100%;
  margin-top: 1rem;
  font-family: var(--font-heading);
}

.alert-success {
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid #22c55e;
  color: #15803d;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
  text-align: center;
}

.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox-modal.active { display: flex; }
.lightbox-modal img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 3px solid #eab308;
}
.lightbox-caption {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ffffff;
  font-size: 40px;
  cursor: pointer;
}

.sticky-player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-top: 3px solid var(--accent-gold);
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.2);
  z-index: 1500;
  padding: 0.8rem 1.5rem;
}
.player-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.player-close {
  position: absolute;
  right: -10px;
  top: -10px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}
.player-info { display: flex; align-items: center; gap: 1rem; }
.player-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--heading-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-title {
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-heading);
  color: var(--text-main);
}
.player-artist { font-size: 0.8rem; color: var(--text-muted); }
.player-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--heading-color);
  color: #ffffff;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.player-download {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.site-footer {
  background: #062c1c;
  border-top: 3px solid #eab308;
  color: #f3f3f6;
  padding: 4rem 1.5rem 1.5rem;
  margin-top: 4rem;
}
.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.footer-brand h3 {
  font-family: var(--font-logo);
  font-size: 2.2rem;
}
.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.social-links { display: flex; gap: 0.8rem; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
}
.social-links a:hover { background: #eab308; color: #000000; }

.footer-col h4 {
  color: #fef08a;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
}
.footer-col a:hover { color: #fef08a; }

.footer-contact-btn {
  display: inline-block;
  margin-top: 1rem;
  background: #eab308;
  color: #000000;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--font-heading);
}

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
  gap: 1rem;
}

.host-savings-badge {
  background: rgba(76, 175, 80, 0.2);
  color: #a7f3d0;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(167, 243, 208, 0.4);
}

/* Responsiveness */
@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .mobile-hamburger { display: flex; }
  .hero-content-grid, .festival-teaser-banner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 3rem; }
  .section-title { font-size: 2.4rem; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .countdown-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.2rem; }
  .section-title { font-size: 1.9rem; }
  .stats-row { flex-direction: column; gap: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
