@font-face {
  font-family: "Gauchito Font Family";
  src: url("assets/GauchitoFontFamily-Merged.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "My font";
  src: url("assets/Myfont-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --navy: #0e1c3f;
  --cream-yellow: #ffe5a2;
  --mustard: #f4b93e;
  --text: #131D1E;
  --accent: #A4BBFE;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "My font", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: #000;
  overflow-x: hidden;
}

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

.section-title {
  font-family: "Gauchito Font Family", sans-serif;
  font-size: clamp(2.4rem, 8vw, 7.7rem);
  font-weight: 900;
  margin-bottom: 1.8rem;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 3px;
  font-family: "Gauchito Font Family", sans-serif;
  font-weight: 400;
  text-decoration: none;
  font-size: 1rem;
  transition: transform .15s ease, opacity .15s ease;
  border: 3px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--mustard); color: var(--navy); }
.btn-outline { border: 3px solid #fff; color: #fff; background: transparent; }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-soldout {
  border: 3px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.5);
  cursor: default;
}
.btn-soldout:hover { transform: none; }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.5rem;
}
.logo img {
  height: 34px; width: auto;
  filter: brightness(0) invert(1);
  drop-shadow: 0 1px 3px rgba(0,0,0,.4);
}

.nav {
  display: flex;
  gap: 1.8rem;
  flex-shrink: 0;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.nav a:hover { color: var(--mustard); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}
.menu-toggle span {
  width: 26px; height: 3px;
  background: #fff;
  border-radius: 2px;
}

.logo { min-width: 0; flex-shrink: 1; }
.logo img { max-width: 100%; }

@media (max-width: 980px) {
  .nav { gap: 1rem; }
  .nav a { font-size: .85rem; }
}

@media (max-width: 760px) {
  .menu-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 62px; right: 0;
    flex-direction: column;
    background: var(--navy);
    width: 220px;
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform .25s ease;
    box-shadow: -4px 0 12px rgba(0,0,0,.2);
  }
  .nav a { font-size: 1rem; }
  .nav.open { transform: translateX(0); }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  background: #000;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.5) 100%);
}

/* ---------- GIRA ---------- */
.gira {
  position: relative;
  padding: 9rem 1.5rem 0;
  background: var(--navy) url("assets/gira-bg.jpg") top center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.gira .section-title { color: var(--cream-yellow); position: relative; z-index: 1; margin-bottom: 3rem; }

.gira-cloud {
  position: absolute;
  width: 160px;
  z-index: 0;
  pointer-events: none;
}
.gira-cloud-1 { top: 70px; left: -30px; width: 180px; }
.gira-cloud-2 { top: 200px; right: -40px; width: 170px; }
.gira-cloud-3 { display: none; }

.date-list {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 3rem;
}
.date-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem 1.5rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.date-row h3 {
  flex: 1 1 220px;
  font-family: "Gauchito Font Family", sans-serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  text-transform: uppercase;
}
.date-when {
  flex: 0 0 160px;
  font-family: "Gauchito Font Family", sans-serif;
  font-weight: 900;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  text-transform: uppercase;
  opacity: .95;
}
.date-where {
  flex: 1 1 160px;
  font-family: "Gauchito Font Family", sans-serif;
  font-weight: 800;
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  text-transform: uppercase;
  opacity: .9;
}
.date-row .btn { flex: 0 0 auto; }

@media (max-width: 760px) {
  .date-list { padding-bottom: 2rem; }
  .date-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: .25rem;
    padding: 1.4rem 0;
  }
  .date-row h3 {
    flex: none;
    font-size: 1.65rem;
    line-height: 1.05;
  }
  .date-when {
    flex: none;
    font-size: 1.2rem;
  }
  .date-where {
    flex: none;
    font-size: 1.05rem;
  }
  .date-row .btn {
    margin-top: .7rem;
    min-width: 170px;
  }

  .gira {
    background-image: none;
    background-color: var(--navy);
    padding-top: 7rem;
    padding-bottom: 3rem;
  }
  .gira-cloud-1 { top: 40px; width: 130px; }
  .gira-cloud-2 { top: 150px; width: 120px; }
  .gira-photo { display: none; }
}

.gira-photo {
  height: 60vh;
  min-height: 380px;
  background: url("assets/gira-bg.jpg") bottom center / cover no-repeat;
}

/* ---------- MERCH ---------- */
.merch {
  position: relative;
  background: var(--mustard);
  text-align: center;
}
.merch-visual { position: relative; }
.merch-img { width: 100%; height: auto; display: block; }
.merch-cta {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translateX(-50%);
  width: min(340px, 34%);
  transition: transform .15s ease;
}
.merch-cta img { width: 100%; height: auto; display: block; }
.merch-cta:hover { transform: translateX(-50%) translateY(-3px); }

.spotify-wrap {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: clamp(-260px, -18vw, -60px) auto 0;
  padding: 0 1.5rem 4rem;
  border-radius: 16px;
  overflow: hidden;
}

@media (max-width: 760px) {
  .merch-cta { top: 4%; width: min(300px, 52%); }
  .spotify-wrap { margin-top: -14vw; padding-bottom: 3rem; }
}

/* ---------- BIO ---------- */
.bio {
  position: relative;
  padding: 4rem 1.5rem 5rem;
  max-width: 1300px;
  margin: 0 auto;
  background: #000;
  color: #fff;
}
.bio .section-title { color: #fff; text-align: center; margin-bottom: 2.5rem; }

.bio-text p {
  font-family: "Gauchito Font Family", sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 2.5rem);
  font-weight: 900;
  line-height: 1.25;
  word-spacing: .2em;
  color: #fff;
  margin-bottom: 1.6rem;
}

/* ---------- CONTACTO ---------- */
.contacto {
  position: relative;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem 3rem;
}
.contacto .section-title,
.contacto .contact-email,
.contacto .social-row,
.contacto .footer-note {
  position: relative;
  z-index: 1;
}
.contacto .section-title { color: #fff; text-align: center; }
.contact-email {
  display: inline-block;
  color: #fff;
  font-family: "Gauchito Font Family", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-decoration: none;
  margin-bottom: 2rem;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.social-row a {
  width: 30px; height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, opacity .15s ease;
  opacity: .9;
}
.social-row a:hover { transform: translateY(-3px); opacity: 1; }
.social-row svg { width: 22px; height: 22px; }
.social-row a[aria-label="Instagram"] svg { fill: #E1306C; }
.social-row a[aria-label="X (Twitter)"] svg { fill: #fff; }
.social-row a[aria-label="YouTube"] svg { fill: #FF0000; }
.social-row a[aria-label="Apple Music"] svg { fill: #fff; }
.social-row a[aria-label="Spotify"] svg { fill: #1DB954; }
.social-row a[aria-label="TikTok"] svg { fill: #fff; }
.footer-note {
  font-size: .85rem;
  opacity: .7;
}
