:root{
  --bg:#0b0a09;
  --gold:#d4af37;
  --text:#e8dcc6;
  --muted:#b9a98f;

  --font-head:'Playfair Display',serif;
  --font-body:'Inter',sans-serif;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
}

/* ================= FLOATING NAV ================= */
.floating-nav{
  position:fixed;
  top:24px;
  right:80px;
  z-index:1200;
}

.nav-links{
  display:flex;
  gap:26px;
  padding:12px 22px;
  background:rgba(11,10,9,.55);
  backdrop-filter:blur(16px);
  border:1px solid rgba(212,175,55,.25);
  border-radius:18px;
}

.nav-links a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
}

.nav-links a:hover{
  color:var(--gold);
}

.nav-contact{
  padding:6px 14px;
  border:1px solid var(--gold);
  border-radius:20px;
  color:var(--gold);
  margin-right:18px; /* space for translator */
}

/* ================= LOGO (LEFT – SAFE) ================= */

.brand-logo{
  position: fixed;          /* NOT absolute */
  top: 32px;
  left: 80px;
  z-index: 4000;            /* higher than nav */
}

.brand-logo img{
  height: 150px;
  width: auto;
  display: block;
  pointer-events: auto;
}

/* ================= ABOUT HERO (BROWN / GOLD) ================= */

/* ================= ABOUT HERO ================= */

.about-hero {
  position: relative;
  min-height: 70vh;
  padding: 160px 0 120px;
  background:
    radial-gradient(
      circle at top center,
      rgba(255, 102, 0, 0.22),
      transparent 60%
    ),
    linear-gradient(
      to bottom,
      #2a1a12 0%,
      #160f0c 70%,
      #0b0a09 100%
    );
  overflow: hidden;
}

/* no overlay – no image */
.about-hero-overlay {
  display: none;
}

/* content wrapper */
.about-hero-content {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

/* eyebrow — TEXT ONLY */
.about-hero-eyebrow {
  display: block;
  margin-bottom: 22px;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b89b6a; /* soft cocoa-gold */
}

/* headline — PURE TYPOGRAPHY */
.about-hero h1 {
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 600;
  line-height: 1.15;
  color: #e4d1b0; /* warm beige, NOT yellow */
  margin-bottom: 28px;
}

/* subtitle */
.about-hero p {
  font-size: 16px;
  line-height: 1.9;
  color: #c8b6a2;
  max-width: 720px;
  margin: 0 auto;
}

/* divider — subtle, elegant */
.about-hero-divider {
  width: 160px;
  height: 1px;
  margin: 54px auto 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(184,155,106,0.6),
    transparent
  );
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .about-hero {
    padding: 120px 0 100px;
  }

  .about-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 600px) {
  .about-hero h1 {
    font-size: 34px;
  }

  .about-hero p {
    font-size: 15px;
  }
}
/* ================= VISITOR QUICK STATS ================= */

.visitor-stats {
  padding: 80px 0;
  background: linear-gradient(
    to bottom,
    rgba(40, 26, 18, 0.55),
    rgba(15, 12, 10, 0.85)
  );
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  letter-spacing: 0.6px;
  color: var(--gold);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* subtle divider line under row */
.visitor-stats::after {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  margin: 50px auto 0;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212,175,55,0.6),
    transparent
  );
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}
/* ================= VISITOR GUIDE ================= */

.visitor-guide {
  padding: 120px 0;
  background: linear-gradient(
    to bottom,
    #2b1a12 0%,
    #120d0a 80%
  );
}

.guide-grid {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 32px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT TEXT */
.guide-text h2 {
  font-family: var(--font-head);
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 24px;
}

.guide-text p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #e5d8c4;
  margin-bottom: 26px;
  max-width: 520px;
}

.guide-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guide-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #e0d2bd;
}

.guide-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212,175,55,0.6);
}

/* RIGHT IMAGE */
.guide-media {
  position: relative;
}

.gold-frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.6);
}

.gold-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212,175,55,0.6);
  border-radius: 26px;
  pointer-events: none;
}

