:root {
  --gold: #E3B23C;
}

/* BASE */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}

.hidden {
  display: none;
}




.nav-link {
  transition: 0.3s;
}
.nav-link:hover {
  color: var(--gold);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  height: 100dvh; /* viewport dinámico real */
  background: rgba(0,0,0,0.95);

  display: flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-100vh);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);

  z-index: 40;
}

/* Visible */
.mobile-menu.active {
  transform: translateY(0);
}

/* Desktop: no existe */
@media (min-width: 768px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-link {
  text-align: center;
  transition: 0.3s;
}

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


/* NAV TYPOGRAPHY (DESKTOP + MOBILE) */
.nav-link,
.mobile-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 900; /* Black */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6A7282;
}

/* SOCIAL ICONS – NAVBAR */
header a img {
  transition: filter 0.25s ease, opacity 0.25s ease;
}

header a:hover img {
  filter: brightness(0) saturate(100%) invert(79%) sepia(52%) saturate(541%) hue-rotate(358deg) brightness(94%) contrast(93%);
}




/* HERO */
.hero-section {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,.95)),
    url('assets/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* SCROLL INDICATOR */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: scrollBounce 2s infinite;
}

.scroll-indicator img {
  width: 24px;
  height: auto;
  opacity: 0.9;
}

/* Animación sutil */
@keyframes scrollBounce {
  0% {
    transform: translate(-50%, 0);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, 10px);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 0);
    opacity: 0.8;
  }
}


/* SECTIONS */
.section-spacing {
  padding: 6rem 1.5rem;
}

.section-title {
  color: var(--gold);
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  text-align: center;
}

/* SHOWS HEADING */
.shows-heading {
  text-align: center;
  margin-bottom: 4rem;
}

.shows-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.shows-eyebrow .line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.eyebrow-text {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* TITLE */
.shows-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
}

.title-main {
  color: #ffffff;
}

.title-muted {
  color: #7A7F8C; /* gris azulado del diseño */
  margin-left: 0;
}


/* EVENTS */
.event-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.event-card {
  background: #111;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media(min-width:768px){
  .event-card {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.event-date {
  color: var(--gold);
  font-weight: 600;
}

/* BUTTON */
.btn-primary {
  background: var(--gold);
  color: #000;
  padding: .7rem 1.6rem;
  border-radius: .5rem;
  font-weight: 600;
  transition: .3s;
}
.btn-primary:hover {
  background: #fff;
}

.events-empty {
  max-width: 720px;
  margin: 0 auto;          /* 🔑 centra el bloque */
  padding: 3rem 1.5rem;
  text-align: center;
}

.empty-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.empty-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 2.5rem;
}



/* TEXT */
.body-text {
  opacity: .75;
}

/* EVENT CARD – NEW DESIGN */
.event-card-new {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;

  padding: 2rem;
  border-radius: 1rem;

  background: linear-gradient(
    180deg,
    #1b2023 0%,
    #15191c 100%
  );

  border: 1px solid rgba(255,255,255,0.06);
}

/* DATE BOX */
.event-date-box {
  background: #000;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
  min-width: 88px;
}

.event-month {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  opacity: 0.7;
}

.event-day {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

/* INFO */
.event-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.event-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.event-venue {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}

.event-city {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* CTA BUTTON */
.event-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  background: var(--gold);
  color: #000;

  padding: 1rem 1.75rem;
  border-radius: 0.75rem;

  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.event-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(227,178,60,0.25);
}

.ticket-icon {
  font-size: 1.1rem;
}

/* MOBILE */
@media (max-width: 768px) {
  .event-card-new {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: left;
  }

  .event-date-box {
    width: fit-content;
  }

  .event-cta {
    width: 100%;
    justify-content: center;
  }
}


/* GENERIC SECTION HEADING */
.section-heading {
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-eyebrow .line {
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.section-eyebrow .eyebrow-text {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}



.title-separator {
  color: rgba(255,255,255,0.6);
  margin: 0 0.25em;
}

/* MOBILE TWEAK */
@media (max-width: 640px) {
  .section-heading {
    margin-bottom: 2.5rem;
  }
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 4rem;
  }
}

.about-copy {
  margin-top: 2.75rem;
}

@media (max-width: 768px) {
  .about-copy {
    margin-top: 2rem;
  }
}


/* IMAGE */
.about-image img {
  width: 100%;
  border-radius: 1rem;
  background: #111;
}

/* TEXT CONTENT */
.about-content {
  max-width: 520px;
}

/* EYEBROW (reuse system) */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-eyebrow .line {
  width: 56px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.eyebrow-text {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* TITLE */
.section-title-large {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 2.75rem;
}

.title-separator {
  color: rgba(255,255,255,0.6);
}

/* BODY TEXT */
.about-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #99A1AF;
  margin-bottom: 1.5rem;
}


/* CONTACT */
.contact-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}
.contact-link:hover {
  color:#fff;
  text-decoration: underline;
}

/* CONTACT SECTION */
.contact-section {
  background: linear-gradient(
    180deg,
    #1b2023 0%,
    #15191c 100%
  );
  padding: 6rem 1.5rem;
}

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

.contact-inner .shows-title {
  margin-bottom: 2rem; /* separa del kicker */
}



/* KICKER */
.contact-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}

/* TEXT */
.contact-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
}

/* WHATSAPP LINK */
.contact-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;

  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;

  margin-bottom: 2.5rem;
}

.contact-whatsapp img {
  width: 28px;
  height: 28px;
}

/* SOCIAL ICONS */
.contact-socials {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.contact-socials a {
  font-size: 1.25rem;
  color: rgba(227,178,60,0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-socials a:hover {
  color: var(--gold);
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-link {
  display: inline-flex;
  width: 28px;
  height: 28px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-link img {
  width: 100%;
  height: 100%;
  filter: brightness(0) saturate(100%) invert(85%);
  transition: filter 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link:hover img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(77%) saturate(434%) hue-rotate(6deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-section {
    padding: 4rem 1.5rem;
  }

  .contact-title {
    font-size: 2rem;
  }
}

/* FOOTER */
.site-footer {
  padding: 2.5rem 1.5rem;
  background: #0e1114;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(153,161,175,0.6); /* mismo tono que about-text */
}
