/* ============================================================
   THE BOHEMIANS FESTIVAL 2026 — Design System + Sections
   ============================================================ */

/* Fonts loaded via <link> in HTML — no @import needed here */

/* ============================================================
   ACCESSIBILITY UTILITIES
   ============================================================ */

/* Skip to main content — visible only on keyboard focus */
.skip-to-main {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 300;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}

.skip-to-main:focus {
  top: 0;
}

/* Visually hidden but readable by screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles — visible keyboard navigation */
:focus-visible {
  outline: 2px solid #D4845A;
  outline-offset: 3px;
  border-radius: 2px;
}

/* Remove focus ring on mouse click (only show for keyboard) */
:focus:not(:focus-visible) {
  outline: none;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.animate-ready {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-ready.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   ANNOUNCEMENT BANNER
   ============================================================ */

#ann-banner {
  background: var(--gold);
  color: #0d0a07;
  text-align: center;
  padding: 10px 48px 10px 16px;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 99;
}

#ann-banner .ann-dismiss {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #0d0a07;
  line-height: 1;
  padding: 4px;
}

/* ── CSS Variables ── */
:root {
  --bg:          #A08878;
  --bg-card:     #8A7468;
  --orange:      #D4845A;
  --gold:        #E0A878;
  --text:        #1e1008;
  --text-muted:  #4a3428;
  --max-width:   1200px;
}

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

html {
  scroll-behavior: smooth;
}

img, video {
  max-width: 100%;
  display: block;
}

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

ul, ol {
  list-style: none;
}

/* ── Logo watermark — secțiuni cu fundal crem ── */
.lineup,
.about-cyclic,
.activitati,
.editia-trecuta,
.email-capture {
  position: relative;
  overflow: hidden;
}

.lineup::before,
.about-cyclic::before,
.activitati::before,
.editia-trecuta::before,
.email-capture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/baza-4.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.lineup > *,
.about-cyclic > *,
.activitati > *,
.editia-trecuta > *,
.email-capture > * {
  position: relative;
  z-index: 1;
}

/* ── Body ── */
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Container ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Ticket Button ── */
.btn-buy {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 13px 32px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-buy:hover {
  background: #c4733e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 132, 90, 0.4);
  color: #fff;
  text-decoration: none;
}

.btn-buy--hero {
  padding: 15px 40px;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 14px 32px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.35) 0%, transparent 70%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  border-radius: inherit;
}

.btn-primary:hover::after {
  transform: scale(2.5);
  opacity: 1;
}

.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 14px 32px;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #fff;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.btn-outline:hover {
  opacity: 0.85;
}

/* ── Section Heading ── */
.section-heading {
  font-family: 'Italianno', cursive;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.section-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin-top: 12px;
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar.scrolled {
  background: rgba(208, 185, 167, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links li a {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: var(--text);
}

.nav-links li a.active {
  color: var(--text);
  border-bottom: 1.5px solid var(--orange);
  padding-bottom: 2px;
}

.nav-cta {
  padding: 9px 22px !important;
  font-size: 11px !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

/* Mobile dropdown */
.nav-mobile {
  display: none;
  background: rgba(208, 185, 167, 0.99);
  border-top: 1px solid rgba(176, 132, 99, 0.35);
  padding: 24px;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.nav-mobile-link {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.nav-mobile-link:hover {
  color: var(--text);
}

.nav-mobile-link.active {
  color: var(--orange);
}

.nav-mobile-btn {
  margin-top: 8px;
  width: 100%;
  text-align: center;
}

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

  .nav-hamburger {
    display: block;
  }
}

/* ============================================================
   HERO — Fade-up keyframes
   ============================================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Hero Section ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-color: #1a1208;
  background-image: url('/images/hero-bg.webp');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 3, 1, 0.55) 0%,
    rgba(5, 3, 1, 0.45) 40%,
    rgba(5, 3, 1, 0.65) 70%,
    rgba(5, 3, 1, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px 0;
  width: 100%;
  max-width: 760px;
}

/* Staggered animations */
.hero-edition  { animation: fadeUp 0.8s ease both; animation-delay: 0.1s; }
.hero-title    { animation: fadeUp 0.8s ease both; animation-delay: 0.3s; }
.hero-sub      { animation: fadeUp 0.8s ease both; animation-delay: 0.5s; }
.hero-tagline  { animation: fadeUp 0.8s ease both; animation-delay: 0.7s; }
.hero-cta      { animation: fadeUp 0.8s ease both; animation-delay: 0.9s; }
.hero-note     { animation: fadeUp 0.8s ease both; animation-delay: 1.0s; }
.countdown     { }

/* ── Hero Elements ── */
.hero-edition {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  line-height: 1;
  text-align: center;
  margin: 0;
}

.hero-logo-overlay {
  width: clamp(260px, 55vw, 580px);
  height: auto;
  display: block;
  margin: 0 auto 4px;
  pointer-events: none;
  animation: fadeUp 0.9s ease both;
  animation-delay: 0.2s;
}

.hero-sub {
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(0.95rem, 1.8vw, 1.2rem);
  color: rgba(245, 237, 227, 0.75);
  margin-bottom: 32px;
}

.hero-cta {
  font-size: 13px;
  padding: 16px 56px;
  letter-spacing: 3px;
}

.hero-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}

.hero-bottom {
  position: absolute;
  bottom: 8vh;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.9s;
}

.hero-date {
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 237, 227, 0.7);
  margin-bottom: 14px;
}

/* ── Countdown ── */
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
}

.cd-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 18px 28px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
}

.cd-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #f5ede3;
  line-height: 1;
}

