/* ===== Variables & Reset ===== */
:root {
  --burgundy: #5c1a1a;
  --burgundy-dark: #3d0f0f;
  --gold: #c9a227;
  --gold-light: #e8d48b;
  --cream: #f8f1e3;
  --cream-dark: #e8dcc8;
  --text: #2a1a1a;
  --text-muted: #5a4545;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(60, 20, 20, 0.15);
  --radius: 8px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--burgundy-dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-large {
  padding: 1.1rem 2.6rem;
  font-size: 1.05rem;
}

.btn-nav {
  background: var(--gold);
  color: var(--burgundy-dark) !important;
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
}

.btn-nav:hover {
  background: var(--gold-light);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(61, 15, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.25);
  transition: background 0.3s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.main-nav a {
  color: var(--cream);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

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

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: 0.3s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--cream);
  overflow: hidden;
}

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

.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61, 15, 15, 0.55) 0%,
    rgba(61, 15, 15, 0.75) 50%,
    rgba(61, 15, 15, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 4rem;
}

.tagline {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-meta {
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  opacity: 0.95;
  margin-bottom: 0.6rem;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  max-width: 520px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== Sections ===== */
.section {
  padding: 5.5rem 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  color: var(--burgundy);
  margin-bottom: 0.6rem;
}

.section-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* ===== About ===== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  color: var(--burgundy);
  margin-bottom: 1.2rem;
  line-height: 1.2;
}

.lead {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.about-text strong {
  color: var(--burgundy);
}

blockquote {
  margin: 2rem 0 0;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
}

blockquote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text) !important;
  margin-bottom: 0.5rem !important;
}

blockquote cite {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: normal;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--burgundy);
}

.about-image img {
  width: 100%;
}

/* ===== Experience ===== */
.experience {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

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

.card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 4px solid var(--gold);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(60, 20, 20, 0.18);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--burgundy);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ===== Venue ===== */
.venue {
  background: var(--burgundy-dark);
  color: var(--cream);
}

.venue .section-title {
  color: var(--gold-light);
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  margin-top: 2.5rem;
}

.venue-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.venue-info h3:first-child {
  margin-top: 0;
}

.venue-info p {
  opacity: 0.9;
}

.note {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.4rem;
}

.times-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.8rem 0 0.5rem;
}

.times-list li {
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}

.daily {
  font-size: 0.95rem;
  opacity: 0.85;
}

.detail-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1rem;
}

.detail-box h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.detail-box ul {
  padding-left: 1.1rem;
}

.detail-box li {
  list-style: disc;
  margin-bottom: 0.35rem;
  opacity: 0.9;
  font-size: 0.95rem;
}

.detail-box p {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* ===== Tickets ===== */
.tickets {
  background: var(--white);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.price-card {
  background: var(--cream);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.price-card.featured {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--gold);
  transform: scale(1.03);
}

.price-card.featured:hover {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--burgundy-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.price-card.featured h3 {
  color: var(--gold-light);
}

.price {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.1;
}

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

.price-note {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 0.4rem;
}

.tickets-cta {
  text-align: center;
}

.booking-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--burgundy-dark);
  color: var(--cream);
  padding: 3rem 0 2rem;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  text-align: center;
}

.footer-title {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--gold-light);
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.copyright {
  font-size: 0.8rem;
  opacity: 0.55;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 360px;
    margin: 0 auto;
  }

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

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

  .price-cards {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto 2.5rem;
  }

  .price-card.featured {
    transform: none;
  }
}

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

  .main-nav {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--burgundy-dark);
    padding: 1.5rem;
    display: none;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }

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

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2.8rem;
  }
}
