/* ══════════════════════════════════════════
   MIXO MIXO 2026 — Festival Website CSS
   Visual identity: Bold yellow/orange, wavy
   red/blue accents, retro-funky typography
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Barrio&family=Unbounded:wght@400;700;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── VARIABLES ── */
:root {
  --yellow: #F5C500;
  --orange: #F5A800;
  --red: #E8380D;
  --blue: #1B5CE0;
  --dark: #0D0D0D;
  --light: #FFF8E8;
  --white: #FFFFFF;
  --font-display: 'Archivo Black', sans-serif;
  --font-heading: 'Archivo Black', sans-serif;
  --font-ui: 'Unbounded', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --tab-height: 60px;
  --nav-height: 72px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--light);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── NOISE OVERLAY ── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  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");
  opacity: 0.025;
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: var(--nav-height);
  background: var(--yellow);
  border-bottom: 3px solid var(--dark);
  transition: background 0.3s;
  padding: 1rem 2rem;
  /* offset-x | offset-y | blur-radius | spread-radius | color */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.nav.scrolled { background: var(--dark); }
.nav.scrolled .nav-logo { color: var(--light); }
.nav.scrolled .nav-logo span { color: var(--orange); }
.nav.scrolled .nav-links a { color: var(--light); }
.nav.scrolled .nav-links a:hover { color: var(--orange); }
.nav.scrolled .nav-cta { background: var(--red) !important; color: var(--white) !important; }
.nav.scrolled .hamburger span { background: var(--white); }

.nav-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: -1px;
  color: var(--dark);
  cursor: pointer;
}

.nav-logo span { color: var(--light); transition: color 0.35s; }

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
  cursor: pointer;
}
.nav-links a:hover { color: var(--red); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,56,13,0.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(0,0,0,0.04) 39px, rgba(0,0,0,0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(0,0,0,0.04) 39px, rgba(0,0,0,0.04) 40px);
  pointer-events: none;
}

/* Waves background */
.waves-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
}
.wave {
  position: absolute;
  width: 100%;
  height: 120px;
}
.wave-1 { bottom: 80px; fill: var(--red); opacity: 0.9; animation: waveMove 6s ease-in-out infinite; }
.wave-2 { bottom: 40px; fill: var(--blue); opacity: 1; animation: waveMove 8s ease-in-out infinite reverse; }
.wave-3 { bottom: 0; fill: var(--orange); opacity: 1; animation: waveMove 5s ease-in-out infinite; }

@keyframes waveMove {
  0%, 100% { transform: scaleX(1) translateX(0); }
  50% { transform: scaleX(1.05) translateX(-2%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px 160px;
  animation: heroIn 0.9s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.t-mixo {
  font-family: var(--font-display);
  font-size: clamp(80px, 8vw, 160px);
  color: var(--dark);
  
  -webkit-background-clip: text;
  background-clip: text;
  animation: patternShift 3s linear infinite;
}
@keyframes patternShift {
  from { background-position: 0 0; }
  to { background-position: 100px 100px; }
}

.t-circle {
  width: clamp(60px, 8vw, 100px);
  color: var(--dark);
  flex-shrink: 0;
  animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero-drink {
  position: absolute;
  top: -20px;
  right: -30px;
  font-size: 48px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-12px) rotate(5deg); }
}

.hero-meta { margin-bottom: 24px; }
.hero-date {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 42px);
  letter-spacing: 0.04em;
  color: var(--dark);
}
.hero-location {
  font-family: var(--font-ui);
  font-size: clamp(11px, 1.5vw, 14px);
  letter-spacing: 0.2em;
  color: var(--dark);
  opacity: 0.7;
  margin-top: 4px;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -60px;
  top: 40%;
  transform: translateY(-50%) rotate(15deg);
  border: 4px solid var(--dark);
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 4px 4px 0 var(--dark);
}
@keyframes badgePulse {
  0%, 100% { transform: translateY(-50%) rotate(15deg) scale(1); }
  50% { transform: translateY(-50%) rotate(15deg) scale(1.06); }
}
.badge-inner { text-align: center; }
.badge-top { font-family: var(--font-ui); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; display: block; }
.badge-price { font-family: var(--font-heading); font-size: 32px; display: block; line-height: 1; }
.badge-bottom { font-family: var(--font-ui); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; display: block; }

.hero-hashtag {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--dark);
  opacity: 0.6;
  margin: 16px 0 32px;
}

