@charset "UTF-8";
/* HERO */
.hero {
  background-image: url("/images/hernan.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 4rem;
  margin-bottom: 0.5rem;
  color: #fdd835;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.16em;
}

.btn-primary {
  background-color: #f59745;
  color: white;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #d87c00;
}

/* LOGO EN EL HERO */
.hero-logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 2;
  width: 80px; /* Podés ajustar el tamaño */
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
  color: #fdd835;
}

/* SECCION > SOBRE MI */
.about {
  background-color: #181818;
  padding: 4rem 1.5rem;
  min-height: 100vh;
  color: #fff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.08em;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: auto;
  padding: 3rem 1.5rem;
}

.about-image img {
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.about-text {
  text-align: center;
}

.about-text h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 1rem;
  color: #fdd835;
  line-height: 1.05;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-secondary {
  padding: 0.8rem 1.5rem;
  background-color: transparent;
  border: 2px solid #fdd835;
  color: #fdd835;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}

.btn-secondary:hover {
  background-color: #fdd835;
  color: #121212;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #1e1e1e;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  opacity: 0;
  transform: translateY(-100%);
  transition: all 0.5s ease;
  z-index: 999;
}

.navbar.visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar a {
  text-decoration: none;
  color: #fdd835;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar a:hover {
  color: #ffffff;
}

/* SECCIONES */
.section {
  min-height: 100vh;
  padding: 5rem 2rem;
  background-color: #1a1a1a;
  border-bottom: 1px solid #333;
}

/* SECCION > ORIGINAL */
.original {
  background-color: #121212;
  color: #fff;
  padding: 4rem 1.5rem;
}

.original-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.original h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fdd835;
}

.original-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ccc;
}

/* SECCION > Discografia */
.disc-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 2rem 0;
}

