/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --orange:  #FF4E00;
  --orange1: #eb7746;
  --teal:    #00C8B8;
  --black:   #0A0A0A;
  --dark:    #141414;
  --mid:     #1E1E1E;
  --light:   #F0F0F0;
  --muted:   #888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── NAV ────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2.5rem;
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,78,0,0.15);
}

.nav-logo img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 0.55em 1.3em;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO ───────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2.5rem 4rem 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #0d2b2b;
  background-image: url('../img/image00011.png');
  background-size: cover;
  background-position: center 50%;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10,10,10,0.88) 10%, rgba(10,10,10,0.1) 50%, transparent 100%),
    linear-gradient(to right, rgba(10,10,10,0.4) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 6rem;
  padding-left: 3rem;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}
.hero-name {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: 0.9;
  color: var(--light);
  animation: heroIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-name-box {
  display: inline-block;
  position: relative;
  color: var(--orange);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  letter-spacing: 0.3em;
  color: var(--teal);
  margin-top: 0.2em;
  animation: heroIn 0.8s 0.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-logo {
  width: clamp(300px, 55vw, 700px);
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
  margin-left: 0;
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: var(--muted);
  max-width: 400px;
  line-height: 1.6;
  animation: heroIn 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  animation: heroIn 0.8s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85em 1.8em;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(240,240,240,0.3);
  color: var(--light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85em 1.8em;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ── TICKER ─────────────────────────────────────────── */
.ticker {
  background: var(--orange);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.7rem 0;
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 18s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 0 2.5rem;
}
.ticker-sep {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(255,255,255,0.4);
  padding: 0 0.5rem;
}

/* ── SECTIONS BASE ──────────────────────────────────── */
section { padding: 6rem 2.5rem; }
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  color: var(--light);
}

/* ── ABOUT ──────────────────────────────────────────── */
#about {
  background: var(--dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-title { margin-bottom: 1.5rem; }
.about-text p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat {
  border-left: 2px solid var(--orange);
  padding-left: 1rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--light);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}
.about-visual { position: relative; }
.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--mid);
  background-image: url('../img/foto1.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.about-visual::before {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  width: 60px; height: 60px;
  border-top: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: -12px; left: -12px;
  width: 60px; height: 60px;
  border-bottom: 3px solid var(--orange);
  border-left: 3px solid var(--orange);
}

/* ── SHOWS ──────────────────────────────────────────── */
#shows {
  background-color: var(--black);
  background-image: url('../img/foto2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

#shows::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.7);
}
#shows .shows-header,
#shows .shows-list {
  position: relative;
  z-index: 1;
}

.shows-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}
.shows-list {
  display: flex;
  flex-direction: column;
}
.show-item {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(240,240,240,0.08);
  transition: background 0.2s, padding-left 0.2s;
}
.show-item:first-child { border-top: 1px solid rgba(240,240,240,0.08); }
.show-item:hover { background: rgba(255,78,0,0.04); padding-left: 1rem; }
.show-date {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  line-height: 1;
}
.show-date span {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.1rem;
}
.show-event { font-weight: 600; font-size: 1.05rem; }
.show-location {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.show-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3em 0.8em;
  border: 1px solid var(--orange);
  color: var(--orange);
}
.show-btn {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--orange);
  color: #fff;
  padding: 0.6em 1.4em;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.show-btn:hover { opacity: 0.85; }

/* ── MUSIC ──────────────────────────────────────────── */
#music {
  background: var(--dark);
  text-align: center;
}
#music .section-title { margin-bottom: 0.5rem; }
.section-desc {
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 0.95rem;
}
.spotify-embed {
  max-width: 700px;
  margin: 0 auto 2rem;
}
.platforms {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.platform-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid rgba(240,240,240,0.12);
  padding: 0.7em 1.4em;
  transition: border-color 0.2s, color 0.2s;
}
.platform-link:hover { border-color: var(--orange); color: var(--orange); }

/* ── CONTACT ────────────────────────────────────────── */
#contact {
  background: var(--orange);
  padding: 5rem 2.5rem;
  text-align: center;
}
#contact .section-label { color: rgba(255,255,255,0.6); }
#contact .section-title { color: #fff; margin-bottom: 1rem; }
#contact p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 2rem; }
.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.contact-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 0.1em;
  transition: border-color 0.2s;
}
.contact-link:hover { border-color: #fff; }

/* ── FOOTER ─────────────────────────────────────────── */
footer {
  background: #000;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.footer-logo {
  height: 50px;
  width: auto;
}

/* ── ANIMATIONS ─────────────────────────────────────── */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.2rem; }
  .nav-links, .nav-cta { display: none; }
  section { padding: 4rem 1.2rem; }
  #hero { padding: 0 1.2rem 3rem; }
  #about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-visual { order: -1; }
  .shows-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .show-item { grid-template-columns: 60px 1fr; gap: 1rem; }
  .show-tag, .show-btn { display: none; }
  footer { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-name, .hero-sub, .hero-desc, .hero-actions,
  .ticker-inner, .scroll-line { animation: none; }
}

/* ── SCROLL REVEAL ──────────────────────────────────── */
.hidden {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── COOKIE BANNER ──────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: #111;
  border-top: 1px solid rgba(255,78,0,0.3);
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}
#cookie-banner a {
  color: var(--orange);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}
#cookie-accept {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 0.55em 1.3em;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
#cookie-reject {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(240,240,240,0.2);
  padding: 0.55em 1.3em;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
#cookie-reject:hover { border-color: var(--muted); color: var(--light); }