/*
Theme Name: Circus Techno
Theme URI: https://circustechno.com
Author: Circus Techno
Description: Circus Techno — a traveling nightlife experience. For one night, the Club is the Circus. Single-page landing theme with glitch aesthetic.
Version: 1.7.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
Text Domain: circus-techno
*/

/* ============================================
   CIRCUS TECHNO — Clean Static Site Stylesheet
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --onyx: #080808;
  --rose: #FF007F;
  --gold: #C5A059;
  --velvet: #2D0B2E;
  --white: #fafafa;
  --font-heading: 'Barlow', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-display: 'Anton', 'Inter Tight', sans-serif;
  --font-mono: 'Silkscreen', monospace;
}

@font-face {
  font-family: 'Cristik';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('assets/fonts/Cristik.woff2') format('woff2');
}

@font-face {
  font-family: 'Silkscreen';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('assets/fonts/Silkscreen-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Silkscreen';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('assets/fonts/Silkscreen-Bold.woff2') format('woff2');
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--onyx);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Colors --- */
.text-rose { color: var(--rose); }
.text-gold { color: var(--gold); }
.text-glow-pink { text-shadow: 0 0 40px rgba(255, 0, 127, 0.4), 0 0 80px rgba(255, 0, 127, 0.15); }
.text-glow-gold { text-shadow: 0 0 40px rgba(197, 160, 89, 0.4), 0 0 80px rgba(197, 160, 89, 0.15); }

/* --- Scroll Progress --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
  width: 0%;
}

/* --- Buttons --- */
.btn-tickets {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.3s;
}

.btn-tickets-nav {
  padding: 0.625rem 1.5rem;
  font-size: 0.75rem;
}

.btn-tickets-hero {
  padding: 1rem 2.5rem;
}

.btn-tickets-large {
  padding: 1.25rem 3rem;
}

.btn-tickets-tour {
  padding: 0.75rem 2rem;
  font-size: 0.75rem;
}

.btn-tickets:hover {
  background: rgba(255, 0, 127, 0.85);
}

.btn-soon {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Pulse glow */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 127, 0.4), 0 0 40px rgba(255, 0, 127, 0.15); }
  50% { box-shadow: 0 0 30px rgba(255, 0, 127, 0.6), 0 0 60px rgba(255, 0, 127, 0.25); }
}
.pulse-glow, .btn-tickets {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* --- Navbar --- */
nav#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.5s, backdrop-filter 0.5s;
}
nav#navbar.scrolled {
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-main {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.875rem;
  font-family: 'Cristik', sans-serif;
}
.logo-sub {
  color: var(--rose);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  padding-bottom: 0.25rem;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--rose); }

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: color 0.2s;
}
.menu-toggle:hover span { background: var(--rose); }

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}
.menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.menu-close:hover { color: var(--rose); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--rose); }

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-video-desktop, .hero-video-mobile {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-video-desktop { display: none; }
.hero-video-mobile { display: block; }

@media (min-width: 769px) {
  .hero-video-desktop { display: block; }
  .hero-video-mobile { display: none; }
}

.hero-video-desktop iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  border: 0;
}
.hero-video-mobile iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 177.78vw;
  min-width: 100%;
  min-height: 100%;
  border: 0;
}
.hero-img-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  z-index: 1;
}
.hero-video-desktop iframe, .hero-video-mobile iframe {
  z-index: 1;
}
@media (min-width: 769px) {
  .hero-video-desktop iframe { z-index: 2; }
  .hero-video-mobile iframe { z-index: 1; }
}
@media (max-width: 768px) {
  .hero-video-mobile iframe { z-index: 2; }
  .hero-video-desktop iframe { z-index: 1; }
}

