/**
 * Tomatina Afterparty Theme Styles
 * WCAG AAA Compliant
 */

/* ========== CSS RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Festival color palette */
  --background: 220 30% 8%;
  --foreground: 30 100% 98%;
  --card: 220 25% 12%;
  --card-foreground: 30 100% 98%;
  --popover: 220 25% 12%;
  --popover-foreground: 30 100% 98%;
  --primary: 4 85% 55%;
  --primary-foreground: 0 0% 100%;
  --secondary: 25 95% 53%;
  --secondary-foreground: 0 0% 100%;
  --accent: 220 60% 25%;
  --accent-foreground: 30 100% 98%;
  --muted: 220 20% 18%;
  --muted-foreground: 220 15% 70%;
  --border: 220 20% 20%;
  --radius: 0.75rem;

  /* Gradients */
  --gradient-hero: linear-gradient(
    135deg,
    hsl(4 85% 55% / 0.9) 0%,
    hsl(25 95% 53% / 0.8) 5%,
    hsl(220 60% 25% / 0.95) 100%
  );
  --gradient-cta: linear-gradient(
    135deg,
    hsl(4 85% 55%) 0%,
    hsl(25 95% 53%) 100%
  );
  --gradient-card: linear-gradient(
    180deg,
    hsl(220 25% 14%) 0%,
    hsl(220 25% 10%) 100%
  );

  /* Typography */
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Shadows */
  --shadow-glow: 0 0 40px hsl(4 85% 55% / 0.4);
  --shadow-card: 0 8px 32px hsl(220 30% 5% / 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

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

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: hsl(220 30% 8%);
}
::-webkit-scrollbar-thumb {
  background: hsl(4 85% 55% / 0.5);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: hsl(4 85% 55% / 0.7);
}

/* ========== UTILITY CLASSES ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    hsl(30 100% 98%) 0%,
    hsl(25 95% 70%) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== ANIMATIONS ========== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes beat-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  25% {
    transform: scale(1.05);
    opacity: 0.9;
  }
  50% {
    transform: scale(0.98);
    opacity: 1;
  }
  75% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

@keyframes beat-glow {
  0%,
  100% {
    box-shadow: 0 0 20px hsl(4 85% 55% / 0.4),
      0 0 40px hsl(4 85% 55% / 0.2);
    border-color: hsl(4 85% 55% / 0.5);
  }
  25% {
    box-shadow: 0 0 40px hsl(25 95% 53% / 0.6),
      0 0 80px hsl(25 95% 53% / 0.3);
    border-color: hsl(25 95% 53% / 0.7);
  }
  50% {
    box-shadow: 0 0 30px hsl(220 60% 45% / 0.5),
      0 0 60px hsl(220 60% 45% / 0.3);
    border-color: hsl(220 60% 45% / 0.6);
  }
  75% {
    box-shadow: 0 0 35px hsl(4 85% 55% / 0.5),
      0 0 70px hsl(4 85% 55% / 0.25);
    border-color: hsl(4 85% 55% / 0.6);
  }
}

@keyframes neon-flicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    text-shadow: 0 0 10px hsl(4 85% 55% / 0.8),
      0 0 30px hsl(4 85% 55% / 0.5), 0 0 60px hsl(25 95% 53% / 0.3);
    opacity: 1;
  }
  20%,
  24%,
  55% {
    text-shadow: none;
    opacity: 0.8;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px hsl(4 85% 55% / 0.4);
  }
  50% {
    box-shadow: 0 0 40px hsl(4 85% 55% / 0.6),
      0 0 60px hsl(25 95% 53% / 0.3);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(-10px) translateX(-50%);
  }
}

@keyframes equalizer {
  0%,
  100% {
    height: 12%;
  }
  25% {
    height: 80%;
  }
  50% {
    height: 40%;
  }
  75% {
    height: 100%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}
.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}
.animate-fade-up {
  animation: fade-up 0.6s ease-out forwards;
}
.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}
.animate-neon-flicker {
  animation: neon-flicker 4s linear infinite;
}

/* Equalizer */
.equalizer-inline {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 32px;
  opacity: 0.8;
  pointer-events: none;
}

.equalizer-inline .equalizer-bar {
  width: 4px;
  background: linear-gradient(180deg, hsl(4 85% 55%), hsl(25 95% 53%));
  border-radius: 2px;
  animation: equalizer 0.8s ease-in-out infinite;
}