.cd-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 237, 227, 0.6);
  margin-top: 6px;
}

.countdown-done {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text);
  margin-top: 60px;
  letter-spacing: 2px;
}

/* ============================================================
   SECTION 1 — EXPERIENCE STRIP
   ============================================================ */

.strip {
  background: #bda48f;
  padding: 40px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
}

.strip-col {
  padding: 28px 40px;
  text-align: center;
  border-right: 1px solid rgba(42, 24, 16, 0.1);
}

.strip-col:last-child {
  border-right: none;
}

.strip-emoji {
  line-height: 1;
  margin-bottom: 14px;
}

.sun-icon {
  width: 38px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Inline usage (inside text paragraphs) */
.hero-note .sun-icon,
.hero-early-bird .sun-icon {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  margin: 0 6px 3px 0;
}

.strip-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.strip-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .strip-grid {
    grid-template-columns: 1fr;
  }

  .strip-col {
    border-right: none;
    border-bottom: 1px solid rgba(42, 24, 16, 0.1);
    padding: 36px 24px;
  }

  .strip-col:last-child {
    border-bottom: none;
  }
}

/* ============================================================
   SECTION 2 — LINEUP TEASER
   ============================================================ */

.lineup {
  background: var(--bg);
  padding: 100px 0;
  text-align: center;
}

.lineup .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.lineup-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 48px;
  margin-top: 4px;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(5, 180px);
  gap: 16px;
  justify-content: center;
}