.hero-btn {
  display: inline-block;
  background: var(--dark);
  color: var(--yellow);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 18px 48px;
  border-radius: 100px;
  border: 3px solid var(--dark);
  transition: all 0.25s;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--red);
}
.hero-btn:hover {
  background: var(--red);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--dark);
}

.scroll-indicator {
  position: absolute;
  bottom: 220px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.scroll-indicator span {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.2em;
  opacity: 0.5;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--dark);
  opacity: 0.4;
  animation: scrollPulse 2s ease-in-out infinite;
  
}
@keyframes scrollPulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ══════════════════════════════════
   TABS BAR
══════════════════════════════════ */
.tabs-bar {
  position: sticky;
  top: var(--nav-height);
  z-index: 900;
  background: var(--dark);
  border-bottom: 3px solid var(--red);
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-bar::-webkit-scrollbar { display: none; }
.tabs-inner {
  display: flex;
  align-items: center;
  min-width: max-content;
  padding: 0 24px;
}
.tab-btn {
  background: none;
  border: none;
  color: rgba(255,248,232,0.5);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 24px;
  height: var(--tab-height);
  cursor: pointer;
  transition: color 0.2s;
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--light); }
.tab-btn.active {
  color: var(--yellow);
  border-bottom-color: var(--yellow);
}

/* ══════════════════════════════════
   TAB SECTIONS
══════════════════════════════════ */
.main-content { min-height: 80vh; }
.tab-section { display: none; padding: 80px 0 120px; }
.tab-section.active { display: block; }

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  padding: 0 24px 60px;
  max-width: 700px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 90px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--dark);
}
.section-header h2 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 3px var(--dark);
}
.section-sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--dark);
  opacity: 0.6;
  font-weight: 300;
  line-height: 1.7;
}

/* ══════════════════════════════════
   PROGRAMMATION
══════════════════════════════════ */
.schedule-stages {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 24px;
}
.stage-tag {
  background: var(--red);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 100px;
  border: 2px solid var(--dark);
}
.stage-tag.secondary { background: var(--blue); }

.schedule-grid {
  gap: 0 3px;
  margin: 0 auto;
  padding: 0 24px;
}

.col-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 20px;
  background: var(--dark);
  color: var(--yellow);
  margin-bottom: 3px;
}

.time-slot {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  background: var(--white);
  border-left: 5px solid var(--slot-color);
  margin-bottom: 3px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.time-slot:hover {
  transform: translateX(4px);
  box-shadow: -4px 0 0 var(--slot-color);
}
.time-slot.headliner {
  background: var(--dark);
  color: var(--light);
}
.time-slot.headliner .slot-genre { color: var(--orange); }

.slot-time {
  padding: 16px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.headliner .slot-time { background: rgba(255,255,255,0.05); border-right-color: rgba(255,255,255,0.1); }

.slot-info {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.slot-genre {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slot-color);
  opacity: 0.8;
}
.slot-artist {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.1;
}
.slot-desc {
  font-size: 12px;
  opacity: 0.6;
  font-style: italic;
}

.prog-note {
  text-align: center;
  padding: 40px 24px 0;
  max-width: 800px;
  margin: 0 auto;
}
.prog-note p {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--dark);
  opacity: 0.5;
}

/* ══════════════════════════════════
   ARTISTES
══════════════════════════════════ */
.artists-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 3px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.artist-card {
  display: flex;
  background: var(--white);
  border: 2px solid var(--dark);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.artist-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--dark);
  z-index: 2;
}
.headliner-card {
  grid-column: span 1;
}
@media (min-width: 900px) {
  .headliner-card { grid-column: span 2; }
}

.artist-img {
  width: 180px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 48px;
  color: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}
.artist-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255,255,255,0.05) 10px,
    rgba(255,255,255,0.05) 20px
  );
}
.artist-img.small { width: 120px; }
.artist-img-text { position: relative; z-index: 1; }

.artist-info { padding: 24px; flex: 1; }
.artist-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  margin-bottom: 10px;
}
.artist-badge.blue { background: var(--blue); }

.artist-info h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1;
  margin-bottom: 4px;
}
.artist-genre {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.artist-bio {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 12px;
}
.artist-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.artist-link {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border: 2px solid var(--dark);
  text-transform: uppercase;
  transition: all 0.2s;
}
.artist-link:hover { background: var(--dark); color: var(--yellow); }

.artist-set {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: var(--yellow);
  display: inline-block;
  padding: 5px 12px;
}

/* ══════════════════════════════════
   INFOS PRATIQUES
══════════════════════════════════ */
.infos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 3px;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto 60px;
}
.info-card {
  background: var(--white);
  padding: 32px;
  border: 2px solid var(--dark);
  transition: transform 0.2s;
}
.info-card:hover { transform: translateY(-4px); }
.info-card.big { grid-column: span 2; }