.equalizer-inline .equalizer-bar:nth-child(1) {
  animation-delay: 0s;
}
.equalizer-inline .equalizer-bar:nth-child(2) {
  animation-delay: 0.1s;
}
.equalizer-inline .equalizer-bar:nth-child(3) {
  animation-delay: 0.2s;
}
.equalizer-inline .equalizer-bar:nth-child(4) {
  animation-delay: 0.15s;
}
.equalizer-inline .equalizer-bar:nth-child(5) {
  animation-delay: 0.25s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta {
  background: var(--gradient-cta);
  color: hsl(var(--primary-foreground));
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-glow);
  border: 1px solid hsl(4 85% 65% / 0.5);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    hsl(0 0% 100% / 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-cta:hover::before {
  transform: translateX(100%);
}

.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 50px hsl(4 85% 55% / 0.7),
    0 0 100px hsl(25 95% 53% / 0.4);
}

.btn-cta:focus-visible {
  outline: 3px solid hsl(4 85% 55% / 0.95);
  outline-offset: 4px;
}

.btn-cta-xl {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

.btn-cta-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: calc(var(--radius) - 2px);
}

.btn-header {
  background: var(--gradient-cta);
  color: hsl(var(--primary-foreground));
  padding: 0.625rem 1.5rem;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.875rem;
  border: 1px solid hsl(4 85% 65% / 0.5);
}

.btn-header:hover {
  transform: scale(1.05);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

.header.scrolled {
  background: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: 0 4px 20px hsl(0 0% 0% / 0.3);
}

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

@media (min-width: 768px) {
  .header-inner {
    height: 80px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s;
}

.logo:hover {
  opacity: 0.8;
}

.logo:focus-visible {
  outline: 2px solid hsl(4 85% 55%);
  outline-offset: 4px;
  border-radius: 4px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: hsl(var(--primary-foreground));
  font-size: 1.25rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

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

.nav-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

/* Polylang Language Switcher Styles */
.lang-switcher select {
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background: hsl(var(--muted) / 0.5);
  border: 1px solid hsl(var(--border));
  cursor: pointer;
  color: hsl(var(--foreground));
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s;
}

.lang-switcher select:hover {
  background: hsl(var(--muted));
}

.lang-switcher select:focus-visible {
  outline: 2px solid hsl(4 85% 55%);
  outline-offset: 2px;
}

/* Mobile Menu Button */
.menu-btn {
  padding: 0.5rem;
  border-radius: 0.5rem;
  background: hsl(var(--muted) / 0.5);
  border: none;
  cursor: pointer;
  color: hsl(var(--foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.menu-btn:hover {
  background: hsl(var(--muted));
}

.menu-btn:focus-visible {
  outline: 2px solid hsl(4 85% 55%);
  outline-offset: 2px;
}

.menu-btn-label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Mobile Menu */
#menu-toggle {
  display: none;
}

.mobile-menu {
  background: hsl(var(--card));
  border-bottom: 1px solid hsl(var(--border));
  opacity: 0;
  pointer-events: none;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s, max-height 0.3s, pointer-events 0.3s;
}

#menu-toggle:checked ~ .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  max-height: 500px;
}

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

.mobile-menu-inner {
  padding: 1rem;
}

.mobile-lang-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(var(--foreground));
  transition: background 0.2s;
  margin-bottom: 0.5rem;
  text-decoration: none;
}

.mobile-lang-option:hover {
  background: hsl(var(--muted));
}

.mobile-lang-option.active {
  background: hsl(var(--primary) / 0.1);
  color: hsl(var(--primary));
}

.mobile-lang-option:focus-visible {
  outline: 2px solid hsl(4 85% 55%);
  outline-offset: 2px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.video-bg {
    width: 100%;
    height: auto;
    position: relative;
    opacity: 0.3;
    z-index: 0;
}
.hero-bg::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    background-image: repeating-linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.2) 0px,
    rgba(0, 0, 0, 0.2) 1px,
    transparent 1px,
    transparent 4px
    ),
    repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.2) 0px,
    rgba(0, 0, 0, 0.2) 1px,
    transparent 1px,
    transparent 4px
    );

    mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 90%
    );
    -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 90%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-decorations {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.hero-blob-1 {
  top: 80px;
  left: 40px;
  width: 256px;
  height: 256px;
  background: hsl(var(--secondary) / 0.2);
  animation: float 6s ease-in-out infinite;
}

.hero-blob-2 {
  bottom: 80px;
  right: 40px;
  width: 384px;
  height: 384px;
  background: hsl(var(--primary) / 0.2);
  animation: float 6s ease-in-out infinite;
  animation-delay: 2s;
}

.hero-blob-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: hsl(var(--accent) / 0.1);
  filter: blur(48px);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 6rem 1rem 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: hsl(4 85% 55% / 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid hsl(4 85% 55% / 0.3);
  margin-bottom: 2rem;
  animation: fade-up 0.6s ease-out forwards,
    beat-glow 3s ease-in-out infinite;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(4 85% 55%);
  animation: beat-pulse 0.5s ease-in-out infinite;
  box-shadow: 0 0 10px hsl(4 85% 55%);
}

.hero-badge-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: hsl(var(--foreground) / 0.9);
}