.lineup-card {
  width: 180px;
  height: 180px;
  background: var(--bg-card);
  border: 1px solid rgba(176, 132, 99, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.lineup-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.lineup-card-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 12px 12px;
  background: linear-gradient(to top, rgba(20,10,5,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lineup-card-title {
  font-family: 'Italianno', cursive;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.lineup-card-genre {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

.lineup-q {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: rgba(176, 132, 99, 0.5);
  line-height: 1;
}

.lineup-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.lineup-social-text {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

@media (max-width: 640px) {
  .lineup-grid {
    grid-template-columns: repeat(2, 140px);
  }

  .lineup-card {
    width: 140px;
    height: 140px;
  }

  .lineup-social {
    flex-direction: column;
    gap: 16px;
  }
}

/* ============================================================
   SECTION 3 — ALTERNATING SPLIT
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-img {
  overflow: hidden;
}

@keyframes kenburns-a {
  0%   { transform: scale(1.0) translate(0%, 0%); }
  100% { transform: scale(1.08) translate(-2%, -1%); }
}

@keyframes kenburns-b {
  0%   { transform: scale(1.08) translate(1.5%, 0.5%); }
  100% { transform: scale(1.0) translate(-0.5%, 1%); }
}

.split-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  animation: kenburns-a 12s ease-in-out infinite alternate;
}

.split-reverse .split-img img {
  animation: kenburns-b 14s ease-in-out infinite alternate;
}

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.split-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.split-text .section-heading {
  margin-bottom: 24px;
}

.split-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 420px;
}

.split-italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* reverse: text left, image right */
.split-reverse {
  direction: rtl;
}

.split-reverse > * {
  direction: ltr;
}

@media (max-width: 900px) {
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }

  .split-reverse > * {
    direction: ltr;
  }

  /* image always on top */
  .split .split-img,
  .split-reverse .split-img {
    order: -1;
  }

  .split-img img {
    min-height: 280px;
  }

  .split-text {
    padding: 40px 24px;
  }

  .split-body {
    max-width: 100%;
  }
}

/* ============================================================
   ABOUT CYCLIC
   ============================================================ */

.about-cyclic {
  background: var(--bg-card);
  padding: 100px 0;
}

.about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.about-inner .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.about-body {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-top: 32px;
}

.about-divider {
  border: none;
  border-top: 1px solid rgba(42, 24, 16, 0.15);
  width: 200px;
  margin: 40px auto;
}

.about-questions {
  font-style: italic;
  color: var(--text);
  opacity: 0.9;
}

.about-soul {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--orange);
  line-height: 1.6;
  margin-top: 32px;
}

.about-contact {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ============================================================
   EDIȚIA TRECUTĂ
   ============================================================ */

.editia-trecuta {
  background: var(--bg-card);
  padding: 100px 0;
  text-align: center;
}

.editia-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.editia-trecuta .section-heading::after {
  margin-left: auto;
  margin-right: auto;
}

.editia-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.editia-video-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(42, 24, 16, 0.25);
}

/* YouTube Shorts — portrait 9:16 */
.editia-video-wrap--short {
  max-width: 360px;
  padding-bottom: 177.78%; /* 9:16 */
}

/* ── Video thumbnail ── */
.video-thumb {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(42, 24, 16, 0.3);
}

.video-thumb-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.4s ease;
}

.video-thumb:hover .video-thumb-img {
  transform: scale(1.03);
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 10, 7, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-play-btn:hover {
  background: rgba(13, 10, 7, 0.45);
}

.video-play-btn svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

@media (max-width: 767px) {
  .video-play-btn::after {
    content: 'Watch on YouTube';
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.85;
    white-space: nowrap;
  }
}

/* ── Video lightbox ── */
.video-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-lightbox-close {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  z-index: 10000;
  transition: background 0.2s ease;
}

.video-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.video-lightbox-inner {
  position: relative;
  width: min(360px, 90vw);
  padding-bottom: min(640px, 160vw);
  height: 0;
}

.video-lightbox-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
}

.editia-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .editia-trecuta {
    padding: 60px 0;
  }

  .video-thumb-img {
    height: 240px;
  }
}

/* ============================================================
   VENUE
   ============================================================ */

.venue {
  background: var(--bg);
  padding: 100px 0;
}

.venue-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.venue-subheading {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 400;
}

.venue-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 600px;
}

.venue-how-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 48px;
  margin-bottom: 24px;
}

.venue-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.venue-card {
  background: var(--bg-card);
  padding: 32px;
  border-left: 3px solid var(--orange);
  border-radius: 0 4px 4px 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.venue-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.venue-card-icon {
  margin-bottom: 12px;
  line-height: 1;
}

.venue-card-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 12px;
}

.venue-card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.venue-boat-note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
  text-align: center;
  margin-top: 32px;
}

.venue-map {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  margin-top: 48px;
  border-radius: 4px;
  filter: grayscale(80%) contrast(1.1);
}

@media (max-width: 768px) {
  .venue-cards {
    grid-template-columns: 1fr;
  }

  .venue-map {
    height: 250px;
  }
}

/* ============================================================
   CAZARE
   ============================================================ */

.cazare {
  background: #bda48f;
  padding: 100px 0;
}

.cazare-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.cazare-intro {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin-top: 16px;
}

.cazare-intro strong {
  color: var(--text);
}

.cazare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.cazare-card {
  background: var(--bg-card);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.cazare-card:hover {
  transform: translateY(-4px);
}

.cazare-img {
  height: 220px;
  overflow: hidden;
}

.cazare-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.cazare-card:hover .cazare-img img {
  transform: scale(1.05);
}

.cazare-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cazare-tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.cazare-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cazare-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}

.cazare-btn {
  display: block;
  text-align: center;
  width: 100%;
}