.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.7), rgba(8,8,8,0.5), var(--onyx));
  z-index: 3;
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45,11,46,0.3), transparent, rgba(255,0,127,0.1));
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
.hero-eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
}
.hero-title {
  text-shadow: 0 0 40px rgba(255, 0, 127, 0.4), 0 0 80px rgba(255, 0, 127, 0.15);
}
.hero-title-main {
  display: block;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  line-height: 1;
  font-family: var(--font-heading);
  font-size: 3rem;
}
.hero-title-sub {
  display: block;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 0.25rem;
  font-family: 'Cristik', sans-serif;
  font-size: 2.25rem;
}
@media (min-width: 640px) {
  .hero-title-main { font-size: 3rem; }
  .hero-title-sub { font-size: 2.25rem; }
}
.hero-desc {
  margin-top: 2rem;
  letter-spacing: 0.05em;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
  font-weight: 300;
  font-family: 'Cristik', sans-serif;
}
.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
.scroll-indicator span:first-child {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.scroll-arrow {
  color: rgba(255,0,127,0.6);
  font-size: 1.25rem;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* --- Section common --- */
section { padding: 6rem 0; }
@media (min-width: 768px) {
  section { padding: 8rem 0; }
}
.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: var(--font-mono);
  color: rgba(255,255,255,0.6);
}
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
@media (min-width: 768px) { .section-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .section-title { font-size: 4.5rem; } }
.section-desc {
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 1.125rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.center-cta {
  margin-top: 4rem;
  text-align: center;
}

/* --- Experience --- */
.experience .section-header { margin-bottom: 4rem; }
@media (min-width: 768px) { .experience .section-header { margin-bottom: 6rem; } }

.split-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 70vh;
  overflow: hidden;
  margin-bottom: 5rem;
}
@media (min-width: 768px) { .split-image { margin-bottom: 7rem; } }
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--onyx), transparent, transparent);
}
.split-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 3rem;
}
.split-eyebrow {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}
.split-text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 300;
}
@media (min-width: 768px) { .split-text { font-size: 1.5rem; } }

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 5rem; }
}
.detail-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.8), transparent);
}
.detail-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}
.detail-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: var(--font-mono);
}
.detail-text {
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* --- Magic --- */
.magic {
  background: var(--onyx);
  overflow: hidden;
  position: relative;
}
.magic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,11,46,0.2), transparent, transparent);
  pointer-events: none;
}
.magic .section-eyebrow { font-size: 1.125rem; font-weight: 400; }
.magic-subtitle {
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-family: 'Cristik', sans-serif;
  font-size: 5rem;
}
@media (min-width: 768px) { .magic-subtitle { font-size: 5rem; } }

.magic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .magic-grid {
    grid-template-columns: 5fr 7fr;
    gap: 1.5rem;
  }
}
.magic-portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.magic-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.magic-portrait:hover img { transform: scale(1.05); }
.magic-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.magic-wide {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.magic-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.magic-wide:hover img { transform: scale(1.05); }
.magic-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.7), transparent, transparent);
}
.magic-card-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
}
.magic-card-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--font-mono);
}
.magic-card-text {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-top: 0.5rem;
}
.magic-list {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem 3rem;
}
.magic-list-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}
.magic-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.magic-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}
.dot {
  width: 6px;
  height: 6px;
  background: var(--rose);
  flex-shrink: 0;
}

/* --- Tour --- */
.tour {
  position: relative;
  overflow: hidden;
}
.tour-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}
.tour-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tour-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.9);
}
.tour .container { position: relative; }
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3rem;
}
.tour-row {
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: all 0.5s;
}
.tour-row:hover {
  border-color: rgba(255,0,127,0.4);
  background: rgba(255,255,255,0.04);
}
.tour-row:hover .btn-tickets-tour {
  animation: pulse-glow 2s ease-in-out infinite;
}
.tour-row-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .tour-row-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
  }
}
.tour-location {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tour-pin { font-size: 0.875rem; }
.tour-city {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
@media (min-width: 768px) { .tour-city { font-size: 1.5rem; } }
.tour-country {
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  font-family: var(--font-mono);
}
.tour-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .tour-meta { gap: 1.5rem; }
  .tour-venue { font-size: 1.25rem; font-family: var(--font-mono); }
}
.tour-date { font-family: var(--font-mono); }
.tour-note {
  margin-top: 3rem;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}

/* --- Night --- */
.night {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
@media (min-width: 768px) { .night { padding: 10rem 0; } }
.night-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: rgba(255,0,127,0.05);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.night .container-narrow { position: relative; text-align: center; }
.night-normal { margin-bottom: 4rem; }
.night-normal-label {
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: var(--font-mono);
}
.night-normal-text {
  color: rgba(255,255,255,0.4);
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) { .night-normal-text { font-size: 3rem; } }
.night-divider {
  width: 1px;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, var(--rose), transparent);
  margin: 0 auto 4rem;
}
.night-techno-label {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
}
.night-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.night-list-item {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
}
@media (min-width: 768px) { .night-list-item { font-size: 3rem; } }
@media (min-width: 1024px) { .night-list-item { font-size: 3.75rem; } }
.night-close {
  margin-top: 5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 3rem;
}
.night-close-text {
  color: rgba(255,255,255,0.4);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .night-close-text { font-size: 1.125rem; } }
.night-close .btn-tickets { margin-top: 2.5rem; }

/* --- Footer --- */
.footer {
  background: var(--onyx);
  overflow: hidden;
}
.footer-morning {
  position: relative;
  width: 100%;
  height: 20rem;
  overflow: hidden;
}
@media (min-width: 768px) { .footer-morning { height: 24rem; } }
.footer-morning img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.footer-morning-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--onyx), rgba(8,8,8,0.6), transparent);
}
.footer-morning-text {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5rem;
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.footer-logo-main {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-logo-sub {
  color: var(--rose);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer-heading {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--rose); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}
.footer-bottom p {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-family: var(--font-mono);
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-bottom-links a, .footer-bottom-links button {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.footer-bottom-links a:hover, .footer-bottom-links button:hover {
  color: rgba(255,255,255,0.5);
}

/* --- Floating Tickets Button --- */
.floating-tickets {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--rose);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(255,0,127,0.4), 0 0 40px rgba(255,0,127,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  transform: translateY(20px);
}
.floating-tickets.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  animation: pulse-glow 2s ease-in-out infinite;
}
@media (min-width: 768px) {
  .floating-tickets { display: none; }
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 0.8), transform 0.8s cubic-bezier(0.4, 0, 0.2, 0.8);
  transition-delay: calc(var(--reveal-delay, 0) * 1ms);
}
.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Grain Overlay --- */
.grain-overlay::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 9998;
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--onyx); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 2px; }