.album {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.album-cover {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.tracklist {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 300px;
}

.tracklist li {
  color: #fff;
  margin: 0.5rem 0;
  font-family: var(--font-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tracklist i {
  color: #fda000;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

.album .btn-setlist {
  margin-top: 1rem;
  text-align: center;
}

/* Grid de Canciones */
.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1000px;
}

/* Tarjeta de canción */
.song-card {
  background-color: #1e1e1e;
  border-radius: 8px;
  padding: 1rem 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.song-card:hover {
  transform: translateY(-5px);
}

.song-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #fdd835;
  margin-bottom: 0.3rem;
}

.song-artist {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 0.8rem;
}

/* Ícono de Play */
.song-card a i {
  font-size: 1.2rem;
  color: #fdd835;
  transition: color 0.3s ease;
}

.song-card a:hover i {
  color: #ffffff;
}

.song-info {
  display: flex;
  flex-direction: column;
}

.song-play {
  font-size: 1.4rem;
  color: inherit;
  flex-shrink: 0; /* evita que se mueva */
}

/* FILTROS SETLISTS */
.filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.filters input {
  padding: 0.7rem 1rem;
  border-radius: 6px;
  border: 1px solid #555;
  background-color: #222;
  color: #fff;
  font-size: 1rem;
  min-width: 250px;
}

.filters input::placeholder {
  color: #aaa;
}

/* ===== Agenda estilo “Tour List” ===== */
.tour {
  padding: 80px 0;
  font-family: "Poppins", sans-serif;
}

.tour__container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.tour__header {
  margin-bottom: 26px;
  font-family: "Poppins", sans-serif;
}

.tour__title {
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.tour__subtitle {
  margin: 0;
  opacity: 0.75;
}

/* List */
.tour__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

/* Row */
.tour__row {
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  align-items: center;
  gap: 18px;
  padding: 22px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  /* microinteracción sutil */
  transition: background 0.18s ease;
}

.tour__row:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Left: Date */
.tour__date {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: baseline;
}

.tour__day {
  grid-row: 1/span 2;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.tour__month {
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.9;
}

.tour__year {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Center: Venue */
.tour__venue {
  text-align: center;
}

.tour__venue-name {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* optional meta */
.tour__venue-meta {
  margin: 8px 0 0;
  opacity: 0.75;
  letter-spacing: 0.08em;
}

/* Right: Location */
.tour__location {
  text-align: right;
}

.tour__city {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.16em;
}

.tour__country {
  margin: 8px 0 0;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 820px) {
  .tour__row {
    grid-template-columns: 160px 1fr;
    grid-template-areas: "date venue" "date location";
    row-gap: 10px;
  }
  .tour__date {
    grid-area: date;
  }
  .tour__venue {
    grid-area: venue;
    text-align: left;
  }
  .tour__location {
    grid-area: location;
    text-align: left;
  }
}
@media (max-width: 520px) {
  .tour__row {
    grid-template-columns: 1fr;
    grid-template-areas: "date" "venue" "location";
    padding: 18px 6px;
  }
  .tour__venue {
    text-align: left;
  }
  .tour__location {
    text-align: left;
  }
  .tour__day {
    font-size: 40px;
  }
}
/* SECCION > SETLISTS */
.setlists {
  background-color: #fff;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  letter-spacing: 0.08em;
  font-family: "Poppins", sans-serif;
  border-bottom: 1px solid #333; /*Esta linea es la que separa la seccion con una linea muy delgada */
}

.setlists-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.setlists h2 {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 1rem;
  color: #1c1c1c;
  line-height: 1.05;
}

.setlists-intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #1c1c1c;
}

.setlists-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: #1c1c1c;
}

.btn-setlist {
  background-color: transparent;
  border: 2px solid #1c1c1c;
  padding: 0.6rem 1.2rem;
  color: #1c1c1c;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.2;
}

.setlists-buttons .btn-setlist-general {
  padding: 0.8rem 1.5rem;
  background-color: transparent;
  border: 2px solid #1c1c1c;
  color: #1c1c1c;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}

.setlists-buttons .btn-setlist-general:hover {
  background-color: #121212;
  color: white;
  border-color: #121212;
  cursor: pointer;
}

/* SECCION > Setlists Página Individual */
.setlists-section {
  padding: 6rem 2rem 3rem;
  background-color: #181818;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.setlists-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fdd835;
}

.setlists-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.setlists-buttons .btn-setlist {
  padding: 0.8rem 1.5rem;
  background-color: transparent;
  border: 2px solid #fdd835;
  color: #fdd835;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
}

.setlists-buttons .btn-setlist:hover {
  background-color: #fdd835;
  color: #181818;
}

/* ===== Original (lista editorial) ===== */
.original {
  background-color: #0B0B0B;
  padding: 4rem 1.5rem;
  min-height: 100vh;
  letter-spacing: 0.08em;
  font-family: "Poppins", sans-serif;
  border-bottom: 1px solid #333; /*Esta linea es la que separa la seccion con una linea muy delgada */
}

.original__container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.original__header {
  text-align: center;
  margin-bottom: 26px;
}

.original__title {
  font-size: clamp(28px, 3vw, 42px);
  margin-bottom: 1rem;
  color: #fdd835;
  line-height: 1.05;
  letter-spacing: 0.08em;
}

.original__subtitle {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.05;
  opacity: 0.8;
}

/* List */
.original__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.original__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.18s ease;
}

.original__row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.original__track {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.22em; /* tracking */
  text-transform: uppercase;
  line-height: 1.2;
}

.original__meta {
  margin: 8px 0 0;
  opacity: 0.75;
  letter-spacing: 0.08em;
  font-size: 13px;
}

/* YouTube button */
.original__yt {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.original__yt:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.35);
}

.original__yt:focus-visible {
  outline: 2px solid #fdd835;
  outline-offset: 3px;
}

.original__yt-icon svg {
  fill: currentColor;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 520px) {
  .original__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .original__yt {
    width: 100%;
    justify-content: center;
  }
}
/* SECCION > CONTACTO */
.contacto {
  background-color: #181818;
  color: #fff;
  text-align: center;
}

.contacto-container {
  max-width: 600px;
  margin: auto;
  padding: 4rem 1.5rem;
}

.contacto h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fdd835;
}

.contacto p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.social-icons {
  margin-bottom: 2rem;
}

.social-icons a {
  margin: 0 10px;
  font-size: 1.5rem;
  color: #fdd835;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #ffffff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #fdd835;
}

.contact-form .btn-setlist {
  padding: 0.8rem 1.5rem;
  background-color: transparent;
  border: 2px solid #fdd835;
  color: #fdd835;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  align-self: center;
}

.contact-form .btn-setlist:hover {
  background-color: #fdd835;
  color: #121212;
}

/* FOOTER GENERAL */
.footer {
  background-color: #111;
  color: #fdd835;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.95rem;
  border-top: 2px solid #4b3900; /* opcional para efecto fino */
  font-family: "Poppins", sans-serif;
}

/* Enlaces generales */
.footer a {
  color: #fdd835;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ffffff;
}

/* Social icons */
.footer-social-icons a {
  margin-left: 1rem;
}

.footer-social-icons i {
  font-size: 1.4rem;
  color: #fdd835;
  transition: color 0.3s ease;
}

.footer-social-icons i:hover {
  color: #ffffff;
}

/* Responsive: centrar en pantallas pequeñas */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-social-icons {
    justify-content: center;
  }
  .footer-social-icons a {
    margin: 0 0.5rem;
  }
}
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #333;
}

/*# sourceMappingURL=main.css.map */