.gold-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 950px) {
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .guide-text h2 {
    font-size: 32px;
  }
}
/* ================= WHAT YOU’LL EXPERIENCE ================= */
.experience{
  padding: 90px 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(212,175,55,.10), transparent 55%),
    radial-gradient(circle at 85% 65%, rgba(140,86,40,.18), transparent 52%),
    linear-gradient(180deg, #0f0b09 0%, #0b0a09 100%);
  position: relative;
  overflow: hidden;
}

.experience::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,.08), transparent 55%);
  pointer-events:none;
}

.experience .container{
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-head{
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head h2{
  font-family: var(--font-head);
  font-size: 42px;
  line-height: 1.15;
  color: #e6c67a; /* warm gold */
  margin: 0 0 14px;
  letter-spacing: .2px;
}

.section-head p{
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #cbbfb2; /* warm muted beige */
}

/* grid */
.cards-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

/* card */
.info-card{
  position: relative;
  padding: 22px 20px 20px;
  border-radius: 18px;
  background: rgba(20, 14, 11, .68);
  border: 1px solid rgba(212,175,55,.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.info-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(212,175,55,.10), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(212,175,55,.10), transparent 55%);
  opacity: .9;
  pointer-events:none;
}

.info-card::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  top:0;
  height:2px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,.75), transparent);
  opacity: .55;
  pointer-events:none;
}

.info-card h3{
  position: relative;
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #f2e6d6;
}

.info-card p{
  position: relative;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #b9a98f;
}

/* hover */
.info-card:hover{
  transform: translateY(-6px);
  border-color: rgba(212,175,55,.42);
  background: rgba(26, 18, 14, .78);
}

/* responsive */
@media (max-width: 1024px){
  .cards-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 560px){
  .experience{
    padding: 70px 0;
  }
  .section-head{
    text-align: left;
    margin-bottom: 26px;
  }
  .section-head h2{
    font-size: 34px;
  }
  .cards-grid{
    grid-template-columns: 1fr;
  }
}
/* ================= WHO SHOULD ATTEND ================= */

.who-attend{
  padding: 90px 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 0, 0, 0.12), transparent 55%),
    linear-gradient(180deg, #2a1a12 0%, #1a100b 100%);
  position: relative;
}

.who-attend .container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* GRID */
.attend-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

/* IMAGE */
.attend-media .gold-frame{
  padding: 6px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    #d4af37,
    #8c5a2b,
    #d4af37
  );
}

.attend-media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  background: #000;
}

/* TEXT */
.attend-text h2{
  font-size: 42px;
  margin-bottom: 14px;
  color: #e6c67a;
  font-family: var(--font-head);
}

.attend-text p{
  font-size: 15px;
  line-height: 1.9;
  color: #e0d4c5;
  max-width: 520px;
}

/* TAGS */
.tag-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.tag{
  padding: 8px 14px;
  font-size: 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.35);
  color: #f1e2c8;
  backdrop-filter: blur(6px);
}

/* NOTE */
.attend-text .note{
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.8;
  color: #bda98b;
  border-left: 2px solid rgba(212,175,55,0.45);
  padding-left: 14px;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .attend-grid{
    grid-template-columns: 1fr;
  }

  .attend-text{
    text-align: left;
  }
}

@media (max-width: 560px){
  .who-attend{
    padding: 70px 0;
  }

  .attend-text h2{
    font-size: 34px;
  }
}
/* ================= VENUE & ACCESS ================= */

.venue {
  padding: 120px 0;
  background: linear-gradient(
    to bottom,
    #0b0a09 0%,
    #120c08 55%,
    #0b0a09 100%
  );
}

/* GRID CONTAINER */
.venue-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 80px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );

  border-radius: 28px;
  border: 1px solid rgba(212,175,55,0.28);
}

/* TEXT SIDE */
.venue-text h2 {
  font-size: 38px;
  font-weight: 500;
  color: #d4af37;
  margin-bottom: 22px;
}

.venue-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #d8ccb6;
  max-width: 520px;
  margin-bottom: 26px;
}

/* LIST */
.venue-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.venue-list li {
  font-size: 14px;
  color: #cfc2a8;
  margin-bottom: 10px;
}

.venue-list strong {
  color: #e6c67a;
  font-weight: 500;
}

/* ================= VENUE & ACCESS ================= */

.venue {
  padding: 120px 0;
  background: linear-gradient(
    to bottom,
    #0b0a09 0%,
    #120c08 55%,
    #0b0a09 100%
  );
}

