/* =========================
   VARIABLES & COLOR PALETTE
   ========================= */

:root {
  /* Luxury Gold/Champagne Palette */
  --background: #0d0d0d;
  --foreground: #faf9f7;
  --card: #1a1a1a;
  --primary: #c9a961;
  --primary-foreground: #0d0d0d;
  --accent: #d4af37;
  --muted: #404040;
  --muted-foreground: #b3b3b3;
  --border: #2a2a2a;
  --input: #1a1a1a;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius: 0.625rem;

  /* Z-index */
  --z-header: 50;
  --z-modal: 100;
}

/* =========================
   RESET & BASE STYLES
   ========================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
}

/* =========================
   HEADER & NAVIGATION
   ========================= */

.header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  flex-shrink: 0;
}

.logo-img {
  height: 65px;
  width: auto;
}

.influencer-icon img {
  width: 100%;
  /* taille de l’image */
  height: auto;
  /* taille de l’image */
  object-fit: contain;
  /* évite la déformation */
  display: block;
  margin: 0 auto;
  /* centre l’image */
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  width: 24px;
  height: 24px;
}

.hamburger {
  width: 24px;
  height: 24px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 249, 247, 0.8);
  text-decoration: none;
  transition: color 300ms ease;
}

.nav-link:hover {
  color: var(--primary);
}

/* =========================
   HERO SECTION
   ========================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--background);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 5rem;
  right: 2.5rem;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(96px);
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: 5rem;
  left: 2.5rem;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  background: var(--primary);
  filter: blur(96px);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1rem;
  text-align: center;
}

.event-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(201, 169, 97, 0.15);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
  }
}

.title-highlight {
  display: block;
  color: var(--primary);
  margin-top: 1rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(250, 249, 247, 0.8);
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* =========================
   COUNTDOWN
   ========================= */

.countdown-container {
  background-color: var(--card);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: calc(var(--radius) + 0.5rem);
  padding: 2rem;
  margin: 3rem auto;
  max-width: 600px;
  backdrop-filter: blur(4px);
}

.countdown-container2 {
  background-color: var(--card);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: calc(var(--radius) + 0.5rem);
  padding: 0rem;
  margin: 3rem auto;
  max-width: 600px !important;
  backdrop-filter: blur(4px);
  text-align: center;
}

.countdown-label {
  color: rgba(201, 169, 97, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

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

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .countdown-value {
    font-size: 3rem;
  }
}

.countdown-label-small {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 249, 247, 0.6);
  font-weight: 600;
}

.event-location {
  color: rgba(250, 249, 247, 0.7);
  margin-bottom: 3rem;
  font-weight: 500;
}

/* =========================
   BUTTONS
   ========================= */

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 300ms ease;
  font-size: 0.875rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  background-color: rgba(201, 169, 97, 0.9);
  transform: scale(1.05);
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: rgba(201, 169, 97, 0.1);
}

.hero-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* =========================
   SECTIONS & CONTAINER
   ========================= */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.75rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: rgba(250, 249, 247, 0.8);
  line-height: 1.7;
  max-width: 42rem;
}

.subsection-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

/* =========================
   ABOUT SECTION
   ========================= */

.about {
  position: relative;
  background-image: url("images/about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 0;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  /* opacité du voile noir */
  z-index: 1;
}

.about .container {
  position: relative;
  z-index: 2;
}



.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
}

.about-text {
  color: rgba(250, 249, 247, 0.8);
  line-height: 1.7;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgba(250, 249, 247, 0.8);
}

.list-icon {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.125rem;
  margin-right: 0.5rem;
}

.phase-box {
  border-left: 4px solid;
  padding: 0.75rem 0 0.75rem 1.5rem;
}

.phase-1 {
  border-color: var(--primary);
}

.phase-2 {
  border-color: var(--accent);
}

.phase-title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.phase-text {
  font-size: 0.875rem;
  color: rgba(250, 249, 247, 0.75);
}

/* =========================
   VISION SECTION
   ========================= */

.vision {
  padding: 5rem 0;
  background-color: var(--background);
}

.vision-title {
  text-align: center;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .vision-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vision-card {
  background-color: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  transition: all 300ms ease;
  border-color: rgba(201, 169, 97, 0.6);
}

.vision-card:hover {
  border-color: rgba(201, 169, 97, 0.6);
}

.vision-icon {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.vision-card-title {
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--foreground);
  transition: color 300ms ease;
}

.vision-card:hover .vision-card-title {
  color: var(--primary);
}

.vision-card-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.vision-opportunity {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 50%, rgba(212, 175, 55, 0.1) 100%);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.vision-opp-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--foreground);
}

