/* ─── VARIABLES ─────────────────────────────────────── */
:root {
  --bg:           #0a1a10;
  --bg-2:         #060e09;
  --bg-3:         #0f2318;
  --green:        #52b788;
  --green-mid:    #2d6a4f;
  --green-dark:   #1a3a28;
  --header-lime:  #a8c86f;
  --header-mint:  #26b77a;
  --header-emerald:#087a45;
  --header-forest:#092b18;
  --gray-mid:     #6b6b6b;
  --gray-light:   #b0b0b0;
  --pointcloud-bg:#000;
  --pointcloud-panel: rgba(0,0,0,0.82);
  --cream:        #f5f0e0;
  --nav-h:        90px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--pointcloud-bg);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}
body.has-pointcloud {
  background: var(--pointcloud-bg) !important;
  color: var(--cream);
}

/* ─── POINT CLOUD CANVAS ─────────────────────────────── */
#pc-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;          /* sits above body bg, below all content */
  pointer-events: none;
}

/* Sections need z-index:1 to stack above the canvas.
   Semi-transparent backgrounds let the glow bleed through. */
body.has-pointcloud .hero            { position: relative; z-index: 1; }
body.has-pointcloud .shows           { position: relative; z-index: 1; background: var(--pointcloud-panel); }
body.has-pointcloud .music           { position: relative; z-index: 1; background: var(--pointcloud-panel); }
body.has-pointcloud .merch-hero      { position: relative; z-index: 1; }
body.has-pointcloud .gallery         { position: relative; z-index: 1; background: var(--pointcloud-panel); }
body.has-pointcloud .newsletter-hero { position: relative; z-index: 1; }
body.has-pointcloud .music-page,
body.has-pointcloud .videos-page,
body.has-pointcloud .tour-page,
body.has-pointcloud .shop-page,
body.has-pointcloud .bio-page,
body.has-pointcloud .contact-page {
  position: relative;
  z-index: 1;
  background: var(--pointcloud-panel) !important;
}
body.has-pointcloud .contact-page { background-image: none !important; }
body.has-pointcloud .music-page { color: var(--cream) !important; }
body.has-pointcloud .music-page h1,
body.has-pointcloud .contact-page h1 { color: var(--green) !important; }
body.has-pointcloud .music-quote { color: var(--gray-light) !important; }
body.has-pointcloud footer           { position: relative; z-index: 1; background: rgba(6,14,9,0.90); }
body.has-pointcloud .lightbox,
body.has-pointcloud .video-modal     { z-index: 10001; }

/* ─── NAV ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  background:
    radial-gradient(circle at 52% 0%, rgba(168,200,111,0.62) 0%, rgba(38,183,122,0.28) 34%, transparent 62%),
    linear-gradient(100deg, var(--header-forest) 0%, var(--header-emerald) 36%, var(--header-mint) 68%, #324f18 100%);
  border-bottom: 1px solid rgba(245,240,224,0.18);
  box-shadow: 0 12px 28px rgba(6,14,9,0.24);
}

.nav-left, .nav-right {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  flex: 1;
}
.nav-right { justify-content: flex-end; }

.nav-left a, .nav-right a {
  color: rgba(245,240,224,0.94);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(6,14,9,0.42);
  transition: color 0.25s, opacity 0.25s;
}
.nav-left a:hover, .nav-right a:hover,
.nav-left a.active, .nav-right a.active { color: var(--cream); opacity: 0.72; }

.nav-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 0 2rem;
}

.nav-logo img {
  height: 42px;
  filter: brightness(0) invert(1) sepia(0.12) saturate(0.8) drop-shadow(0 2px 10px rgba(6,14,9,0.35));
  display: block;
}

.nav-platforms {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-platforms a {
  color: rgba(245,240,224,0.9);
  display: flex;
  align-items: center;
  transition: color 0.25s, transform 0.2s;
}
.nav-platforms a svg { width: 15px; height: 15px; fill: currentColor; }
.nav-platforms a:hover { color: var(--cream); transform: translateY(-1px); }

.nav-lang {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 1.5rem;
}
.nav-lang a {
  color: rgba(245,240,224,0.62);
  text-decoration: none;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-lang a.active { color: var(--cream); }
.nav-lang a:hover  { color: var(--cream); }
.nav-lang span { color: rgba(245,240,224,0.46); font-size: 0.62rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  margin-left: 1rem;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ─── HERO CAROUSEL ──────────────────────────────────── */
.hero {
  position: relative;
  width: 100vw;
  height: calc(100vh - var(--nav-h));
  overflow: hidden;
  margin-top: var(--nav-h);
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.77,0,0.175,1);
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,14,9,0.3) 0%, rgba(6,14,9,0.6) 100%);
}