/* --- Reduced Motion --- */
.reduce-motion *, .reduce-motion *::before, .reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   Elementor adapters (theme v1.1)
   Lets theme classes applied in Elementor's
   Advanced > CSS Classes style the inner elements.
   ============================================ */
.elementor-heading-title {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-shadow: inherit;
  line-height: inherit;
}
.elementor-widget.btn-tickets .elementor-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  border: none;
  border-radius: 0;
  transition: background 0.2s, box-shadow 0.3s;
}
.elementor-widget.btn-tickets .elementor-button:hover {
  background: rgba(255, 0, 127, 0.85);
}
.elementor-widget.btn-soon-el .elementor-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: default;
  pointer-events: none;
}
/* Elementor page content sits under the fixed navbar; hero handles its own height */
.site-main { background: var(--onyx); }

/* --- v1.5: hide nav Buy Tickets on mobile --- */
@media (max-width: 768px) {
  .btn-tickets-nav { display: none; }
}

/* ============================================
   v1.6: Content pages (privacy, terms, etc.)
   ============================================ */
body:not(.home) nav#navbar {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.page-plain {
  padding: 9rem 0 6rem;
  min-height: 60vh;
}
.page-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}
.page-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  color: var(--gold);
}
.page-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1.75rem 0 0.5rem;
}
.page-content p,
.page-content li {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: rgba(250, 250, 250, 0.8);
}
.page-content ul,
.page-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-content a {
  color: var(--rose);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.page-content a:hover { opacity: 0.8; }

/* ============================================
   v1.7: Elementor section headings + tour rows
   High-specificity so Elementor kit can't override
   ============================================ */

/* --- Section headings (all sections) --- */
.elementor-widget.section-eyebrow .elementor-heading-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}
.elementor-widget.section-eyebrow.text-rose .elementor-heading-title { color: var(--rose); }
.elementor-widget.section-title .elementor-heading-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.elementor-widget.section-desc p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(250, 250, 250, 0.65);
  max-width: 42rem;
}
.elementor-widget.magic-subtitle .elementor-heading-title {
  font-family: 'Cristik', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  letter-spacing: 0.08em;
  color: var(--gold);
}
.elementor-widget.hero-eyebrow .elementor-heading-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose);
}
.elementor-widget.hero-title-main .elementor-heading-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  text-transform: uppercase;
}
.elementor-widget.hero-title-sub .elementor-heading-title {
  font-family: 'Cristik', sans-serif;
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
}
.elementor-widget.detail-eyebrow .elementor-heading-title,
.elementor-widget.magic-card-eyebrow .elementor-heading-title,
.elementor-widget.magic-list-eyebrow .elementor-heading-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

/* --- European tour rows --- */
.elementor-widget.tour-city-el .elementor-heading-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  text-transform: uppercase;
  line-height: 1.1;
}
.elementor-widget.tour-city-el .elementor-heading-title span {
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.75rem !important;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 1 !important;
  margin-top: 0.35rem;
}
.elementor-widget.tour-meta-el p {
  color: rgba(250, 250, 250, 0.55);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin: 0;
}
/* Row hover accent (Elementor flex containers inside the tour section) */
.ct-tour-el .e-con.e-child {
  transition: background 0.3s, border-color 0.3s;
}
.ct-tour-el .e-con.e-child:hover {
  background: rgba(255, 0, 127, 0.04);
}
.elementor-widget.tour-note p {
  text-align: center;
  color: rgba(250, 250, 250, 0.4);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