.hero-title {
  font-size: clamp(3rem, 10vw, 6rem);
  color: hsl(var(--foreground));
  margin-bottom: 1.5rem;
  animation: fade-up 0.6s ease-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.25rem);
  color: hsl(var(--foreground) / 0.8);
  max-width: 640px;
  margin: 0 auto 2rem;
  animation: fade-up 0.6s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fade-up 0.6s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-details {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.hero-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--foreground) / 0.9);
  font-weight: 500;
}

.hero-detail svg {
  width: 20px;
  height: 20px;
  color: hsl(var(--secondary));
}

.hero-cta {
  animation: fade-up 0.6s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}

.scroll-indicator-inner {
  width: 24px;
  height: 40px;
  border-radius: 9999px;
  border: 2px solid hsl(var(--foreground) / 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-indicator-dot {
  width: 6px;
  height: 12px;
  border-radius: 9999px;
  background: hsl(var(--foreground) / 0.5);
  animation: pulse 2s ease-in-out infinite;
}

/* ========== SECTIONS ========== */
.section {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .section {
    padding: 8rem 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.section-title-bar {
  width: 96px;
  height: 4px;
  background: var(--gradient-cta);
  margin: 0 auto;
  border-radius: 9999px;
}

/* ========== WHY SECTION ========== */
.why-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsl(var(--background)) 0%,
    hsl(var(--muted) / 0.3) 50%,
    hsl(var(--background)) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .why-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.why-card {
  position: relative;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border) / 0.5);
  box-shadow: var(--shadow-card);
  transition: all 0.5s ease;
}

.why-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  transform: translateY(-8px);
}

.why-card:focus-within {
  border-color: hsl(var(--primary) / 0.5);
}

.why-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  background: hsl(var(--primary) / 0.05);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.why-card:hover .why-card-glow {
  opacity: 1;
}

.why-card-icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.5s ease;
}

.why-card:hover .why-card-icon {
  transform: scale(1.1);
}

.why-card-icon svg {
  width: 32px;
  height: 32px;
  color: hsl(var(--primary-foreground));
}

.why-card h3 {
  font-size: 1.5rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.why-card:hover h3 {
  color: hsl(var(--primary));
}

.why-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ========== LOCATION SECTION ========== */
.location-bg {
  position: absolute;
  inset: 0;
  background: hsl(var(--accent) / 0.2);
  pointer-events: none;
  z-index: 0;
}

.location-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    hsl(var(--background)) 0%,
    transparent 50%,
    hsl(var(--background)) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.location-map {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .location-map {
    aspect-ratio: 1;
  }
}

.location-map-inner {
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-map-content {
  text-align: center;
}

.location-map-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.location-map-icon svg {
  width: 40px;
  height: 40px;
  color: hsl(var(--primary-foreground));
}

.location-map-text {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}

.location-map-subtext {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground) / 0.7);
  margin-top: 0.25rem;
}

.location-map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(
      hsl(var(--foreground) / 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      hsl(var(--foreground) / 0.1) 1px,
      transparent 1px
    );
  background-size: 40px 40px;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border) / 0.5);
  transition: border-color 0.3s;
}

.location-card:hover {
  border-color: hsl(var(--border));
}

.location-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-card-icon.primary {
  background: hsl(var(--primary) / 0.2);
}
.location-card-icon.primary svg {
  color: hsl(var(--primary));
}
.location-card-icon.secondary {
  background: hsl(var(--secondary) / 0.2);
}
.location-card-icon.secondary svg {
  color: hsl(var(--secondary));
}

.location-card-icon svg {
  width: 24px;
  height: 24px;
}

.location-card h3 {
  font-size: 1.25rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.location-card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

/* ========== TICKETS SECTION ========== */
.tickets-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.tickets-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    hsl(var(--background)) 0%,
    transparent 50%,
    hsl(var(--background)) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.ticket-card {
  position: relative;
  max-width: 480px;
  margin: 0 auto 2rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: var(--gradient-card);
  border: 1px solid hsl(var(--primary) / 0.3);
  box-shadow: var(--shadow-glow);
  z-index: 1;
}

@media (min-width: 768px) {
  .ticket-card {
    padding: 2.5rem;
  }
}

.ticket-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: var(--gradient-cta);
  color: hsl(var(--primary-foreground));
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.ticket-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.ticket-icon svg {
  width: 40px;
  height: 40px;
  color: hsl(var(--primary-foreground));
}

.ticket-price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.ticket-price span {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 4.5rem);
  color: hsl(var(--foreground));
}

