/* ==========================================================================
   FGB THEWinnipeg - Modern Web Experience Stylesheet
   Full Gospel Business Men's Fellowship in Canada - Winnipeg Chapter
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #070c18;
  --bg-surface: #0c1527;
  --bg-surface-elevated: #111e38;
  --bg-card: rgba(17, 30, 56, 0.7);
  --bg-card-hover: rgba(23, 40, 75, 0.85);
  
  --primary-blue: #2563eb;
  --primary-blue-glow: rgba(37, 99, 235, 0.35);
  --royal-blue: #1d4ed8;
  
  --gold-primary: #d4af37;
  --gold-light: #fbbf24;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --gold-gradient: linear-gradient(135deg, #fbbf24 0%, #d4af37 50%, #b45309 100%);
  --gold-border: linear-gradient(135deg, rgba(251, 191, 36, 0.6), rgba(212, 175, 55, 0.2), rgba(180, 83, 9, 0.5));
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-subtle: #64748b;
  --text-gold: #fde68a;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-focus: #fbbf24;
  
  --glass-blur: blur(16px);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.25);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Background Ambient Lighting Effect */
.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.25;
  will-change: transform;
}

.orb-1 {
  top: -10%;
  left: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #1e40af 0%, rgba(30, 64, 175, 0) 70%);
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-2 {
  top: 40%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #b45309 0%, rgba(180, 83, 9, 0) 70%);
  opacity: 0.18;
  animation: floatOrb 24s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  bottom: 5%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2563eb 0%, rgba(37, 99, 235, 0) 70%);
  opacity: 0.2;
}

@keyframes floatOrb {
  0% { transform: translateY(0) translateX(0) scale(1); }
  50% { transform: translateY(-30px) translateX(25px) scale(1.06); }
  100% { transform: translateY(20px) translateX(-20px) scale(0.95); }
}

/* Subtle Grid Matrix */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

/* App Container */
.site-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.2;
}

.gold-gradient-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  border-radius: var(--radius-full);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold-light);
}

.badge.blue {
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.35);
  color: #60a5fa;
}

.badge.pulse::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ==========================================================================
   Navigation Bar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 12, 24, 0.82);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.site-header.scrolled {
  background: rgba(7, 12, 24, 0.95);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: var(--text-main);
}

.brand-crest {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1e3a8a, #0b132b);
  border: 1px solid rgba(212, 175, 55, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  color: var(--gold-light);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.brand-title span.the {
  color: var(--gold-light);
  font-weight: 900;
  font-size: 1.15em;
}

.brand-subtitle {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.35rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

/* Button Component */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.45);
  filter: brightness(1.05);
}

.btn-primary {
  background: var(--primary-blue);
  color: #fff;
  box-shadow: 0 4px 15px var(--primary-blue-glow);
}

.btn-primary:hover {
  background: var(--royal-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 99, 235, 0.5);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212, 175, 55, 0.5);
}

.btn-outline-gold:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  backdrop-filter: var(--glass-blur);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding-top: 4.5rem;
  padding-bottom: 6rem;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-taglines {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-motto {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-motto::after {
  content: '';
  height: 2px;
  flex-grow: 1;
  background: linear-gradient(to right, rgba(212, 175, 55, 0.5), transparent);
}

.hero-calling {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #93c5fd;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

/* Hero Live Widget Card */
.hero-widget-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(212, 175, 55, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-widget-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  padding: 1px;
  background: var(--gold-border);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.25rem;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.widget-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

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

.countdown-unit {
  background: rgba(7, 12, 24, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.25rem;
}

.countdown-val {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
}

.countdown-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.35rem;
}

.widget-details {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-size: 0.9rem;
}

.widget-detail-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
}

.widget-detail-row svg {
  color: var(--gold-light);
  flex-shrink: 0;
}

.widget-detail-row strong {
  color: var(--text-main);
}

/* ==========================================================================
   Vision & Prophecy Section
   ========================================================================== */
.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-tag {
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

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

.vision-card {
  position: relative;
  background: linear-gradient(135deg, rgba(17, 30, 56, 0.8) 0%, rgba(12, 21, 39, 0.9) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.vision-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.vision-quote-symbol {
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-light);
  opacity: 0.35;
  font-family: Georgia, serif;
  margin-bottom: -1.5rem;
}

.vision-headline {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--text-gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

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

.vision-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.vision-highlight-box {
  background: rgba(7, 12, 24, 0.6);
  border-left: 3px solid var(--gold-light);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.vision-highlight-box p {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  line-height: 1.6;
}

.vision-badge-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vision-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.vision-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(6px);
}

.vision-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vision-pill-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-main);
}

.vision-pill-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Six-Pillar Mission Grid
   ========================================================================== */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.mission-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-subtle);
  backdrop-filter: var(--glass-blur);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.mission-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-gold);
}

.mission-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.mission-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
}