.info-icon { font-size: 32px; margin-bottom: 16px; }
.info-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 8px;
}
.info-title {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--red);
  margin-bottom: 8px;
}
.info-card p { font-size: 14px; opacity: 0.7; line-height: 1.6; }
.info-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
  transition: color 0.2s;
}
.info-link:hover { color: var(--red); border-color: var(--red); }

.info-detail { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,0.08); }

.transport-options { display: flex; flex-direction: column; gap: 16px; margin-top: 12px; }
.transport-item { display: flex; gap: 16px; align-items: flex-start; }
.transport-icon { font-size: 24px; flex-shrink: 0; }
.transport-item strong { font-family: var(--font-ui); font-size: 12px; font-weight: 700; display: block; margin-bottom: 2px; }
.transport-item p { font-size: 13px; opacity: 0.6; }

.info-list { display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.info-list li { font-size: 14px; opacity: 0.7; display: flex; gap: 8px; }

/* FAQ */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-title {
  font-family: var(--font-heading);
  font-size: 36px;
  margin-bottom: 24px;
  border-bottom: 4px solid var(--yellow);
  padding-bottom: 12px;
}
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item { border: 2px solid var(--dark); overflow: hidden; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 24px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-q::after { content: '+'; font-size: 20px; font-weight: 300; transition: transform 0.3s; }
.faq-q.open { background: var(--yellow); }
.faq-q.open::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 24px;
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 200px; padding: 16px 24px; }

/* ══════════════════════════════════
   VILLAGE
══════════════════════════════════ */
.village-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 0 24px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.village-intro-text {
  background: var(--dark);
  color: var(--light);
  padding: 48px;
  display: flex;
  align-items: center;
}
.village-intro-text p {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 300;
}

.village-map-placeholder {
  background: var(--yellow);
  position: relative;
  min-height: 300px;
  border: 2px solid var(--dark);
  overflow: hidden;
}
.map-label {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  z-index: 2;
}
.map-zones { position: absolute; inset: 40px 12px 12px; }
.map-zone {
  position: absolute;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.village-categories {
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.village-cat {}
.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 4px solid var(--yellow);
}
.cat-icon { font-size: 32px; }
.cat-header h3 {
  font-family: var(--font-heading);
  font-size: 32px;
}

.vendors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 3px;
}
.vendor-card {
  background: var(--white);
  padding: 24px;
  border: 2px solid var(--dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vendor-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--dark);
}
.vendor-card.highlight-card { background: var(--yellow); }

.vendor-name {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 4px;
}
.vendor-type {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.vendor-card p { font-size: 13px; opacity: 0.7; line-height: 1.5; margin-bottom: 10px; }
.vendor-price {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.5;
}

.village-chill {
  max-width: 1400px;
  margin: 60px auto 0;
  padding: 0 24px;
  background: var(--dark);
  color: var(--light);
  padding: 60px 48px;
}
.chill-icon { font-size: 40px; margin-bottom: 16px; }
.village-chill h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--yellow);
}
.chill-zones {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.chill-zone {
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}
.chill-zone h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--orange);
}
.chill-zone p { font-size: 14px; opacity: 0.6; line-height: 1.6; }

/* ══════════════════════════════════
   BILLETS
══════════════════════════════════ */
.about-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3px;
  padding: 0 24px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.about-card {
  border: 2px solid var(--dark);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.about-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 8px 8px 0 var(--dark);
}
.about-card.featured { transform: scale(1.02); border-width: 3px; }
.about-card.featured:hover { transform: scale(1.02) translate(-4px, -4px); }

.about-header {
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}
.about-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.about-tag {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  margin-bottom: 16px;
}
.about-price-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}
.about-currency {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-top: 8px;
}
.about-price {
  font-family: var(--font-heading);
  font-size: 72px;
  line-height: 1;
}
.about-label {
  display: block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-top: 8px;
}

.about-body { padding: 28px 24px; }
.about-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.about-includes li { font-size: 13px; }