.cazare-maps-link {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.cazare-maps-link:hover {
  color: var(--orange);
}

@media (max-width: 900px) {
  .cazare-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* ============================================================
   ACTIVITĂȚI
   ============================================================ */

.activitati {
  background: var(--bg);
  padding: 70px 0;
}

.activitati-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

.activitati-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.act-card {
  background: var(--bg-card);
  padding: 28px 32px;
  border-radius: 0 4px 4px 0;
  border-top: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.act-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}

.act-card--orange {
  border-top-color: var(--orange);
}

.act-card--gold {
  border-top-color: var(--gold);
}

.act-emoji {
  line-height: 1;
  margin-bottom: 12px;
}

.act-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 12px;
}

.act-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

@media (max-width: 640px) {
  .activitati-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CE SĂ ADUCI — WHAT TO PACK
   ============================================================ */

.packing {
  background: var(--bg-card);
  padding: 80px 0;
}

.packing-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.packing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px;
  margin-top: 40px;
}

.packing-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.packing-item-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 7px;
}

.packing-item-name {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 4px;
}

.packing-item-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .packing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .packing-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GALERIE
   ============================================================ */

.gallery {
  background: var(--bg);
  padding: 80px 0 0;
}

.gallery-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}

/* ── Marquee wrap ── */
.gallery-stage {
  position: relative;
  width: 100%;
  margin-top: 48px;
}

.gallery-marquee-wrap {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  position: relative;
}

.gallery-marquee-wrap:active {
  cursor: grabbing;
}

.gallery-overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 48px 0 0 6%;
  pointer-events: none;
  z-index: 10;
  gap: 4px;
}

.gallery-overlay-text p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 4rem);
  color: #fff;
  text-align: center;
  line-height: 1.2;
  text-shadow:
    0 2px 40px rgba(0,0,0,0.6),
    0 0 80px rgba(0,0,0,0.4);
  letter-spacing: 0.02em;
}

.gallery-marquee {
  display: flex;
  gap: 6px;
  width: max-content;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  width: 380px;
  height: 520px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(42,24,16,0.85) 0%, transparent 100%);
  color: #f5ede3;
  padding: 36px 16px 16px;
  font-size: 13px;
  letter-spacing: 0.3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-empty {
  text-align: center;
  padding: 60px 40px;
  color: var(--text-muted);
  font-size: 15px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}


/* Gallery lightbox overlay */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(42, 24, 16, 0.95);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.open {
  opacity: 1;
}

.gallery-lightbox-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: default;
}

.gallery-lightbox img {
  max-width: 78vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 2px;
  transform: scale(0.96);
  transition: transform 0.35s ease;
}

.gallery-lightbox.open img {
  transform: scale(1);
}

.gallery-lightbox-caption {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(245, 237, 227, 0.72);
  text-align: center;
  letter-spacing: 0.3px;
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f5ede3;
  font-size: 2.2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gallery-lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 237, 227, 0.45);
  font-size: 12px;
  letter-spacing: 3px;
  font-family: 'Nunito', sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: #f5ede3;
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.gallery-lightbox-close:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .gallery-lightbox {
    gap: 12px;
    padding: 16px;
  }

  .gallery-lightbox img {
    max-width: 92vw;
    max-height: 72vh;
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .gallery-lightbox-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  background: #bda48f;
  padding: 100px 0;
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(42, 24, 16, 0.15);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--orange);
}

.faq-icon {
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a p {
  min-height: 0;
  padding: 0 0 24px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ============================================================
   SPONSORI
   ============================================================ */

.sponsors {
  background: #c8b09a;
  padding: 40px 0;
  border-top: 1px solid rgba(176, 132, 99, 0.3);
  border-bottom: 1px solid rgba(176, 132, 99, 0.3);
}

.sponsors-label {
  text-align: center;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.sponsors-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  opacity: 0.7;
  filter: grayscale(20%);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.sponsor-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.sponsor-item img {
  max-height: 52px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  display: block;
}

.sponsors-cta {
  text-align: center;
  margin-top: 32px;
}

.sponsors-btn {
  font-size: 12px;
  letter-spacing: 2px;
  padding: 10px 28px;
}

.sponsor-item--text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
  padding: 8px 20px;
  border: 1px solid rgba(176,132,99,0.45);
  border-radius: 2px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .sponsors-row {
    gap: 28px;
  }

  .sponsor-item {
    height: 40px;
  }

  .sponsor-item img {
    max-height: 40px;
    max-width: 100px;
  }
}

/* ============================================================
   EMAIL CAPTURE
   ============================================================ */

.email-capture {
  background: var(--orange);
  padding: 80px 0;
  text-align: center;
}

.email-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 12px;
}

.email-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin-bottom: 40px;
}

