/* ========================================
   Driven By Taste — Global Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --dark: #111113;
  --dark-surface: #1a1a1d;
  --gold: #c9a84c;
  --gold-light: #d4ba6a;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --white: #f5f5f3;
  --white-dim: rgba(245, 245, 243, 0.6);
  --white-muted: rgba(245, 245, 243, 0.35);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', 'Helvetica Neue', sans-serif;
}

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

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

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   Navigation
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-brand span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--white-dim);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.3) 0%,
    rgba(10, 10, 10, 0.1) 40%,
    rgba(10, 10, 10, 0.6) 80%,
    rgba(10, 10, 10, 1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 2rem;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-brands-box {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 2.5rem;
  margin-bottom: 1.5rem;
}

.hero-brought {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 0.5rem;
}

.hero-brands {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0;
  line-height: 1.4;
}

.hero-series-tag {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-top: 1.5rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: background 0.4s, color 0.4s;
}

.btn:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-filled {
  background: var(--gold);
  color: var(--black);
}

.btn-filled:hover {
  background: var(--gold-light);
  color: var(--black);
}

/* ========================================
   Section Layouts
   ======================================== */

section {
  padding: 7rem 3rem;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 620px;
  line-height: 1.8;
}

/* Divider */
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 4rem auto;
  opacity: 0.5;
}

/* ========================================
   About / Intro
   ======================================== */

.about {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.about .section-text {
  margin: 0 auto;
}

/* ========================================
   Partners Split
   ======================================== */

.partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1400px;
  margin: 0 auto;
}

.partner-card {
  position: relative;
  min-height: 550px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.partner-card-bg {
  position: absolute;
  inset: 0;
}

.partner-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.partner-card:hover .partner-card-bg img {
  transform: scale(1.05);
}

.partner-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.1) 0%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.partner-card-wide {
  grid-column: 1 / -1;
  min-height: 400px;
}

.partner-card-content {
  position: relative;
  z-index: 2;
  padding: 3rem;
}

.partner-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.partner-card-content p {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.7;
  max-width: 400px;
}

/* ========================================
   Experience Section (features)
   ======================================== */

.experience {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.feature {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  transition: border-color 0.4s, background 0.4s;
}

.feature:hover {
  border-color: rgba(201, 168, 76, 0.35);
  background: var(--gold-dim);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  line-height: 1;
}

.feature h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.feature p {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.7;
}

/* ========================================
   Gallery
   ======================================== */

.gallery {
  padding: 7rem 0;
  text-align: center;
}

.gallery .section-eyebrow,
.gallery .section-heading {
  padding: 0 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin-top: 4rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.8);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* ========================================
   Tickets
   ======================================== */

.tickets {
  text-align: center;
  padding: 8rem 3rem;
  background: var(--dark-surface);
}

.tickets .section-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 2.5rem;
}

.tickets-venue {
  margin-bottom: 3rem;
}

.tickets-venue h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.tickets-venue p {
  font-size: 1rem;
  color: var(--white-dim);
  line-height: 1.7;
}

.venue-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.ticket-price {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.ticket-credit {
  font-size: 0.95rem;
  color: var(--white-dim);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-style: italic;
}

.ticket-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.ticket-qty label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.qty-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.2rem;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  font-family: var(--font-body);
}

.qty-btn:hover {
  background: var(--gold-dim);
}

.qty-control input {
  width: 50px;
  text-align: center;
  background: none;
  border: none;
  border-left: 1px solid rgba(201, 168, 76, 0.3);
  border-right: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  height: 44px;
  -moz-appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.btn-lg {
  padding: 1.25rem 3.5rem;
  font-size: 0.9rem;
}

/* ========================================
   CTA / Inquiries
   ======================================== */

.cta {
  text-align: center;
  padding: 8rem 3rem;
  background: var(--dark);
}

.cta .section-heading {
  margin-bottom: 1rem;
}

.cta .section-text {
  margin: 0 auto 2.5rem;
}

/* ========================================
   Footer
   ======================================== */

.footer {
  padding: 4rem 3rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logos img {
  height: 40px;
  opacity: 0.6;
  transition: opacity 0.3s;
  filter: brightness(0) invert(1);
}

.footer-logos img:hover {
  opacity: 1;
}

.footer-logos .divider-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--white-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--white-muted);
  letter-spacing: 0.05em;
}

/* ========================================
   Animations (scroll reveal)
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Mobile Responsive
   ======================================== */

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 101;
  }

  section {
    padding: 5rem 1.5rem;
  }

  .partners {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: 400px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    padding: 5rem 0;
  }

  .footer-logos {
    gap: 1.5rem;
  }

  .footer-logos img {
    height: 30px;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}