.ticket-description {
  text-align: center;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  line-height: 1.7;
}

.ticket-includes {
  margin-bottom: 2rem;
}

.ticket-include-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.ticket-include-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: hsl(var(--secondary) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ticket-include-check svg {
  width: 16px;
  height: 16px;
  color: hsl(var(--secondary));
}

.ticket-include-item span {
  color: hsl(var(--foreground));
}

.ticket-cta {
  width: 100%;
}

/* ========== FAQ SECTION ========== */
.faq-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    hsl(var(--background)) 0%,
    hsl(var(--muted) / 0.2) 50%,
    hsl(var(--background)) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.faq-list {
  max-width: 768px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Reset default details/summary styles */
.faq-item {
  border-radius: 0.75rem;
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border) / 0.5);
  margin-bottom: 1rem;
  transition: border-color 0.3s;
  display: block !important;
  position: relative;
  z-index: 1;
}

.faq-item:hover {
  border-color: hsl(var(--border));
}

/* Remove default marker */
.faq-item summary {
  list-style: none !important;
  cursor: pointer !important;
  display: flex !important;
}

.faq-item summary::-webkit-details-marker {
  display: none !important;
}

.faq-item summary::marker {
  display: none !important;
  content: none !important;
}

.faq-item summary::before {
  display: none !important;
}

/* Summary/Trigger styling */
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
  position: relative;
  pointer-events: auto !important;
  z-index: 2;
}

.faq-trigger:hover {
  color: hsl(var(--primary));
}

.faq-trigger:focus-visible {
  outline: 2px solid hsl(4 85% 55%);
  outline-offset: -2px;
}

/* Icon styling */
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  pointer-events: none !important;
}

/* Rotate icon when open */
details[open].faq-item .faq-icon,
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

/* Content visible when open - NO max-height tricks! */
.faq-content {
  display: block !important;
  overflow: visible !important;
}

.faq-content-inner {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
  display: block !important;
}

/* Optional animation */
details[open].faq-item .faq-content-inner,
.faq-item[open] .faq-content-inner {
  animation: faq-fade-in 0.3s ease-out;
}

@keyframes faq-fade-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .faq-trigger {
    font-size: 1.25rem;
  }
}

/* ========== FOOTER ========== */
.footer {
  padding: 3rem 0;
  border-top: 1px solid hsl(var(--border));
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 0;
  }
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    hsl(var(--accent) / 0.1) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  z-index: 1;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand-img img {
    width: 160px;
    aspect-ratio: 1;
    object-fit: cover;
}

.footer-description {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.7;
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
  font-size: 0.875rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(var(--muted));
  justify-content: center;
}

.footer-contact:hover {
  color: hsl(var(--primary));
}

.footer-contact:focus-visible {
  outline: 2px solid hsl(4 85% 55%);
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-contact svg {
  width: 16px;
  height: 16px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: hsl(var(--muted));
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--muted-foreground));
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  transform: translateY(-2px);
}

.footer-social-link:focus-visible {
  outline: 2px solid hsl(4 85% 55%);
  outline-offset: 2px;
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
}

.footer-links a,
.footer-links li a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links li a:hover {
  color: hsl(var(--primary));
}

.footer-links a:focus-visible,
.footer-links li a:focus-visible {
  outline: 2px solid hsl(4 85% 55%);
  outline-offset: 2px;
  border-radius: 4px;
}

.footer-copyright {
  position: relative;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border) / 0.5);
  text-align: center;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
}

/* ========== WORDPRESS SPECIFIC ========== */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  max-width: 100%;
}

.wp-caption-text {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.5rem;
}

.entry-content {
  line-height: 1.8;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.entry-content p {
  margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content a {
  color: hsl(var(--primary));
  text-decoration: underline;
}

.entry-content a:hover {
  color: hsl(var(--secondary));
}

.entry-content a:focus-visible {
  outline: 2px solid hsl(4 85% 55%);
  outline-offset: 2px;
}

/* ========== ACCESSIBILITY ========== */
.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.sr-only:focus,
.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  padding: 1rem;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  font-weight: 600;
  z-index: 100;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --foreground: 0 0% 100%;
    --background: 0 0% 0%;
    --border: 0 0% 100%;
  }
  
  .btn-cta,
  .btn-header {
    border: 2px solid hsl(var(--foreground));
  }
}

/* Focus indicators */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid hsl(4 85% 55%);
  outline-offset: 2px;
}


/* ========== complianz ========== */
.cmplz-placeholder-1 {
  height: 100% !important;
}
