:root {
  --rich-orange: #ff7a18;
  --sunset-orange: #ffb347;
  --soft-cream: #fff8f0;
  --charcoal: #1d1a1a;
  --deep-charcoal: #0f0d0d;
  --gold-accent: #d4af37;
}

body {
  background: var(--soft-cream);
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--charcoal);
}

.nav-link {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-accent), transparent);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: translateY(0);
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-primary {
  background: white;
  color: var(--charcoal);
}

.cta-primary:hover {
  background: var(--gold-accent);
  color: var(--deep-charcoal);
}

.cta-secondary {
  border: 1px solid rgba(0, 0, 0, 0.4);
  color: var(--charcoal);
  background: transparent;
}

.cta-secondary:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.cta-secondary--light {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}

.cta-secondary--light:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.cta-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: var(--gold-accent);
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(29, 26, 26, 0.6);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--charcoal);
}

.glass-card {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 28px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
}

.stat-card,
.highlight-card,
.icon-card,
.detail-card,
.stage-card,
.prize-card,
.ticket-card,
.contestant-card,
.gallery-tile,
.video-card,
.participation-card,
.dept-card,
.faq-item,
.update-card,
.news-card,
.benefit-card,
.tier-card,
.judge-card,
.pillar-card,
.crown-card,
.judge-preview {
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  background: white;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.icon-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: white;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 12px;
  font-size: 24px;
}

.contestant-card__photo {
  border-radius: 32px;
  width: 100%;
  height: 320px;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.contestant-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  padding: 32px;
  border-radius: 32px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: white;
}

.contestant-layout__media img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.video-card__thumb {
  position: relative;
  min-height: 260px;
  border-radius: 32px;
  overflow: hidden;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--charcoal);
}

.filter-pill {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 16px;
  transition: all 0.3s ease;
}

.filter-pill.active,
.filter-pill:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.gallery-tile__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 24px;
}

.gallery-tile__body {
  margin-top: 16px;
}

.tier-card {
  border-width: 1.5px;
}

.tier-card--premium {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15),
    rgba(255, 255, 255, 0.95)
  );
  border-color: var(--gold-accent);
}

.judge-card__photo,
.judge-preview__photo {
  border-radius: 28px;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.expertise-tag {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.12);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ticket-card + .ticket-card {
  margin-top: 16px;
}

.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.faq-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1504593811423-6dd665756598?auto=format&fit=crop&w=1200&q=80")
    center/cover;
  opacity: 0.35;
}

.page-hero__overlay {
  position: relative;
  background: linear-gradient(135deg, rgba(29, 26, 26, 0.9), rgba(255, 122, 24, 0.65));
}

.site-footer {
  background: var(--charcoal);
  color: white;
  padding: 60px 0;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 32px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 40px;
  background: linear-gradient(120deg, rgba(255, 248, 240, 0.95), #fff);
}

@media (min-width: 768px) {
  .cta-panel {
    flex-direction: row;
    align-items: center;
  }
}

.map-embed {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
  min-height: 360px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
}

.contact-form .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(29, 26, 26, 0.6);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 14px 16px;
  background: white;
  color: var(--charcoal);
}

.timeline {
  border-left: 2px solid rgba(212, 175, 55, 0.4);
  padding-left: 24px;
  display: grid;
  gap: 24px;
}

.timeline article {
  position: relative;
}

.timeline article::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold-accent);
}

.step-card {
  border-radius: 28px;
  border: 1px dashed rgba(212, 175, 55, 0.4);
  padding: 24px;
  background: white;
}

.step-number {
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: var(--gold-accent);
}

.logo-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.logo-pill {
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 18px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.participation-card {
  min-height: 220px;
}

.dept-card {
  min-height: 180px;
}

.page-hero nav {
  color: white;
}

.page-hero nav .nav-link {
  color: white;
}

.page-hero nav .nav-link.is-active {
  color: var(--gold-accent);
}

.page-hero nav .nav-link:hover {
  color: var(--gold-accent);
}

/* Parallax effects for Why Section */
.why-parallax-layer-1 {
  will-change: transform;
  pointer-events: none;
  transform-origin: center center;
  background-size: cover;
}

.why-parallax-layer-2 {
  will-change: transform;
  pointer-events: none;
}

.why-orb {
  will-change: transform;
  pointer-events: none;
}