.email-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  background: #fff;
  color: #0d0a07;
  border-radius: 2px 0 0 2px;
  outline: none;
}

.email-input::placeholder {
  color: #999;
}

.email-btn {
  background: #2a1810;
  color: #fff;
  padding: 16px 28px;
  border: none;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.email-btn:hover {
  background: #3d2418;
}

.email-fine {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  font-size: 12px;
}

.email-success {
  font-size: 1.2rem;
  color: #fff;
  padding: 16px 0;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-8px); }
  40%       { transform: translateX(8px); }
  60%       { transform: translateX(-5px); }
  80%       { transform: translateX(5px); }
}

.email-input.shake {
  animation: shake 0.4s ease;
  outline: 2px solid #c0392b;
}

@media (max-width: 540px) {
  .email-form {
    flex-direction: column;
  }

  .email-input {
    border-radius: 2px 2px 0 0;
  }

  .email-btn {
    border-radius: 0 0 2px 2px;
  }
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2a1810;
  border-top: 1px solid rgba(176,132,99,0.4);
  padding: 18px 24px;
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 13px;
  color: #c8b09a;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.cookie-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-left: 6px;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.cookie-link:hover { opacity: 0.75; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Nunito', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.cookie-btn:hover { opacity: 0.8; }

.cookie-btn--accept {
  background: var(--orange);
  color: #fff;
}

.cookie-btn--decline {
  background: transparent;
  border: 1px solid rgba(176,132,99,0.5);
  color: #c8b09a;
}

@media (max-width: 600px) {
  .cookie-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #2a1810;
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 40px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 8px;
}

.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-col--center {
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--orange);
}

.footer-col--right {
  text-align: right;
}

.footer-social-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

.footer-social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  align-items: flex-end;
}

.footer-social-links a {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-social-links a:hover {
  color: var(--orange);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col--right {
    text-align: center;
  }

  .footer-social-links {
    align-items: center;
  }

  .footer-cta {
    width: 100%;
    text-align: center;
    display: block;
  }
}

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */

.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--orange);
  box-shadow: 0 -4px 20px rgba(176, 132, 99, 0.4);
}

.sticky-bar-link {
  display: block;
  text-align: center;
  padding: 14px 20px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .sticky-bar {
    display: block;
  }
}

/* ============================================================
   GLOBAL MOBILE FIXES (≤768px)
   ============================================================ */

@media (max-width: 768px) {
  body {
    padding-bottom: 56px; /* space for sticky bar */
  }

  /* Hero */
  .hero {
    padding-bottom: 80px;
  }

  .hero-edition {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .hero-sub {
    letter-spacing: 5px;
  }

  .hero-tagline {
    font-size: 1rem;
  }

  /* Date + Countdown */
  .hero-date {
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 12px;
  }

  /* Countdown — 3 pe un rând */
  .countdown {
    gap: 8px;
    width: 100%;
  }

  .cd-card {
    padding: 12px 10px;
    min-width: 0;
    flex: 1;
  }

  .cd-num {
    font-size: 2rem;
  }

  .cd-label {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero-logo-overlay {
    width: clamp(220px, 85vw, 360px);
  }

  .hero-cta {
    padding: 14px 36px;
    width: 100%;
    max-width: 300px;
  }

  /* Cazare */
  .cazare-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* Activitati */
  .activitati-grid {
    grid-template-columns: 1fr;
  }

  /* Split sections */
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }

  .split-reverse > * {
    direction: ltr;
  }

  .split .split-img,
  .split-reverse .split-img {
    order: -1;
  }

  .split-img img {
    min-height: 260px;
  }

  .split-text {
    padding: 40px 20px;
  }

  .split-body {
    max-width: 100%;
  }

  /* Sections padding */
  .strip-grid    { grid-template-columns: 1fr; }
  .strip-col     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.05); padding: 24px 20px; }
  .strip-col:last-child { border-bottom: none; }

  .venue-cards   { grid-template-columns: 1fr; }
  .venue-map     { height: 250px; }
}

/* ============================================================
   HERO DYNAMIC ELEMENTS
   ============================================================ */

.hero-early-bird {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease both;
}

.hero-tickets {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 10px;
}