.esmeralda-hero {
  min-height: calc(100vh - var(--nav-h));
  padding: 0;
  background: transparent;
}

.esmeralda-preview {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--nav-h));
  min-height: calc(100vh - var(--nav-h));
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: #000;
}

.esmeralda-preview iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.esmeralda-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.16) 0%, rgba(0,0,0,0) 36%, rgba(0,0,0,0.34) 100%),
    radial-gradient(circle at 50% 92%, rgba(82,183,136,0.18) 0%, transparent 42%);
}

.esmeralda-cta {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(360px, calc(100% - 2rem));
  padding: 1rem 2.4rem;
  border: 2px solid rgba(245,240,224,0.86);
  background: rgba(8,122,69,0.82);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0,0,0,0.38);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.esmeralda-cta:hover {
  background: var(--cream);
  color: var(--bg);
  transform: translateX(-50%) translateY(-2px);
}

.hero-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(6,14,9,0.5);
  border: 1px solid rgba(82,183,136,0.4);
  color: var(--green);
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
  line-height: 1;
}
.carousel-btn:hover { background: rgba(82,183,136,0.2); }
.carousel-btn.prev { left: 1.5rem; }
.carousel-btn.next { right: 1.5rem; }

.carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(82,183,136,0.4);
  cursor: pointer;
  transition: background 0.25s;
}
.dot.active { background: var(--green); }

/* ─── VIDEO SLIDE ────────────────────────────────────── */
.slide-video { cursor: pointer; }
.slide-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 76px; height: 76px;
  background: rgba(255,0,0,0.88);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  transition: transform 0.2s, background 0.2s;
}
.slide-video:hover .slide-play-btn {
  background: #ff0000;
  transform: translate(-50%, -50%) scale(1.1);
}

/* ─── VIDEO MODAL ────────────────────────────────────── */
.video-modal {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  align-items: center; justify-content: center;
}
.video-modal.open { display: flex; }
.video-modal-inner {
  position: relative;
  width: 92%; max-width: 960px;
  aspect-ratio: 16/9;
}
.video-modal-inner iframe { width: 100%; height: 100%; border: none; }
.video-modal-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none;
  color: #fff; font-size: 2rem;
  cursor: pointer; line-height: 1; opacity: 0.8;
}
.video-modal-close:hover { opacity: 1; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.8rem 2.4rem;
  border: 2px solid var(--green);
  color: var(--cream);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-filled { background: var(--green-mid); }
.btn:hover {
  background: var(--green);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(82,183,136,0.3);
}

/* ─── SECTION COMMON ─────────────────────────────────── */
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.8rem;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 2.5rem;
  text-align: center;
}
section { padding: 6rem 3rem; }

/* ─── SHOWS ──────────────────────────────────────────── */
.shows { background: var(--bg-2); }
.coming-soon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  text-align: center;
}
.coming-soon-label {
  display: inline-block;
  padding: 0.5rem 2rem;
  border: 1px solid rgba(82,183,136,0.4);
  color: var(--gray-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.coming-soon-wrap p { color: var(--gray-mid); font-size: 0.85rem; }

/* ─── MUSIC ──────────────────────────────────────────── */
.music {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 100%);
  text-align: center;
}
.music-embed {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(82,183,136,0.15);
}

/* ─── MERCH ──────────────────────────────────────────── */
.merch-hero {
  position: relative;
  width: 100%;
  height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 5rem;
}
.merch-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,14,9,0.1) 40%, rgba(6,14,9,0.75) 100%);
}
.merch-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.merch-hero-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ─── GALLERY ────────────────────────────────────────── */
.gallery { background: var(--bg); padding: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  width: 100%;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.85);
  transition: filter 0.4s, transform 0.4s;
}
.gallery-item:hover img {
  filter: saturate(1.1) brightness(1.05);
  transform: scale(1.06);
}
.gallery-item::after {
  content: '+';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--green);
  opacity: 0;
  background: rgba(6,14,9,0.4);
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ─── LIGHTBOX ───────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6,14,9,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(82,183,136,0.2);
}
.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.lb-close:hover { color: var(--green); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(6,14,9,0.6);
  border: 1px solid rgba(82,183,136,0.3);
  color: var(--green);
  font-size: 2rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.25s;
}
.lb-prev:hover, .lb-next:hover { background: rgba(82,183,136,0.2); }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }

