
* { box-sizing: border-box; }
body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
  scroll-behavior: smooth;
}
nav {
  position: fixed;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  z-index: 1000;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 1rem;
  margin: 0;
}
nav ul li {
  margin: 0 1rem;
}
nav ul li a {
  color: white;
  text-decoration: none;
}
.hero {
  height: 100vh;
  background: url('../images/prensa.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-text {
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 2rem;
  text-align: center;
}
section {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: auto;
}
.gallery {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
  pointer-events: none;
}
.discos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.discos img {
  width: 180px;
  height: auto;
  border-radius: 8px;
}
.discos img:hover {
  transform: scale(1.05);
}
footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 2rem;
}
footer a {
  color: #fff;
  margin: 0 0.5rem;
  text-decoration: none;
}
/* Estilos para menú responsive */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 20px;
}

#menu {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 1rem;
  margin: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  #menu {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.9);
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
  }

  #menu.show {
    display: flex;
  }

  #menu li {
    text-align: center;
    padding: 1rem 0;
  }
}
