:root {
  --bg-color: #000;
  --text-color: #fff;
  --accent-color: #888;
  --font-family: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}


header {
  background: #111;
  width: 100%;
  overflow: hidden;
    text-align: center;
    padding: 0 !important;
}

header img {
  display: block;
  width: 100%;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

nav a {
  color: var(--text-color);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--accent-color);
}

.section {
  padding: 3rem 1.5rem;
  max-width: 900px;
  margin: auto;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5rem;
}

.hero {
  text-align: center;
  padding: 4rem 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.discografia ul,
.conciertos ul {
  list-style: none;
  padding: 0;
}

.discografia li,
.conciertos li {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #222;
  padding-bottom: 0.5rem;
}

.noticia-horizontal {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.noticia-horizontal img {
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  height: auto;
}

.noticia-contenido {
  max-width: 600px;
  text-align: left;
}

.noticia-contenido h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.noticia-contenido p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .noticia-horizontal {
    flex-direction: row;
    align-items: flex-start;
  }

  .noticia-horizontal img {
    width: 50%;
  }

  .noticia-contenido {
    width: 50%;
    padding-left: 1.5rem;
  }
}


footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.25rem;
  }
}

.spotify-embed {
  position: relative;
  width: 100%;
  padding-bottom: 176px; /* relación 16:9 aproximada (352/2) */
  height: 0;
  overflow: hidden;
}

.spotify-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Videos */

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Aspect ratio 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr 1fr; /* 2 videos por línea */
  }
}

/* Asegura imágenes fluidas globalmente */
img { max-width: 100%; height: auto; }

.hero{
  display:flex; align-items:center; justify-content:center;
  padding:clamp(32px, 6vw, 96px) 16px;
}

/* Logo responsive: escala con ancho de viewport y limita altura */
.hero-logo{
  width:min(92vw, 780px);   /* se adapta y no supera 780px */
  max-height:min(30vh, 360px); /* nunca ocupa demasiado alto */
  object-fit:contain; 
  filter:drop-shadow(0 6px 24px rgba(0,0,0,.6));
}
@media (prefers-color-scheme: dark){
  .hero-logo{ filter:drop-shadow(0 10px 36px rgba(0,0,0,.9)); }
}

/* Oculto accesible para el <h1> */
.visually-hidden{
  position:absolute!important; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