/* ============================================================
   CARD HOVER — final polish
   ============================================================ */

.cazare-card {
  box-shadow: 0 0 0 rgba(176,132,99,0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cazare-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(176,132,99,0.15);
}

.act-card {
  transition: transform 0.3s ease, border-top-color 0.3s ease;
}

.lineup-card {
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.lineup-card:hover {
  transform: translateY(-2px);
}

/* ============================================================
   ELEMENTE BOEME
   ============================================================ */

/* ── Separator ornamental ── */
.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px 0;
}

.ornament-divider svg {
  width: min(500px, 88%);
  height: 22px;
  display: block;
}

/* ── Watermark lineup — dreapta, departe de carduri ── */
.lineup::before {
  background-position: right -40px center;
  background-size: 38%;
}

/* ── Sigiliu hero ── */
.seal-badge {
  position: absolute;
  bottom: 100px;
  right: 7%;
  width: 148px;
  height: 148px;
  transform: rotate(-11deg);
  opacity: 0.72;
  pointer-events: none;
  z-index: 2;
}

.seal-badge svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 1100px) {
  .seal-badge {
    right: 3%;
    width: 120px;
    height: 120px;
    bottom: 130px;
  }
}

@media (max-width: 768px) {
  .seal-badge {
    display: none;
  }
}

/* ── Rame tablou cazare ── */
.cazare-img {
  position: relative;
}

.cazare-img::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 2px rgba(176, 132, 99, 0.65),
    inset 0 0 0 5px rgba(232, 212, 188, 0.30),
    inset 0 0 0 8px rgba(154, 112, 80, 0.50),
    inset 0 0 0 11px rgba(232, 212, 188, 0.18),
    inset 0 0 0 14px rgba(176, 132, 99, 0.38);
  pointer-events: none;
  z-index: 2;
}

/* ============================================================
   PALETA CREM — overrides pentru hero și footer
   ============================================================ */

/* Navbar transparent (peste hero întunecat) — text deschis */
.navbar:not(.scrolled) .nav-logo,
.navbar:not(.scrolled) .nav-hamburger {
  color: #f5ede3;
}

.navbar:not(.scrolled) .nav-links li a {
  color: rgba(245, 237, 227, 0.8);
}

.navbar:not(.scrolled) .nav-links li a:hover {
  color: #f5ede3;
}

.navbar:not(.scrolled) .nav-mobile-link {
  color: rgba(245, 237, 227, 0.8);
}