/* ─── NEWSLETTER ─────────────────────────────────────── */
/* ─── NEWSLETTER HERO (new layout matching original) ─── */
.newsletter-hero {
  display: flex;
  min-height: 460px;
  position: relative;
  overflow: hidden;
}
.newsletter-photo {
  width: 45%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.newsletter-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%);
  display: block;
}
.newsletter-right {
  flex: 1;
  background: #e8e4d8;
  background-image: radial-gradient(circle, rgba(0,0,0,0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2.5rem;
}
.newsletter-card {
  border: 2px solid #c0392b;
  padding: 2.8rem 2.5rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
}
.newsletter-card h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.4rem;
  color: #c0392b;
  letter-spacing: .06em;
  margin-bottom: .5rem;
}
.newsletter-card p {
  color: #555;
  font-size: .9rem;
  margin-bottom: 1.6rem;
  letter-spacing: .02em;
}
.newsletter-form-new {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.newsletter-form-new input {
  width: 100%;
  padding: .85rem 1.2rem;
  border: 1px solid #ccc;
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  color: #333;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
.newsletter-form-new input:focus { border-color: #c0392b; }
.newsletter-form-new input::placeholder { color: #aaa; }
.newsletter-form-new button {
  padding: .9rem;
  background: #c0392b;
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
}
.newsletter-form-new button:hover { background: #a93226; }

/* keep old .newsletter class for EN pages that still use it */
.newsletter {
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  text-align: center;
  padding: 5rem 2rem;
}
.newsletter .sub-text {
  color: var(--gray-light);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(82,183,136,0.3);
  border-right: none;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  outline: none;
}
.newsletter-form input[type="email"]:focus { border-color: var(--green); }
.newsletter-form input[type="email"]::placeholder { color: var(--gray-mid); }
.newsletter-form button {
  padding: 1rem 1.6rem;
  background: var(--green-mid);
  border: 1px solid var(--green);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--green); color: var(--bg); }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(82,183,136,0.12);
  padding: 3rem 2rem;
  text-align: center;
}
.footer-logo { margin-bottom: 1.8rem; }
.footer-logo img {
  height: 28px;
  filter: brightness(0) saturate(100%) invert(73%) sepia(25%) saturate(500%) hue-rotate(105deg) brightness(65%);
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}
.footer-social a {
  color: var(--gray-mid);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.25s, transform 0.2s;
}
.footer-social a svg { width: 20px; height: 20px; fill: currentColor; }
.footer-social a:hover { color: var(--green); transform: translateY(-2px); }
footer p { color: var(--gray-mid); font-size: 0.7rem; letter-spacing: 0.1em; }

/* ─── PAGE CONTENT (sub-pages) ───────────────────────── */
.page-content {
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  padding: 5rem 3rem;
}
.page-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: var(--green);
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
  text-align: center;
}

/* ─── MOBILE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 1.2rem; height: var(--nav-h); }

  .nav-left, .nav-right {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background:
      radial-gradient(circle at 50% 0%, rgba(168,200,111,0.36) 0%, transparent 58%),
      linear-gradient(135deg, var(--header-forest) 0%, var(--header-emerald) 58%, #324f18 100%);
    flex-direction: column;
    padding: 2rem;
    gap: 1.6rem;
    display: none;
    border-bottom: 1px solid rgba(245,240,224,0.16);
    z-index: 999;
  }
  .nav-left.open, .nav-right.open { display: flex; }

  .hamburger { display: flex; }

  .nav-lang { margin-left: 0.5rem; }

  .nav-right { top: calc(var(--nav-h) + 200px); }

  .hero { height: 70vh; }
  .esmeralda-hero { height: auto; min-height: 70vh; padding: 0; }
  .esmeralda-preview { width: 100%; height: 70vh; min-height: 360px; }
  .esmeralda-cta { bottom: 1.2rem; padding: 0.9rem 1.4rem; font-size: 0.68rem; letter-spacing: 0.16em; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }

  section { padding: 4rem 1.5rem; }

  .section-title { font-size: 2.6rem; }

  .merch-hero { height: 60vh; }
  .merch-hero-content h2 { font-size: 3rem; }

  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { border-right: 1px solid rgba(82,183,136,0.3); border-bottom: none; }

  /* newsletter hero mobile */
  .newsletter-hero { flex-direction: column; }
  .newsletter-photo { width: 100%; height: 280px; }
  .newsletter-right { padding: 2rem 1.2rem; }
  .newsletter-card { padding: 2rem 1.5rem; }
  .newsletter-card h2 { font-size: 2.6rem; }
}

@media (max-width: 480px) {
  .carousel-btn { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}
