/* ===== BASE ===== */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #120b09;
  color: white;
}

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

/* ===== HEADER ===== */
.topbar {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.pill-nav {
  background: white;
  padding: 10px 18px;
  border-radius: 12px;
  display: flex;
  gap: 22px;
}

.pill-link {
  color: #111;
  font-size: 18px;
}

.pill-link.active {
  color: #3b35ff;
}

/* ===== QUOTE ===== */
.quote-line {
  text-align: center;
  font-style: italic;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.8);
}

.quote-line p {
  transition: opacity 0.6s ease;
}


/* ===== HERO ===== */
.hero {
  position: relative;
  height: 75vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5),
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.5)
  );
}

.hero-cta {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.btn-hero {
  background: #c9b48e;
  color: #111;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
}

/* ===== SECTIONS ===== */
.section {
  width: min(1000px, 90vw);
  margin-top: 10px auto;
  margin: 30px auto;
}

.center {
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.text-block h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.small {
  font-size: 14px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ===== VIDEO ===== */
.video-frame {
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-frame.small {
  aspect-ratio: 16/9;
}

.video-placeholder {
  opacity: 0.7;
}

/* ===== BUTTON ===== */
.btn-ticket {
  background: #c9b48e;
  color: #111;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
}

/* ===== TEXT ===== */
.text-long {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

.center-image {
  max-width: 500px;
  width: 100%;
}

/* ===== TWO VIDEOS ===== */
.two-videos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.vid-col h3 {
  text-align: center;
  margin-bottom: 10px;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  margin: 80px 0 40px;
  font-size: 13px;
  opacity: 0.8;
}

.essence-logo {
  max-width: 300px;
  margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
  .split,
  .two-videos {
    grid-template-columns: 1fr;
  }
}



/* ===== EXCITING NEWS (WIX-MATCHED) ===== */

.exciting {
  padding-top: 40px;
}

.exciting-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT */
.exciting-title {
  font-size: 52px;
  font-weight: 500;
  margin: 0 0 14px;
}

.exciting-sub p {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.8;
}

.exciting-sub .strong {
  opacity: 1;
}

.btn-ticket {
  display: inline-block;
  margin: 18px 0 20px;
  background: #c9b48e;
  color: #111;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
}

.exciting-text {
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.85;
}

.exciting-text p {
  margin: 10px 0;
}

/* RIGHT */
.exciting-right .video-frame {
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

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