/* ═══════════════════════════════════════════════════════════
   BHARAT FASHION WEEK 2026 — PREMIUM LUXURY WEBSITE
   Aesthetic: Bold Black / High Fashion / Editorial Luxury
   Inspired by: NYFW, Lakme Fashion Week, Paris Couture
═══════════════════════════════════════════════════════════ */

:root {
  --black: #000000;
  --rich-black: #0a0a0a;
  --dark: #111111;
  --charcoal: #1a1a1a;
  --gunmetal: #2d2d2d;
  --smoke: #3a3a3a;
  --silver: #888888;
  --pearl: #c8c8c8;
  --platinum: #e0e0e0;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-light: #ddc175;
  --gold-dark: #a07e2e;
  --cream: #f5f0e8;
  --accent: #c9a84c;
  --font-display: "Playfair Display", Georgia, serif;
  --font-heading: "Bebas Neue", "Archivo", sans-serif;
  --font-body: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Archivo", "Helvetica Neue", sans-serif;
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ─── PRELOADER ─── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.4em;
  color: var(--white);
  animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-line {
  width: 120px;
  height: 1px;
  background: var(--gunmetal);
  position: relative;
  overflow: hidden;
}
.preloader-line::after {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: preloaderSlide 1.2s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
@keyframes preloaderSlide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* ─── CURSOR ─── */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.15s ease;
  mix-blend-mode: difference;
}

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  padding: 15px 50px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.35em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-accent {
  color: var(--gold);
  font-size: 0.7em;
  letter-spacing: 0.2em;
}
.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pearl);
  text-decoration: none;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover {
  color: var(--white);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-cta {
  font-family: var(--font-ui) !important;
  font-size: 0.65rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.25em !important;
  padding: 12px 28px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: all 0.4s ease !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}
.nav-cta::after {
  display: none !important;
}

/* Mobile menu */
.nav-hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}
.nav-hamburger span {
  width: 28px;
  height: 1px;
  background: var(--white);
  transition: all 0.3s ease;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* ─── HERO SECTION ─── */
.hero {
  height: 100vh;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(201, 168, 76, 0.04) 0%,
      transparent 50%
    ),
    linear-gradient(
      180deg,
      var(--black) 0%,
      var(--rich-black) 50%,
      var(--black) 100%
    );
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridFloat 20s linear infinite;
}
@keyframes gridFloat {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(80px, 80px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 1100px;
}
.hero-season {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.5s ease forwards;
}
.hero-season::before,
.hero-season::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  opacity: 0;
  animation: heroReveal 1.2s 0.8s ease forwards;
}
.hero-title-line {
  display: block;
  overflow: hidden;
}
.hero-title .fashion {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hero-title .week {
  color: var(--gold);
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--pearl);
  letter-spacing: 0.05em;
  margin: 25px 0 15px;
  opacity: 0;
  animation: fadeUp 1s 1.2s ease forwards;
}
.hero-tagline {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeUp 1s 1.4s ease forwards;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 1.6s ease forwards;
}
.btn {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 18px 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--pearl);
  border: none;
  padding: 18px 30px;
}
.btn-ghost:hover {
  color: var(--gold);
}
.btn-arrow {
  transition: transform 0.3s ease;
}
.btn:hover .btn-arrow {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  animation: fadeUp 1s 2s ease forwards;
}
.hero-scroll-text {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--smoke);
  writing-mode: vertical-rl;
  margin-bottom: 15px;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  margin: 0 auto;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}
@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── MARQUEE TICKER ─── */
.ticker {
  background: var(--gold);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: tickerScroll 30s linear infinite;
}
.ticker-item {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--black);
  border-radius: 50%;
}
@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ─── SECTION STYLES ─── */
.section {
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 80px);
  position: relative;
}
.section-dark {
  background: var(--rich-black);
}
.section-darker {
  background: var(--black);
}
.section-gold {
  background: var(--charcoal);
}

.section-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.section-label::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 30px;
}
.section-title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}
.section-desc {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.8;
  color: var(--pearl);
  max-width: 700px;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 60px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}