/* Hero are overlay întunecat — text rămâne deschis */
.hero .hero-edition   { color: #D0B9A7; }
.hero .hero-sub       { color: var(--orange); }
.hero .hero-tagline   { color: rgba(245, 237, 227, 0.75); }
.hero .hero-note      { color: rgba(245, 237, 227, 0.6); }
.hero .cd-num         { color: #f5ede3; }
.hero .cd-label       { color: rgba(245, 237, 227, 0.6); }
.hero .countdown-done { color: #D0B9A7; }

/* Footer are fundal întunecat (#2a1810) — text deschis */
.footer,
.footer .footer-logo,
.footer .footer-tagline,
.footer .footer-copy,
.footer .footer-nav a,
.footer .footer-social-links a,
.footer .footer-social-label {
  color: #e8d8cc;
}

.footer .footer-nav a:hover,
.footer .footer-social-links a:hover {
  color: #B9937B;
}

.footer .footer-social-label {
  color: #B9937B;
}

/* ============================================================
   MOBILE OPTIMIZATIONS — comprehensive (≤480px)
   ============================================================ */

@media (max-width: 480px) {

  /* Hero — imagine portrait */
  .hero {
    background-image: url('/images/hero-bg-mobile.webp');
    background-position: center center;
    min-height: 100svh;
    padding-bottom: 60px;
    align-items: flex-start;
  }

  .hero-content {
    padding: 52px 20px 40px;
    width: 100%;
    max-width: 100%;
  }

  .hero-logo-overlay {
    width: clamp(220px, 86vw, 360px);
  }

  .hero-sub {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .hero-tagline {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-note {
    font-size: 12px;
    margin-top: 8px;
  }

  /* Section headings */
  .section-heading {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }

  /* Strip */
  .strip {
    padding: 28px 0;
  }

  /* Gallery marquee */
  .gallery-item {
    width: 240px;
    height: 320px;
  }

  .gallery-overlay-text {
    padding: 20px 0 0 5%;
  }
  .gallery-overlay-text p {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  /* Artists grid — 2 coloane */
  .lineup-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    gap: 8px;
  }
  .lineup-card {
    width: 100%;
    height: 155px;
  }
  .lineup-card-title {
    font-size: 1.3rem;
  }
  .lineup-sub {
    font-size: 12px;
  }

  /* Split sections */
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: auto;
  }
  .split-reverse > * { direction: ltr; }
  .split .split-img,
  .split-reverse .split-img { order: -1; }
  .split-img { height: 240px; }
  .split-img img { min-height: 240px; }
  .split-text { padding: 32px 20px; }
  .split-body { max-width: 100%; font-size: 14px; }

  /* About */
  .about-inner { padding: 40px 20px; }

  /* Venue */
  .venue-cards { grid-template-columns: 1fr; }
  .venue-map { height: 220px; }

  /* Cazare */
  .cazare-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .cazare-card { max-width: 100%; }

  /* Activitati */
  .activitati-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .activitati { padding: 50px 0; }

  /* FAQ */
  .faq { padding: 50px 0; }
  .faq-q { font-size: 14px; padding: 16px 0; }

  /* Sponsors */
  .sponsors-row { gap: 12px; }
  .sponsor-item--text {
    font-size: 13px;
    padding: 6px 14px;
  }
  .become-sponsor-btn { font-size: 12px; padding: 10px 20px; }

  /* Email capture */
  .email-form { flex-direction: column; }
  .email-input,
  .email-btn { width: 100%; box-sizing: border-box; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .footer-col--center nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
  }
  .footer-col--right { align-items: center; }
  .footer-logo { font-size: 1.2rem; }
}


/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--orange);
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
}


/* ============================================================
   WAVE DIVIDERS
   ============================================================ */

.wave-divider {
  display: block;
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

.wave-hero-strip {
  background: #1a1208;
}

.wave-dark-to-bg {
  background: var(--bg-card);
}

/* ============================================================
   SHIMMER — lineup placeholder cards (9)
   ============================================================ */

@keyframes card-shimmer {
  0%   { background-position: -400% 0; }
  100% { background-position: 400% 0; }
}

.lineup-card:not(.lineup-card--artist) {
  background: linear-gradient(
    90deg,
    var(--bg-card) 0%,
    rgba(176, 132, 99, 0.1) 40%,
    rgba(208, 185, 167, 0.2) 50%,
    rgba(176, 132, 99, 0.1) 60%,
    var(--bg-card) 100%
  );
  background-size: 400% 100%;
  animation: card-shimmer 3s ease-in-out infinite;
}

/* ============================================================
   SKELETON — gallery loading (6)
   ============================================================ */

.gallery-skeleton {
  display: flex;
  gap: 6px;
  overflow: hidden;
  padding: 0;
}

.gallery-skeleton-item {
  flex: 0 0 auto;
  width: 380px;
  height: 520px;
  background: linear-gradient(
    90deg,
    var(--bg-card) 0%,
    rgba(176, 132, 99, 0.1) 40%,
    rgba(208, 185, 167, 0.15) 50%,
    rgba(176, 132, 99, 0.1) 60%,
    var(--bg-card) 100%
  );
  background-size: 400% 100%;
  animation: card-shimmer 2s ease-in-out infinite;
  border-radius: 2px;
}

/* ============================================================
   BACK TO TOP (8)
   ============================================================ */

.back-to-top {
  position: fixed;
  bottom: 76px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(212, 132, 90, 0.45);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 68px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ============================================================
   VENUE TRANSFER (12)
   ============================================================ */

.venue-transfer {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--bg-card);
  border-left: 3px solid var(--orange);
  border-radius: 0 4px 4px 0;
  max-width: 560px;
}

.venue-transfer-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text);
  margin-bottom: 8px;
}

.venue-transfer-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.venue-transfer-btn {
  font-size: 12px !important;
  padding: 10px 24px !important;
  letter-spacing: 1.5px !important;
}

/* ============================================================
   NOSCRIPT FALLBACK (5)
   ============================================================ */

.noscript-lineup {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--bg-card);
  border-radius: 4px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.noscript-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.noscript-lineup ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.noscript-lineup li {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text);
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(42, 24, 16, 0.1);
}

.noscript-lineup li:last-child {
  border-bottom: none;
}

.noscript-more {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}
