/* ======== ESTILO GENERAL ======== */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom right, #000000, #1a1a1a, #2b2b2b);
  color: #f4f0ec;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(8px);
  z-index: 10;
}

/* ======== MENÚ ======== */
.main-nav {
  text-align: center;
  padding: 20px 0;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.menu a {
  text-decoration: none;
  color: #f4f0ec;
  font-weight: 300;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.menu a:hover,
.menu a.active {
  color: #d9c18e;
  text-shadow: 0 0 8px rgba(217, 193, 142, 0.6);
}

/* ======== HERO ======== */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
  text-align: center;
}

.album-cover {
  width: 360px;
  max-width: 85%;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 50px rgba(217, 193, 142, 0.25);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin: 10px 0 0 0;
}

h2 {
  color: #d9c18e;
  font-weight: 300;
  font-size: 1.6rem;
  margin-top: 10px;
}