.about-feature {
  padding: 35px;
  border: 1px solid var(--gunmetal);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.about-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.about-feature:hover {
  border-color: rgba(201, 168, 76, 0.3);
}
.about-feature:hover::before {
  transform: scaleX(1);
}
.about-feature-icon {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 15px;
  line-height: 1;
}
.about-feature h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.about-feature p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.6;
}
.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--gunmetal);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-top: 5px;
}

/* ─── PARTICIPATE SECTION ─── */
.participate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 60px;
}
.participate-card {
  padding: 60px 40px;
  border: 1px solid var(--gunmetal);
  border-right: none;
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
}
.participate-card:last-child {
  border-right: 1px solid var(--gunmetal);
}
.participate-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(201, 168, 76, 0.03);
  transition: height 0.6s ease;
}
.participate-card:hover::after {
  height: 100%;
}
.participate-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
}
.participate-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gunmetal);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.5s ease;
}
.participate-card:hover .participate-number {
  color: var(--gold);
}
.participate-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}
.participate-card .card-for {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 25px;
}
.participate-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.participate-card li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--pearl);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.participate-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.8rem;
}
.participate-card .card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 35px;
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.participate-card .card-btn:hover {
  border-bottom-color: var(--gold);
}

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--gold);
  padding: 60px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.cta-strip h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  letter-spacing: 0.1em;
  color: var(--black);
}
.cta-strip p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(0, 0, 0, 0.7);
}
.cta-strip .btn-dark {
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 18px 45px;
  text-decoration: none;
  transition: all 0.4s ease;
}
.cta-strip .btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* ─── DESIGNER PROGRAM ─── */
.designer-hero {
  padding: clamp(120px, 15vw, 200px) clamp(20px, 5vw, 80px)
    clamp(80px, 10vw, 120px);
  text-align: center;
  position: relative;
  background: linear-gradient(
    180deg,
    var(--black) 0%,
    var(--charcoal) 50%,
    var(--black) 100%
  );
}
.page-hero-number {
  font-family: var(--font-heading);
  font-size: clamp(6rem, 15vw, 12rem);
  color: rgba(201, 168, 76, 0.05);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
}
.format-card {
  padding: 45px 30px;
  text-align: center;
  border: 1px solid var(--gunmetal);
  border-right: none;
  transition: all 0.4s ease;
  position: relative;
}
.format-card:last-child {
  border-right: 1px solid var(--gunmetal);
}
.format-card:hover {
  background: rgba(201, 168, 76, 0.03);
  border-color: rgba(201, 168, 76, 0.2);
}
.format-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.2rem;
  transition: all 0.4s ease;
}
.format-card:hover .format-icon {
  background: var(--gold);
}
.format-card h4 {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.format-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.5;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-timeline::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: var(--gunmetal);
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  background: var(--black);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}
.process-step:hover .step-number {
  background: var(--gold);
  color: var(--black);
}
.process-step h4 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.process-step p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.4;
}

/* Deliverables */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.deliverable {
  padding: 30px;
  background: rgba(201, 168, 76, 0.02);
  border: 1px solid var(--gunmetal);
  text-align: center;
  transition: all 0.4s ease;
}
.deliverable:hover {
  border-color: rgba(201, 168, 76, 0.3);
}
.deliverable-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.deliverable h4 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── EXHIBITION SECTION ─── */
.stall-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.stall-card {
  padding: 40px 25px;
  border: 1px solid var(--gunmetal);
  text-align: center;
  position: relative;
  transition: all 0.5s ease;
}
.stall-card.featured {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.03);
}
.stall-card.featured::before {
  content: "POPULAR";
  position: absolute;
  top: -1px;
  right: 20px;
  font-family: var(--font-ui);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  background: var(--gold);
  color: var(--black);
  padding: 5px 12px;
  font-weight: 700;
}
.stall-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-5px);
}
.stall-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.stall-type {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 20px;
}
.stall-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stall-features li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--silver);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.stall-features li:last-child {
  border: none;
}
.stall-btn {
  display: inline-block;
  margin-top: 25px;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.4s ease;
}
.stall-btn:hover {
  background: var(--gold);
  color: var(--black);
}

