/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-surface-alt);
  padding-top: var(--nav-height);
}

/* ===== HERO VIDEO BACKGROUND ===== */
.hero-video-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark Overlay for Readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(10, 10, 10, 0.7) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Optional: Subtle gold tint overlay for brand consistency */
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at bottom right,
    rgba(212, 168, 67, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 40px 40px;
  opacity: 0.8;
  z-index: 2;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border: 1px dashed var(--color-gold-border);
  border-radius: 50%;
  z-index: 2;
  animation: spin 45s linear infinite;
  pointer-events: none;
}

.hero-ring::after {
  content: ""; 
  position: absolute;
  top: -10px; left: 50%; 
  width: 20px; height: 20px;
  background: var(--color-gold); 
  border-radius: 50%;
  box-shadow: 0 0 30px var(--color-gold);
  transform: translateX(-50%);
}

@keyframes spin {
  100% { transform: translateY(-50%) rotate(360deg); }
}

.hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 680px;
  animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
  font-size: clamp(48px, 7vw, 84px);
  margin-bottom: 24px;
  line-height: 1.1;
  color: #fff;
}

.hero p {
  font-size: 16px;
  color: #999;
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  gap: 48px;
}
.stat-item h3 {
  font-size: 40px;
  color: #fff;
  font-family: var(--font-body);
  margin-bottom: 4px;
}
.stat-item p {
  font-size: 11px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin: 0;
  font-weight: 600;
}

/* Marquee Ticker */
.marquee-ticker {
  background: var(--color-gold);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.marquee-content {
  display: flex;
  animation: marquee 25s linear infinite;
}

.marquee-content span {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  letter-spacing: 0.15em;
  padding: 0 24px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } 
}

/* Shared Layout for Sections */
.split-section {
  display: flex;
  gap: 64px;
  align-items: center;
}
.split-content, .split-image {
  flex: 1;
}

.split-content p {
  color: #999;
  margin-bottom: 32px;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.badge {
  background: var(--color-surface);
  border: 1px dashed var(--color-border-light);
  padding: 6px 12px;
  font-size: 11px;
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
}

/* Event Cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.event-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-card .img-placeholder {
  height: 240px;
  border: none;
  border-bottom: 1px solid var(--color-border-light);
}

.event-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-date {
  font-size: 11px;
  color: var(--color-gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.event-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.event-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Podcast Section */
.podcast-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pod-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: border-color var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}

.pod-card:hover {
  border-color: var(--color-gold-border);
  transform: translateX(8px);
  background: var(--color-surface-alt);
}

.pod-thumb {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 20px;
}

.pod-info h4 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
  font-family: var(--font-body);
}

.pod-info p {
  font-size: 13px;
  color: var(--color-text-muted);
}

.pod-card .btn-outline {
  margin-left: auto;
  padding: 8px 16px;
  font-size: 12px;
}

/* CTA Banner */
.cta-banner {
  background: var(--color-surface-alt);
  text-align: center;
  border-top: 1px dashed var(--color-border);
  border-bottom: 1px dashed var(--color-border);
}

