:root {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
  font-weight: 400;
  color-scheme: dark;
  --gold: #f8d07a;
  --amber: #f59f45;
  --forest: #143a2a;
  --carbon: #0b0c0f;
  --sand: #b7865f;
  color: #fef6e8;
  background-color: var(--carbon);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 10% 10%, rgba(245, 159, 69, 0.25), transparent 55%),
    radial-gradient(circle at 70% 0%, rgba(20, 58, 42, 0.35), transparent 60%),
    var(--carbon);
  min-height: 100vh;
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Crect fill='%23000000' fill-opacity='0' width='160' height='160'/%3E%3Ccircle fill='%23ffffff' fill-opacity='0.02' cx='40' cy='40' r='1'/%3E%3Ccircle fill='%23ffffff' fill-opacity='0.01' cx='120' cy='80' r='1'/%3E%3Ccircle fill='%23ffffff' fill-opacity='0.02' cx='80' cy='120' r='1'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: screen;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(10px);
  background: rgba(11, 12, 15, 0.85);
  border-bottom: 1px solid rgba(248, 208, 122, 0.15);
}

.container {
  width: min(1400px, 90vw);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

nav a {
  color: rgba(254, 246, 232, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.cta {
  border: 1px solid rgba(248, 208, 122, 0.5);
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  color: var(--gold);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.cta.primary {
  background: linear-gradient(120deg, var(--gold), var(--amber));
  color: #1b140c;
  border: none;
}

.cta.secondary {
  border-color: rgba(20, 58, 42, 0.7);
  color: var(--forest);
  background: rgba(248, 208, 122, 0.08);
}

.cta.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.hero {
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
  color: #fff7e6;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 12, 15, 0.25) 0%,
    rgba(11, 12, 15, 0.4) 50%,
    rgba(11, 12, 15, 0.7) 100%
  );
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Overlay radial detrás del contenido del texto para mejorar legibilidad */
  background: radial-gradient(
    ellipse 80% 100% at 30% 70%,
    rgba(11, 12, 15, 0.35) 0%,
    rgba(11, 12, 15, 0.2) 40%,
    transparent 70%
  );
  z-index: 2;
}

.hero-poster {
  background: linear-gradient(
      180deg,
      rgba(11, 12, 15, 0.5) 0%,
      rgba(11, 12, 15, 0.65) 50%,
      rgba(11, 12, 15, 0.8) 100%
    ),
    url("design/HOZHO FILTER.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-copy h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 40px rgba(0, 0, 0, 0.6);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  background: rgba(248, 208, 122, 0.15);
  border: 1px solid rgba(248, 208, 122, 0.5);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  color: var(--gold);
  margin-bottom: 1.6rem
}

.hero-media {
  position: relative;
  min-height: 320px;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media .media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.5rem;
  font-size: 2rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 1.75rem;
  color: rgba(248, 208, 122, 0.8);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.lead {
  font-size: 1.1rem;
  color: #ffe7c9;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.countdown {
  display: flex;
  gap: 2rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1.25rem;
  background: rgba(11, 12, 15, 0.6);
  border: 1px solid rgba(248, 208, 122, 0.3);
  border-radius: 1rem;
  min-width: 100px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.countdown-item:hover {
  background: rgba(11, 12, 15, 0.75);
  border-color: rgba(248, 208, 122, 0.5);
  transform: translateY(-2px);
}

.countdown-number {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(248, 208, 122, 0.5), 0 4px 40px rgba(0, 0, 0, 0.8);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 231, 201, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-glow {
  position: absolute;
  inset: 10% auto auto 45%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 159, 69, 0.25), transparent 70%);
  filter: blur(20px);
  z-index: 2;
  opacity: 0.6;
}

/* Animaciones de scroll */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.scroll-animate-delay-1 {
  transition-delay: 0.1s;
}

.scroll-animate-delay-2 {
  transition-delay: 0.2s;
}

.scroll-animate-delay-3 {
  transition-delay: 0.3s;
}

.scroll-animate-delay-4 {
  transition-delay: 0.4s;
}

.scroll-fade {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.scroll-fade.animate-in {
  opacity: 1;
}

.scroll-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-scale.animate-in {
  opacity: 1;
  transform: scale(1);
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: rgba(255, 231, 201, 0.85);
}

.pillars {
  padding: 6rem 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: rgba(21, 20, 17, 0.6);
  border: 1px solid rgba(248, 208, 122, 0.08);
  padding: 2rem;
  border-radius: 1.25rem;
  min-height: 220px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.card-label {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(248, 208, 122, 0.75);
  margin-bottom: 0.1rem;
}

.stages {
  padding: 5rem 0 4rem;
  background: linear-gradient(
      180deg,
      rgba(20, 58, 42, 0.5) 0%,
      rgba(20, 58, 42, 0.65) 50%,
      rgba(20, 58, 42, 0.8) 100%
    ),
    url("design/SOCIAL FILTER 10.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.stages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 58, 42, 0.25) 0%,
    rgba(20, 58, 42, 0.4) 50%,
    rgba(20, 58, 42, 0.7) 100%
  );
  z-index: 1;
}

.stages .container {
  position: relative;
  z-index: 2;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}

.stage-card {
  background: rgba(11, 12, 15, 0.95);
  border: 1px solid rgba(248, 208, 122, 0.12);
  border-radius: 1.5rem;
  padding: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stage-headliner {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0.4rem 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stage-copy {
  color: rgba(255, 231, 201, 0.8);
  margin-bottom: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

.stage-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.stage-card ul li {
  margin: 0;
  padding: 0;
}

.stage-art {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(248, 208, 122, 0.15);
  max-height: 400px;
  min-height: 350px;
}

.stage-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-lineup {
  padding: 4rem 0;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.support-lineup h3 {
  margin-top: 0.2rem;
}

.name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.name-pill {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(248, 208, 122, 0.3);
  border-radius: 999px;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  cursor: pointer;
}

.name-pill:hover {
  border-color: rgba(248, 208, 122, 0.6);
  background: rgba(248, 208, 122, 0.1);
  transform: translateY(-2px);
}

.name-pill:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.lineup {
  padding: 6rem 0;
  background: rgba(20, 58, 42, 0.2);
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.lineup-day {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(248, 208, 122, 0.15);
  background: rgba(11, 12, 15, 0.7);
}

.lineup-day ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0;
  color: #f7f7ff;
}

.history {
  padding: 6rem 0;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.timeline {
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  background: linear-gradient(120deg, #f9b16e, #f68080);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(249, 177, 110, 0.7);
}

.timeline-year {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bdb5ff;
  margin-bottom: 0.35rem;
}

.media {
  padding: 6rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.media-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tickets {
  padding: 6rem 0 7rem;
}

.ticket-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.ticket-card {
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.3);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  text-decoration: none;
  color: #d4cfff;
  font-size: 0.9rem;
}

.muted {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Artists Section */
.artists {
  padding: 6rem 0;
  background: rgba(11, 12, 15, 0.4);
  position: relative;
}

.artists-section {
  margin-bottom: 4rem;
}

.artists-section:last-child {
  margin-bottom: 0;
}

.artists-section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248, 208, 122, 0.9);
  margin-bottom: 2rem;
  text-align: center;
}

.artists-grid {
  display: grid;
  gap: 2rem;
}

.artists-grid--headliners {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
}

.artists-grid--support {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.artists-grid--emerging {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.artist-card {
  background: rgba(11, 12, 15, 0.95);
  border: 1px solid rgba(248, 208, 122, 0.12);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.artist-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(248, 208, 122, 0.3);
}

.artist-card--headliner {
  min-height: 500px;
}

.artist-card--support {
  min-height: 420px;
}

.artist-card--emerging {
  min-height: 380px;
}

.artist-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: rgba(20, 58, 42, 0.3);
}

.artist-card--headliner .artist-image {
  height: 380px;
}

.artist-card--support .artist-image {
  height: 500px;
}

.artist-card--emerging .artist-image {
  height: 410px;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.artist-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(20, 58, 42, 0.4), rgba(11, 12, 15, 0.6));
  color: rgba(248, 208, 122, 0.5);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
  font-style: italic;
}

.artist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(11, 12, 15, 0.3) 50%,
    rgba(11, 12, 15, 0.8) 100%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.artist-card:hover .artist-overlay {
  opacity: 0.7;
}

.artist-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.artist-card--headliner .artist-content {
  padding: 2.5rem;
}

.artist-name {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-weight: 700;
}

.artist-card--headliner .artist-name {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.artist-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.artist-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.artist-badge--reverb {
  background: rgba(248, 208, 122, 0.15);
  border: 1px solid rgba(248, 208, 122, 0.4);
  color: var(--gold);
}

.artist-badge--kulto {
  background: rgba(20, 58, 42, 0.4);
  border: 1px solid rgba(20, 58, 42, 0.7);
  color: rgba(183, 134, 95, 0.9);
}

.artist-role {
  font-size: 0.85rem;
  color: rgba(255, 231, 201, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.artist-description {
  color: rgba(255, 231, 201, 0.85);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.artist-card--headliner .artist-description {
  font-size: 1.05rem;
}

.artist-card--support .artist-description,
.artist-card--emerging .artist-description {
  font-size: 0.95rem;
}

.artist-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.artist-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(248, 208, 122, 0.1);
  border: 1px solid rgba(248, 208, 122, 0.3);
  color: var(--gold);
  text-decoration: none;
  transition: all 0.2s ease;
}

.artist-link:hover {
  background: rgba(248, 208, 122, 0.2);
  border-color: rgba(248, 208, 122, 0.5);
  transform: translateY(-2px);
}

.artist-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.artist-link svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  nav {
    flex-basis: 100%;
    justify-content: center;
  }

  .hero {
    padding-top: 6rem;
  }

  .artists {
    padding: 4rem 0;
  }

  .artists-section {
    margin-bottom: 3rem;
  }

  .artists-section-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .artists-grid--headliners {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .artists-grid--support {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .artists-grid--emerging {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .artist-card--headliner {
    min-height: auto;
  }

  .artist-card--support {
    min-height: auto;
  }

  .artist-card--emerging {
    min-height: auto;
  }

  .artist-image {
    height: 250px;
  }

  .artist-card--headliner .artist-image {
    height: 280px;
  }

  .artist-card--support .artist-image {
    height: 220px;
  }

  .artist-card--emerging .artist-image {
    height: 200px;
  }

  .artist-content {
    padding: 1.5rem;
  }

  .artist-card--headliner .artist-content {
    padding: 2rem;
  }
}