.categories-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.category-tag {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--gunmetal);
  color: var(--pearl);
  transition: all 0.3s ease;
}
.category-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── SPONSORS SECTION ─── */
.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}
.sponsor-tier {
  padding: 50px 35px;
  border: 1px solid var(--gunmetal);
  text-align: center;
  transition: all 0.5s ease;
}
.sponsor-tier:hover {
  border-color: rgba(201, 168, 76, 0.3);
}
.tier-badge {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  padding: 8px 20px;
  border: 1px solid var(--gold);
  display: inline-block;
  margin-bottom: 25px;
}
.sponsor-tier h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.sponsor-tier ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sponsor-tier li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--pearl);
  line-height: 1.4;
}

.sponsor-benefits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  border: 1px solid var(--gunmetal);
}
.sponsor-benefit {
  padding: 35px 20px;
  text-align: center;
  border-right: 1px solid var(--gunmetal);
  transition: all 0.4s ease;
}
.sponsor-benefit:last-child {
  border-right: none;
}
.sponsor-benefit:hover {
  background: rgba(201, 168, 76, 0.03);
}
.benefit-icon {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.sponsor-benefit h5 {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── TEAM SECTION ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 60px;
}
.team-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid transparent;
  transition: all 0.5s ease;
}
.team-card:hover {
  border-color: var(--gunmetal);
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--charcoal);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  border: 1px solid var(--gunmetal);
  transition: border-color 0.4s ease;
}
.team-card:hover .team-avatar {
  border-color: var(--gold);
}
.team-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.team-card .team-role {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.team-card p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.5;
}

/* ─── CONTACT SECTION ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.contact-item h4 {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.contact-item p,
.contact-item a {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--pearl);
  text-decoration: none;
  line-height: 1.6;
}
.contact-item a:hover {
  color: var(--gold);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: transparent;
  border: 1px solid var(--gunmetal);
  color: var(--white);
  padding: 15px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-group select option {
  background: var(--dark);
}
.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 18px 45px;
  cursor: pointer;
  transition: all 0.4s ease;
  align-self: flex-start;
}
.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.3);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gunmetal);
  padding: 80px clamp(20px, 5vw, 80px) 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  margin-bottom: 15px;
}
.footer-brand p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 1.7;
  max-width: 350px;
}
.footer-col h5 {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--gunmetal);
  flex-wrap: wrap;
  gap: 20px;
}
.footer-copyright {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--smoke);
}
.footer-legal {
  display: flex;
  gap: 25px;
}
.footer-legal a {
  font-family: var(--font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--smoke);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-legal a:hover {
  color: var(--pearl);
}

/* ─── PAGE NAV ─── */
.page-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--gunmetal);
  background: var(--rich-black);
  position: sticky;
  top: 64px;
  z-index: 100;
}
.page-nav a {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  padding: 18px 30px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.page-nav a:hover,
.page-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ─── DIVIDER ─── */
.divider {
  height: 1px;
  background: var(--gunmetal);
  margin: 0;
  position: relative;
}
.divider-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .participate-grid {
    grid-template-columns: 1fr;
  }
  .participate-card {
    border-right: 1px solid var(--gunmetal);
  }
  .formats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stall-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sponsor-tiers {
    grid-template-columns: 1fr;
  }
  .sponsor-benefits {
    grid-template-columns: repeat(3, 1fr);
  }
  .sponsor-benefit:nth-child(3) {
    border-right: none;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .process-timeline {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .process-timeline::before {
    display: none;
  }
  .deliverables-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav {
    padding: 15px 20px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 280px;
    justify-content: center;
  }
  .cta-strip {
    padding: 40px 30px;
    flex-direction: column;
    text-align: center;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .about-stats {
    flex-direction: column;
    gap: 30px;
  }
  .formats-grid {
    grid-template-columns: 1fr;
  }
  .stall-grid {
    grid-template-columns: 1fr;
  }
  .sponsor-benefits {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .page-nav {
    overflow-x: auto;
  }
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .sponsor-benefits {
    grid-template-columns: 1fr;
  }
  .sponsor-benefit {
    border-right: none;
    border-bottom: 1px solid var(--gunmetal);
  }
  .sponsor-benefit:last-child {
    border-bottom: none;
  }
  .categories-flex {
    justify-content: center;
  }
}

/* Smooth page transitions */
.page-section {
  display: none;
}
.page-section.active {
  display: block;
  animation: pageFade 0.5s ease;
}
@keyframes pageFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