.about-status {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  margin-bottom: 16px;
}
.sold-out { background: var(--orange); }
.available { background: #d4edda; color: #155724; }

.about-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--dark);
  color: var(--light);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: all 0.2s;
}
.about-btn:hover { background: var(--red); border-color: var(--red); }
.about-btn.primary { background: var(--red); border-color: var(--red); color: var(--white); }
.about-btn.primary:hover { background: #c0300a; }

.about-extras {
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.extra-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--white);
  padding: 20px 24px;
  border: 2px solid var(--dark);
}
.extra-icon { font-size: 28px; flex-shrink: 0; }
.extra-item strong { font-family: var(--font-ui); font-size: 12px; font-weight: 700; display: block; margin-bottom: 2px; }
.extra-item p { font-size: 13px; opacity: 0.6; margin-bottom: 8px; }
.extra-btn {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  background: none;
  border: 2px solid var(--dark);
  cursor: pointer;
  transition: all 0.2s;
}
.extra-btn:hover { background: var(--dark); color: var(--yellow); }

.about-group {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px;
  background: var(--yellow);
  border: 3px solid var(--dark);
  text-align: center;
  position: relative;
}
.group-badge {
  display: inline-block;
  background: var(--dark);
  color: var(--yellow);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  margin-bottom: 16px;
}
.about-group h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 12px;
}
.about-group p { font-size: 14px; opacity: 0.7; max-width: 400px; margin: 0 auto 24px; }
.group-btn {
  display: inline-block;
  background: var(--dark);
  color: var(--yellow);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 14px 32px;
  text-transform: uppercase;
  transition: all 0.2s;
}
.group-btn:hover { background: var(--red); }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--dark);
  color: var(--light);
  padding-top: 20px;
  overflow: hidden;
}
.footer-waves { margin-bottom: -2px; }
.footer-waves svg { display: block; width: 100%; height: 130px; }

.footer-content {
  background: var(--dark);
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 36px;
  letter-spacing: -1px;
  width: 300px;
}
.footer-logo span { color: var(--orange); }

.footer-info p { font-size: 14px; opacity: 0.5; line-height: 1.8; }

.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 1; color: var(--yellow); }

.footer-contact {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  opacity: 0.4;
}
.footer-contact a { border-bottom: 1px solid rgba(255,248,232,0.3); }
.footer-contact a:hover { opacity: 1; color: var(--yellow); }

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  font-size: 11px;
  opacity: 0.3;
  transition: opacity 0.2s;
}
.footer-legal a:hover { opacity: 0.7; }

.footer-copy {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0.3;
  margin-top: 10px;
}


/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: var(--dark);
    padding: 40px;
    gap: 24px;
    z-index: 999;
    overflow-y: auto;
  }
  .nav-links.open a { color: var(--light); font-size: 18px; }
  .hamburger { display: flex; }

  .t-mixo { font-size: clamp(56px, 10vw, 90px); }
  .hero-badge { right: -20px; width: 90px; height: 90px; }
  .badge-price { font-size: 24px; }

  .schedule-grid { grid-template-columns: 1fr; }
  .time-slot { grid-template-columns: 110px 1fr; }

  .village-intro { grid-template-columns: 1fr; }
  .info-card.big { grid-column: span 1; }

  .artist-card { flex-direction: column; }
  .artist-img { width: 100%; height: 140px; }
  .artist-img.small { height: 100px; }

  .tabs-inner { gap: 0; }
  .tab-btn { padding: 0 16px; font-size: 10px; }

  .footer-content { padding: 40px 24px; }
}

@media (max-width: 600px) {
  .hero-title { gap: 6px; }
  .t-mixo { font-size: clamp(33px, 8vw, 35px); }
  .hero-drink { font-size: clamp(24px, 6vw, 28px); }
  .hero-badge { display: none; }
  .about-container { grid-template-columns: 1fr; }
  .about-card.featured { transform: none; }
  .village-chill { padding: 40px 24px; }
  .section-header h2 { font-size: 40px; }
}

/* ── WAVE DIVIDER ── */
.wave-divider {
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--red) 0, var(--red) 20px, var(--blue) 20px, var(--blue) 40px, var(--orange) 40px, var(--orange) 60px);
  margin: 32px 0;
  opacity: 0.4;
}

/* ── ANIMATION ENTRY ── */
.tab-section.active .section-header,
.tab-section.active .artists-grid,
.tab-section.active .schedule-grid,
.tab-section.active .infos-grid,
.tab-section.active .about-container {
  animation: sectionIn 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes sectionIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