/* GRID */
.venue-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 80px;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.015)
  );

  border-radius: 28px;
  border: 1px solid rgba(212,175,55,0.28);
}

/* TEXT */
.venue-text h2 {
  font-size: 38px;
  font-weight: 500;
  color: #d4af37;
  margin-bottom: 22px;
}

.venue-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #d8ccb6;
  max-width: 520px;
  margin-bottom: 26px;
}

/* LIST */
.venue-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.venue-list li {
  font-size: 14px;
  color: #cfc2a8;
  margin-bottom: 10px;
}

.venue-list strong {
  color: #e6c67a;
  font-weight: 500;
}

/* ================= REAL GOLD BUTTONS ================= */

.venue-actions {
  display: flex;
  gap: 18px;
}

/* BASE */
.venue-actions .btn {
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;

  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition: all 0.25s ease;
}

/* PRIMARY GOLD */
.venue-actions .btn-primary {
  background: linear-gradient(
    135deg,
    #f0d98a,
    #d4af37,
    #b8922e
  );

  color: #0b0a09;
  border: 1px solid rgba(212,175,55,0.95);

  box-shadow:
    0 6px 18px rgba(212,175,55,0.35),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

.venue-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(212,175,55,0.45),
    inset 0 1px 0 rgba(255,255,255,0.55);
}

/* SECONDARY GOLD OUTLINE */
.venue-actions .btn-ghost {
  background: transparent;
  color: #e6c67a;

  border: 1px solid rgba(212,175,55,0.8);
}

.venue-actions .btn-ghost:hover {
  background: rgba(212,175,55,0.15);
  transform: translateY(-2px);
}

/* IMAGE */
.venue-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.venue-frame {
  padding: 2px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(212,175,55,0.7),
    rgba(212,175,55,0.15)
  );
}

.venue-frame img {
  display: block;
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .venue-grid {
    grid-template-columns: 1fr;
    padding: 60px 40px;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .venue-grid {
    grid-template-columns: 1fr;
    padding: 60px 40px;
  }

  .venue-text p {
    max-width: 100%;
  }
}
/* ================= FAQ ================= */
/* ================= FAQ ================= */

.faq {
  padding: 120px 0;
  background: linear-gradient(
    to bottom,
    #120c08 0%,
    #0b0a09 100%
  );
}

/* ---------- Section Head ---------- */
.faq .section-head {
  max-width: 680px;
  margin: 0 auto 80px;
  text-align: center;
}

.faq .section-head h2 {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 14px;
}

.faq .section-head p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

/* ---------- FAQ Grid ---------- */
.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

/* ---------- FAQ Item ---------- */
.faq-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 18px;
  overflow: hidden;
}

/* Question */
.faq-item summary {
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;

  font-size: 15px;
  font-weight: 500;
  color: #e6c67a;

  display: flex;
  align-items: center;
  justify-content: space-between;

  transition: background 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Plus / Minus */
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.25s ease;
}

/* Open State */
.faq-item[open] summary {
  background: rgba(212, 175, 55, 0.06);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

/* Answer */
.faq-item p {
  padding: 0 26px 24px;
  font-size: 14px;
  line-height: 1.75;
  color: #d6cab4;
}

/* ---------- FAQ CTA ---------- */
.faq-cta {
  margin-top: 90px;
  text-align: center;
}

.faq-cta p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* CTA Button */
.faq-cta .btn {
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    #e6c67a,
    #c9a23a,
    #b8922e
  );

  color: #0b0a09;
  border: 1px solid rgba(212, 175, 55, 0.9);

  box-shadow:
    0 6px 18px rgba(212, 175, 55, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.35);

  transition: all 0.25s ease;
}

.faq-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(212, 175, 55, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .faq {
    padding: 90px 0;
  }

  .faq .section-head h2 {
    font-size: 34px;
  }
}

/* ================= Footer================= */

.site-footer {
  padding: 40px 20px;
  background: #0b0a09; /* same as site background */
  border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-flex {
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: center;      /* center horizontally */
  text-align: center;
  gap: 8px;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
  color: #bdbdbd;
  line-height: 1.6;
}

.site-footer strong {
  color: #ffffff;
  font-weight: 500;
}