.vision-opp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vision-opp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.vision-opp-subtitle {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.vision-opp-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* =========================
   INFLUENCERS SECTION
   ========================= */

.influencers {
  padding: 5rem 0;
  background-color: var(--card);
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.influencers-section {
  margin-top: 3rem;
}

.media-section {
  margin-top: 4rem;
}

.influencers-intro {
  color: rgba(250, 249, 247, 0.8);
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.highlight {
  font-weight: 700;
  color: var(--primary);
}

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

@media (min-width: 768px) {
  .influencers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .influencers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.influencer-card,
.media-card {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 300ms ease;
}

.influencer-card:hover,
.media-card:hover {
  border-color: rgba(201, 169, 97, 0.6);
}

.influencer-icon,
.media-icon {
  width: 100%;
  height: auto;
  background-color: rgba(201, 169, 97, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  transition: background-color 300ms ease;
}

.influencers-highlight {
  position: relative;
  background-image: url("images/bg-influencers.jpg");
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
}

.influencers-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  /* voile noir */
  border-radius: inherit;
  z-index: 1;
}

.influencers-highlight * {
  position: relative;
  z-index: 2;
}

.influencer-card:hover .influencer-icon,
.media-card:hover .media-icon {
  background-color: rgba(201, 169, 97, 0.25);
}

.media-icon {
  background-color: rgba(212, 175, 55, 0.15);
}

.media-card:hover .media-icon {
  background-color: rgba(212, 175, 55, 0.25);
}

.influencer-name {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.influencer-followers {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
}

.media-card .influencer-followers {
  color: var(--accent);
}

.influencer-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(250, 249, 247, 0.6);
}

.influencers-highlight {
  background-color: rgba(201, 169, 97, 0.1);
  border: 2px solid rgba(201, 169, 97, 0.4);
  padding: 2.5rem;
  border-radius: calc(var(--radius) + 0.5rem);
  text-align: center;
}

.influencers-highlight p {
  font-size: 1.125rem;
  color: var(--foreground);
}

.highlight-large {
  display: block;
  color: var(--primary);
  font-weight: 900;
  font-size: 1.5rem;
}

.total-reach {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--primary);
}

.media-total {
  text-align: center;
  color: rgba(250, 249, 247, 0.7);
  font-weight: 600;
  margin-top: 1.5rem;
}

.accent-highlight {
  color: var(--accent);
  font-weight: 900;
}

.coverage-box {
  background-color: rgba(201, 169, 97, 0.2);
  border: 2px solid rgba(201, 169, 97, 0.4);
  padding: 3rem;
  border-radius: calc(var(--radius) + 0.5rem);
  text-align: center;
  margin-top: 4rem;

  position: relative;
  background-image: url("images/bg-influencers.jpg");
  background-size: cover;
  background-position: center;
}

.coverage-label {
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.coverage-number {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--primary);
}

.coverage-subtitle {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  color: rgba(250, 249, 247, 0.8);
  font-weight: 600;
}

/* =========================
   SPONSORS SECTION
   ========================= */

.sponsors {
  padding: 5rem 0;
  background-color: var(--background);
}

.sponsors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .sponsors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sponsor-card {
  position: relative;
  border-radius: var(--radius);
  padding: 2.5rem;
  overflow: hidden;
  transition: all 500ms ease;
}

.vip-card {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.15) 0%, rgba(201, 169, 97, 0.05) 100%);
  border: 2px solid rgba(201, 169, 97, 0.5);
}

.vip-card:hover {
  border-color: var(--primary);
}

.gold-card {
  background-color: var(--card);
  border: 2px solid rgba(212, 175, 55, 0.4);
}

.gold-card:hover {
  border-color: rgba(212, 175, 55, 0.7);
}

.sponsor-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.vip-badge {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.gold-badge {
  background-color: var(--accent);
  color: var(--background);
}

.sponsor-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.sponsor-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 2rem;
}

.gold-price {
  color: var(--accent);
}

.sponsor-description {
  color: rgba(250, 249, 247, 0.8);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.sponsor-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sponsor-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(250, 249, 247, 0.9);
}

.sponsor-check,
.sponsor-check-gold {
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.sponsor-check {
  color: var(--primary);
}

.sponsor-check-gold {
  color: var(--accent);
}

.btn-sponsor,
.btn-sponsor-gold {
  width: 100%;
}

.btn-sponsor-gold {
  border: 2px solid var(--accent);
  color: var(--accent);
  background-color: transparent;
}

.btn-sponsor-gold:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

.sponsor-custom {
  background-color: var(--card);
  border: 2px solid rgba(201, 169, 97, 0.2);
  padding: 2.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.sponsor-custom-label {
  font-weight: 900;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.sponsor-custom-text {
  color: rgba(250, 249, 247, 0.8);
}

/* =========================
   GALLERY SECTION
   ========================= */

.gallery {
  padding: 5rem 0;
  background-color: var(--card);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--background);
  aspect-ratio: 1;
  border: 2px solid var(--border);
  transition: border-color 300ms ease;
  cursor: pointer;
  border-color: rgba(201, 169, 97, 0.6);
}

.gallery-item:hover {
  border-color: rgba(201, 169, 97, 0.6);
}

.gallery-placeholder {
  width: 100%;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.2) 0%, rgba(212, 175, 55, 0.2) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gallery-emoji {
  font-size: 2rem;
}

.gallery-title {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: white;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
}

.gallery-info {
  background-color: rgba(201, 169, 97, 0.05);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
}

.gallery-location {
  color: var(--foreground);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-desc {
  color: var(--muted-foreground);
}

/* =========================
   CONTACT SECTION
   ========================= */

.contact {
  padding: 5rem 0;
  background-color: var(--background);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-heading {
  font-size: 30px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.contact-text {
  color: rgba(250, 249, 247, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 20px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item-title {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.contact-link {
  color: var(--primary);
  text-decoration: none;

  transition: text-decoration 300ms ease;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  background-color: var(--card);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-input {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--background);
  color: var(--foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 300ms ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
}

.form-textarea {
  resize: vertical;
  min-height: 6rem;
}

.btn-submit {
  width: 100%;
}

.event-info-box {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.event-info-title {
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.event-info-text {
  color: rgba(250, 249, 247, 0.8);
}

/* =========================
   FOOTER
   ========================= */

.footer {
  background-color: var(--primary);
  color: var(--background);
  padding: 3rem 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--background);
}

.footer-subtitle {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--background);
}

.footer-text {
  font-size: 0.875rem;
  color: rgba(13, 13, 13, 0.7);
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  font-size: 0.875rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(13, 13, 13, 0.7);
  text-decoration: none;
  transition: color 300ms ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(13, 13, 13, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(13, 13, 13, 0.6);
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-menu.active {
    display: flex;
  }

  .section-title {
    font-size: 2rem;
  }
}


/* =========================
   INSTAGRAM REELS SECTION
   ========================= */

.instagram-reels {
  padding: 5rem 0;
  background-color: var(--background);
  border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.reels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reels-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.reel-card {
  position: relative;
  background-color: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 400ms ease;
  aspect-ratio: 9 / 16;
}

.reel-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.reel-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--background);
}

.reel-video,
.reel-iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius) + 0.5rem);
}

.reel-iframe {
  border: none;
}

.reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.reel-card:hover .reel-overlay {
  opacity: 1;
}

.reel-play-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(201, 169, 97, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-size: 1.5rem;
  transition: all 400ms ease;
  margin-bottom: 1rem;
}

.reel-card:hover .reel-play-icon {
  transform: scale(1.15);
  background-color: var(--primary);
  box-shadow: 0 0 30px rgba(201, 169, 97, 0.6);
}

.reel-title {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  padding: 0 1rem;
}

/* =========================
     VIDEO GALLERY SECTION
     ========================= */

.video-gallery {
  padding: 5rem 0;
  background-color: var(--card);
  border-top: 1px solid rgba(201, 169, 97, 0.1);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.video-card {
  position: relative;
  background-color: var(--background);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 400ms ease;
  aspect-ratio: 16 / 9;
}

.video-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.video-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 400ms ease;
  pointer-events: none;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.video-play-icon {
  width: 72px;
  height: 72px;
  background-color: rgba(201, 169, 97, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background);
  font-size: 1.75rem;
  transition: all 400ms ease;
  margin-bottom: 1rem;
}

.video-card:hover .video-play-icon {
  transform: scale(1.15);
  background-color: var(--primary);
  box-shadow: 0 0 30px rgba(201, 169, 97, 0.6);
}


/* =========================
   TICKET SECTION
   ========================= */

.ticket-section {
  padding: 5rem 0;
  background-color: var(--background);
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  text-align: center;
}

.ticket-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2.5rem;
  background-color: var(--card);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.ticket-text {
  color: rgba(250, 249, 247, 0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.ticket-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.form-group {
  text-align: left;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(250, 249, 247, 0.8);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 1rem;
  background-color: rgba(13, 13, 13, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--foreground);
  font-size: 1rem;
  transition: border-color 300ms ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(201, 169, 97, 0.2);
}

.btn-ticket {
  margin-top: 1rem;
  width: 100%;
  font-size: 1.125rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
  background-size: 300% 100%;
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid #bf953f;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-ticket:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}