.cta-box {
  background: var(--color-bg);
  border: 1px dashed var(--color-gold-border);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: clamp(32px, 5vw, 48px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-box p {
  font-size: 15px;
  color: #999;
  margin-bottom: 40px;
  max-width: 400px;
  margin-left: auto; margin-right: auto;
}

/* ===== TOP ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--color-gold), #e6b94e);
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.2);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.announcement-bar.hidden {
  display: none;
}

.announcement-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #111;
  letter-spacing: 0.05em;
}

#announcement-text {
  flex: 1;
}

.announcement-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.announcement-link {
  background: #111;
  color: var(--color-gold);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.announcement-link:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.announcement-close {
  background: rgba(0, 0, 0, 0.1);
  color: #111;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.announcement-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* ===== HERO EVENT SPOTLIGHT ===== */
.hero {
  padding-top: calc(var(--nav-height) + 40px);
}

.hero-event-spotlight {
  margin-bottom: 48px;
}

.event-spotlight-badge {
  display: inline-block;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-event-spotlight h1 {
  font-size: clamp(48px, 7vw, 84px);
  margin-bottom: 16px;
  line-height: 1.1;
  color: #fff;
  background: linear-gradient(135deg, #fff, var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-event-date {
  font-size: 20px;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-event-hype {
  font-size: 16px;
  color: #999;
  margin-bottom: 32px;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-timer {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 70px;
}

.countdown-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-gold);
  font-family: 'Courier New', monospace;
  line-height: 1;
}

.countdown-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ===== FEATURED EVENT SECTION ===== */
.featured-event-section {
  background: var(--color-surface-alt);
  border-top: 1px dashed var(--color-border);
  border-bottom: 1px dashed var(--color-border);
}

.featured-event-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.featured-event-image {
  position: relative;
}

.event-flyer-placeholder {
  aspect-ratio: 9 / 12;
  box-shadow: 0 20px 60px rgba(212, 168, 67, 0.15), 0 0 40px rgba(212, 168, 67, 0.08);
  border: 1px solid var(--color-gold-border);
  transform: translateY(-10px);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.featured-event-image:hover .event-flyer-placeholder {
  transform: translateY(-16px);
  box-shadow: 0 30px 80px rgba(212, 168, 67, 0.25), 0 0 60px rgba(212, 168, 67, 0.12);
}

.featured-event-details h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 32px;
  line-height: 1.2;
}

.event-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--color-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meta-value {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
}

.featured-event-description {
  font-size: 16px;
  color: #999;
  line-height: 1.8;
  margin-bottom: 24px;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
}

.featured-event-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== STICKY CTA BUTTON ===== */
.sticky-cta-button {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--color-gold);
  color: #111;
  padding: 16px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(212, 168, 67, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), bottom var(--transition-fast);
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.sticky-cta-button:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 16px 48px rgba(212, 168, 67, 0.4);
}

.sticky-cta-button.hide {
  bottom: -120px;
  opacity: 0;
  pointer-events: none;
}

/* ===== EVENT MODAL ===== */
.event-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.event-modal.open {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-gold-border);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(212, 168, 67, 0.15);
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--color-text);
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  transition: background var(--transition-fast), transform var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-image {
  width: 100%;
}

.modal-body {
  padding: 40px 32px;
  text-align: center;
}

.modal-badge {
  display: inline-block;
  background: rgba(212, 168, 67, 0.15);
  border: 1px solid var(--color-gold-border);
  color: var(--color-gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.modal-content h2 {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 14px;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.modal-description {
  font-size: 15px;
  color: #999;
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-urgency {
  background: rgba(212, 168, 67, 0.1);
  border: 1px dashed var(--color-gold-border);
  color: var(--color-gold);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .hero-ring { right: -20%; }
  .split-section { flex-direction: column; align-items: flex-start; gap: 40px; }
  .split-content { max-width: 100% !important; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-event-layout { grid-template-columns: 1fr; gap: 40px; }
  .countdown-timer { gap: 16px; }
  .countdown-value { font-size: 28px; }
  .countdown-item { min-width: 60px; }

  /* Optimize video for tablet */
  .hero-video {
    object-position: center 30%;
  }
}

@media (max-width: 768px) {
  .hero-ring { display: none; }
  .events-grid { grid-template-columns: 1fr; }
  .pod-card { flex-direction: column; text-align: center; gap: 16px; }
  .pod-card .btn-outline { margin: 0 auto; }
  .cta-box { padding: 48px 24px; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 32px; justify-content: center; }
  .section-header-flex { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .split-section { align-items: center; }
  .split-content { text-align: center; align-items: center; }
  .badge-row { justify-content: center; }
  
  .hero-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-actions { justify-content: center; }

  .announcement-content { flex-direction: column; gap: 12px; }
  #announcement-text { margin-bottom: 8px; }
  .countdown-timer { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .countdown-value { font-size: 24px; }
  .featured-event-actions { flex-direction: column; }
  .featured-event-actions .btn-primary,
  .featured-event-actions .btn-outline {
    width: 100%;
    text-align: center;
  }
  .sticky-cta-button { bottom: 16px; right: 16px; padding: 12px 16px; font-size: 12px; }
  .modal-content { max-width: calc(100% - 32px); }
  .modal-body { padding: 32px 20px; }

  /* Optimize video for mobile */
  .hero-video {
    object-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0.75) 50%,
      rgba(10, 10, 10, 0.8) 100%
    );
  }
}

@media (max-width: 480px) {
  .countdown-timer { padding: 16px; gap: 8px; }
  .countdown-item { min-width: 50px; }
  .countdown-value { font-size: 20px; }
  .countdown-label { font-size: 9px; }

  .hero-event-spotlight h1 {
    font-size: 36px;
  }

  .event-spotlight-badge {
    padding: 6px 12px;
    font-size: 10px;
  }
}