.mission-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(212, 175, 55, 0.15));
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.mission-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.mission-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Weekly Gatherings & Schedule
   ========================================================================== */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.schedule-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all var(--transition-smooth);
}

.schedule-card.featured {
  border-color: rgba(212, 175, 55, 0.5);
  background: linear-gradient(180deg, rgba(23, 40, 75, 0.75) 0%, rgba(12, 21, 39, 0.9) 100%);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}

.schedule-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 55, 0.4);
}

.schedule-time-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 1rem;
}

.schedule-name {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.schedule-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.schedule-meta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.schedule-meta-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.schedule-meta-list svg {
  color: var(--gold-light);
}

/* ==========================================================================
   National Convention Spotlight (Calgary 2026)
   ========================================================================== */
.convention-box {
  background: linear-gradient(135deg, #0f1d3a 0%, #1e1b4b 50%, #172554 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg), 0 0 45px rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
}

.convention-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.convention-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.convention-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.convention-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.convention-date-highlight {
  font-size: 1.2rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.convention-venue {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.venue-name {
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.venue-address {
  color: var(--text-muted);
}

.convention-timer-card {
  background: rgba(11, 19, 43, 0.85);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.convention-timer-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   Notices Hub (Memberships, Giving, Announcements)
   ========================================================================== */
.notices-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.7rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.notices-container {
  position: relative;
}

.notice-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.notice-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.notice-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  backdrop-filter: var(--glass-blur);
}

.notice-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.notice-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.notice-point-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.notice-point-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.notice-point-content h4 {
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.notice-point-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Giving Methods Cards */
.giving-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.giving-card {
  background: rgba(7, 12, 24, 0.65);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.giving-card.featured {
  border-color: rgba(212, 175, 55, 0.45);
  background: linear-gradient(180deg, rgba(23, 40, 75, 0.6) 0%, rgba(7, 12, 24, 0.8) 100%);
}

.giving-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

.copy-email {
  font-family: monospace;
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 600;
}

.copy-btn {
  background: rgba(212, 175, 55, 0.2);
  border: none;
  color: var(--gold-light);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.copy-btn:hover {
  background: var(--gold-light);
  color: #000;
}

/* ==========================================================================
   Contact & Interactive Inquiry
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-lead-person {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.person-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3a8a, #d4af37);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  border: 2px solid var(--gold-light);
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.contact-channel-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(4px);
}

.contact-channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-channel-details {
  display: flex;
  flex-direction: column;
}

.contact-channel-details span {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-channel-details strong {
  font-size: 1rem;
  color: var(--text-main);
}

/* Interactive Form Card */
.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(7, 12, 24, 0.7);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.2);
}

.form-textarea {
  resize: vertical;
  min-height: 110px;
}

/* Toast Notification */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: rgba(12, 21, 39, 0.95);
  border: 1px solid var(--gold-light);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(212, 175, 55, 0.3);
  backdrop-filter: var(--glass-blur);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 500;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-smooth);
  pointer-events: auto;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--gold-light);
  font-size: 1.2rem;
}

/* ==========================================================================
   Modals (Native <dialog>)
   ========================================================================== */
dialog.custom-modal {
  margin: auto;
  background: var(--bg-surface-elevated);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: 0;
  max-width: 540px;
  width: 90vw;
  color: var(--text-main);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(0, 0, 0, 0.8);
}

dialog.custom-modal::backdrop {
  background: rgba(7, 12, 24, 0.8);
  backdrop-filter: blur(8px);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.modal-body {
  padding: 1.75rem;
  max-height: 75vh;
  overflow-y: auto;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #040810;
  border-top: 1px solid var(--border-subtle);
  padding-top: 4.5rem;
  padding-bottom: 2.5rem;
  margin-top: auto;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--gold-light);
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-notice-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-subtle);
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .vision-content {
    grid-template-columns: 1fr;
  }
  
  .convention-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .notice-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
  }
  
  .mobile-menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(12, 21, 39, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-lg), 0 20px 40px rgba(0, 0, 0, 0.8);
    gap: 0.5rem;
    z-index: 99;
  }

  .mobile-menu-open .nav-link {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    width: 100%;
  }

  .mobile-menu-open .nav-link:hover, .mobile-menu-open .nav-link.active {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
  }

  .mobile-menu-open .nav-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
  }

  .mobile-menu-open .nav-actions .btn {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
  }

  /* Form and Input Touch Improvements (No iOS Zoom) */
  .form-input, .form-select, .form-textarea {
    font-size: 16px !important; /* Prevents auto-zoom on iPhone */
    min-height: 46px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  
  .countdown-box {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.4rem;
  }

  .countdown-unit {
    padding: 0.6rem 0.2rem;
  }

  .countdown-val {
    font-size: 1.35rem;
  }

  .countdown-label {
    font-size: 0.65rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta-group .btn {
    width: 100%;
    min-height: 48px;
  }

  .section {
    padding: 4rem 0;
  }

  .dinner-section {
    padding: 4rem 0;
  }

  .ticket-3d-card {
    padding: 1.5rem 1.15rem;
  }

  .ticket-depth-base {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ticket-depth-layer-front {
    margin-top: 0.5rem;
  }

  .price-medallion-3d {
    width: 140px;
    height: 140px;
    margin-bottom: 1rem;
  }

  .price-amount {
    font-size: 3rem;
  }

  .dinner-script-title {
    font-size: 2.2rem;
  }

  .dinner-info-card-box {
    padding: 1.15rem;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .toast {
    width: 100%;
  }

  dialog.custom-modal {
    width: 95vw;
    margin: auto;
    border-radius: 16px;
  }

  .modal-body {
    padding: 1.25rem;
  }
}

/* Touch devices: disable heavy tilt so touches scroll smoothly */
@media (hover: none) {
  .ticket-3d-card, .menu-3d-card {
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .priority-bar-content {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    font-size: 0.8rem;
  }

  .priority-badge-live {
    align-self: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-calling {
    font-size: 0.95rem;
  }

  .countdown-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .menu-3d-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   PRIORITY: 3D DINNER OUTING SHOWCASE & 3D TICKET SYSTEM
   ========================================================================== */

/* Top Priority Banner */
.priority-top-bar {
  background: linear-gradient(90deg, #b45309 0%, #d4af37 25%, #1e3a8a 70%, #0f172a 100%);
  background-size: 200% 200%;
  animation: shimmerBar 8s ease infinite;
  color: #fff;
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 101;
  box-shadow: 0 2px 15px rgba(212, 175, 55, 0.35);
  border-bottom: 1px solid rgba(251, 191, 36, 0.4);
}

@keyframes shimmerBar {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.priority-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.priority-badge-live {
  background: #dc2626;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

.priority-link-btn {
  background: rgba(0, 0, 0, 0.5);
  color: var(--gold-light);
  border: 1px solid var(--gold-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.priority-link-btn:hover {
  background: var(--gold-light);
  color: #000;
  transform: translateY(-1px);
}

/* 3D Dinner Outing Section */
.dinner-section {
  padding: 6rem 0;
  position: relative;
  background: radial-gradient(ellipse at 50% 30%, rgba(30, 58, 138, 0.25) 0%, rgba(7, 12, 24, 0.95) 75%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  overflow: hidden;
}

.dinner-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

/* 3D Ticket Container & Canvas */
.ticket-3d-stage {
  perspective: 1400px;
  margin-block: 2.5rem 4rem;
  display: flex;
  justify-content: center;
}

.ticket-3d-card {
  width: 100%;
  max-width: 960px;
  border-radius: 26px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.4, 1), box-shadow 0.3s ease;
  background: linear-gradient(145deg, rgba(16, 28, 54, 0.95) 0%, rgba(9, 15, 29, 0.98) 100%);
  border: 2px solid rgba(212, 175, 55, 0.5);
  box-shadow: 
    0 30px 60px -15px rgba(0, 0, 0, 0.85),
    0 0 50px rgba(212, 175, 55, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.2);
  padding: clamp(2rem, 4vw, 3.5rem);
  cursor: grab;
  user-select: none;
  overflow: hidden;
}

/* Holographic Sheen Layer */
.ticket-3d-sheen {
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 10;
  mix-blend-mode: overlay;
  transition: opacity 0.3s ease;
}

/* 3D Depth Layers */
.ticket-depth-base {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.ticket-depth-layer-mid {
  transform: translateZ(40px);
  transform-style: preserve-3d;
}

.ticket-depth-layer-front {
  transform: translateZ(70px);
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Embellished Crest & Script */
.dinner-crest-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.fgb-flame-emblem {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, #fef08a 0%, #fbbf24 40%, #b45309 85%);
  border: 2px solid #fff;
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.8), inset 0 0 10px rgba(180, 83, 9, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
}

.dinner-script-title {
  font-family: 'Outfit', cursive, sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #f43f5e 0%, #ec4899 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  letter-spacing: -0.01em;
  filter: drop-shadow(0 4px 10px rgba(244, 63, 94, 0.3));
}

.dinner-venue-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.4);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  color: #fca5a5;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.dinner-venue-badge strong {
  color: #fff;
  font-size: 1.02rem;
}

.dinner-info-card-box {
  background: rgba(7, 12, 24, 0.7);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.dinner-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.dinner-info-row svg {
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.dinner-info-row strong {
  color: var(--text-main);
  font-size: 1.05rem;
}

/* 3D Starburst Medallion Price ($20) */
.price-medallion-3d {
  width: 170px;
  height: 170px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float3DMedallion 4s ease-in-out infinite alternate;
  filter: drop-shadow(0 15px 30px rgba(251, 191, 36, 0.5));
  margin-bottom: 1.5rem;
}

@keyframes float3DMedallion {
  0% { transform: translateY(0) rotate(-2deg); }
  100% { transform: translateY(-12px) rotate(4deg); }
}

.starburst-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: url(#gold3dGrad);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

.price-number-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #451a03;
  line-height: 1;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  color: #451a03;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.price-subtext {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #78350f;
  margin-top: 0.2rem;
}

/* 3D Tactile Buttons */
.btn-3d-gold {
  background: linear-gradient(180deg, #fbbf24 0%, #d4af37 50%, #b45309 100%);
  color: #1e1b4b;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  box-shadow: 
    0 6px 0 #78350f,
    0 12px 25px rgba(251, 191, 36, 0.4);
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-decoration: none;
}

.btn-3d-gold:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 0 #78350f,
    0 16px 30px rgba(251, 191, 36, 0.55);
  filter: brightness(1.06);
}

.btn-3d-gold:active {
  transform: translateY(4px);
  box-shadow: 
    0 2px 0 #78350f,
    0 6px 15px rgba(251, 191, 36, 0.3);
}

/* 3D Menu Grid Preview */
.dinner-menu-wrapper {
  margin-top: 3.5rem;
}

.dinner-menu-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.smitty-logo-badge {
  font-family: 'Brush Script MT', 'Outfit', cursive;
  font-size: 2.2rem;
  color: #ef4444;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: inline-block;
  text-shadow: 0 0 15px rgba(239, 68, 68, 0.3);
}

.menu-3d-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.75rem;
  perspective: 1200px;
}

.menu-3d-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.menu-3d-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(251, 191, 36, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.menu-3d-card:hover {
  transform: translateY(-8px) rotateX(4deg) scale(1.02);
  border-color: rgba(251, 191, 36, 0.5);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(251, 191, 36, 0.2);
}

.menu-item-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.menu-item-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.menu-item-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.menu-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: #93c5fd;
  font-weight: 600;
}

/* Dinner Countdown Container inside 3D Card */
.dinner-countdown-box {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: var(--radius-md);
  padding: 1rem;
  width: 100%;
  margin-top: 1rem;
}

.dinner-countdown-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 0.6rem;
  text-align: center;
}

@media (max-width: 900px) {
  .ticket-depth-base {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .dinner-crest-banner {
    justify-content: center;
  }
  
  .ticket-depth-layer-front {
    margin-top: 1rem;
  }
}

/* ==========================================================================
   OFFICIAL FGBMFI LOGO STYLING (FLAME, TORCH, GLOBE, DOVE) - BALANCED SIZING
   ========================================================================== */
.brand-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06) rotate(2deg);
}

.hero-logo-emblem {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(251, 191, 36, 0.5));
  animation: floatOfficialLogo 4s ease-in-out infinite alternate;
  flex-shrink: 0;
}

@keyframes floatOfficialLogo {
  0% { transform: translateY(0) scale(1); filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.4)); }
  100% { transform: translateY(-5px) scale(1.03); filter: drop-shadow(0 0 22px rgba(251, 191, 36, 0.65)); }
}

.ticket-fgb-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6));
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.ticket-3d-card:hover .ticket-fgb-logo {
  transform: scale(1.05) translateZ(8px);
}

.modal-fgb-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(251, 191, 36, 0.35));
  flex-shrink: 0;
  margin-right: 0.65rem;
}

.footer-fgb-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.35));
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .brand-logo-img {
    width: 36px;
    height: 36px;
  }
  .hero-logo-emblem {
    width: 46px;
    height: 46px;
  }
  .ticket-fgb-logo {
    width: 44px;
    height: 44px;
  }
}



