/* FUENTE */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

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

body {
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* TITULOS */
h1, h2 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* SECCIONES GENERALES */
.section {
  padding: 32px 20px;
}

/* HERO SOLO PARA TELÉFONO */
.hero-mobile {
  position: relative;
  width: 100%;
  height: 65vh;              /* <--- más bajo para que bio quede cerca */
  background: url('hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, #000 85%);
}

.hero-content {
  position: relative;
}

.hero-title {
  font-size: 30px;
}

.hero-subtitle {
  font-size: 11px;
  letter-spacing: 0.18em;
  margin-top: 4px;
}

/* BIOGRAFÍA */
.section-bio {
  padding-top: 16px;
}

.section-bio h2 {
  font-size: 28px;
  color: #ff2a2a;
  margin-bottom: 12px;
}

.section-bio p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ESTILOS MUSICALES */
.section-genres h2 {
  font-size: 28px;
  color: #ff2a2a;
  margin-bottom: 12px;
}

.genres {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.genre-item {
  background: linear-gradient(90deg, #3a0000, #ff0000);
  padding: 10px 14px;
  border-radius: 4px;
  font-size: 15px;
}

/* SOUNDCLOUD */
.section-soundcloud {
  text-align: center;
}

.section-soundcloud h2 {
  font-size: 28px;
  color: #ff2a2a;
  margin-bottom: 8px;
}

.sc-text {
  margin-bottom: 16px;
  font-size: 14px;
  color: #e0e0e0;
}

.soundcloud-btn {
  display: inline-block;
  padding: 14px 28px;
  margin-bottom: 22px; /* ← MÁS ESPACIADO ENTRE BOTONES */
  border-radius: 50px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  text-align: center;
  border: 2px solid #ff3b3b;
  color: #ff3b3b;
  transition: 0.2s ease;
}

.soundcloud-btn:hover {
  background: #ff2a2a;
  color: #000;
}

/* NOMBRE + FOTO SOLO ESCRITORIO */
.section-hero-desktop {
  display: none;          /* oculto en teléfono */
  padding-top: 0;
  padding-bottom: 40px;
}

.hero-desktop-wrapper {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hero-desktop-image {
  width: 45%;
  border-radius: 8px;
  object-fit: cover;
}

.hero-desktop-text h1 {
  font-size: 40px;
  margin-bottom: 8px;
}

.hero-desktop-text p {
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #dddddd;
}

/* ----------- RESPONSIVE ESCRITORIO ----------- */

@media (min-width: 768px) {

  /* en PC NO queremos hero arriba */
  .hero-mobile {
    display: none;
  }

  .section {
    max-width: 960px;
    margin: 0 auto;
    padding-inline: 40px;
  }

  .section-bio {
    padding-top: 40px;
  }

  .genres {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-hero-desktop {
    display: block;      /* solo en escritorio */
  }  
}

/* -------- MODAL VISUALES -------- */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 9999;
}

.modal-content {
  background: #111;
  padding: 30px;
  border-radius: 8px;
  max-width: 950px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border: 1px solid #ff2a2a;
}

.modal-content h2 {
  text-align: center;
  color: #ff2a2a;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.poetic-text {
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 30px;
  padding: 0 10px;
}

.visuales-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.visuales-grid img {
  width: 100%;
  border-radius: 6px;
  border: 2px solid #ff2a2a;
}

/* cerrar */
.close {
  float: right;
  font-size: 32px;
  color: #ff2a2a;
  cursor: pointer;
  transition: 0.2s;
}

.close:hover {
  color: #fff;
}


