/* General */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Navbar */
.navbar {
  background-color: #000;
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
}

.navbar .nav-menu {
  list-style: none;
  display: flex;
  margin: 0;
}

.navbar .nav-menu li {
  margin-left: 20px;
}

.navbar .nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

/* Hero Section */
/* Sección de Inicio */
.hero-section {
  position: relative;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.7);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 64px;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.hero-content p {
  font-size: 24px;
  margin-bottom: 30px;
}

.hero-content .social-links a {
  color: #fff;
  margin: 0 10px;
  font-size: 24px;
  text-decoration: none;
}

.hero-content .social-links a:hover {
  color: #BB86FC;
}

.hero-content .btn {
  display: inline-block;
  background-color: #BB86FC;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 30px;
}

.hero-content .btn:hover {
  background-color: #9a4bcc;
}



/* Secciones */
section {
  padding: 60px 0;
}

section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
}

/* Biografía */
#biografia .bio-content {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

#biografia img {
  width: 300px;
  height: auto;
  margin-right: 30px;
  border-radius: 10px;
}

#biografia p {
  font-size: 18px;
  line-height: 1.6;
}

/* Música */
#musica iframe {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  display: block;
}

/* Videos */
.video-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.video-gallery iframe {
  margin: 10px;
}

/* Eventos */
.event-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.event-item {
  background-color: #f9f9f9;
  padding: 20px;
  margin-bottom: 20px;
  width: 80%;
  text-align: center;
  border-radius: 10px;
}

.event-item .btn {
  margin-top: 10px;
}

/* Tienda */
.product-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.product-item {
  margin: 15px;
  text-align: center;
}

.product-item img {
  width: 200px;
  height: auto;
  border-radius: 10px;
}

.product-item h3 {
  margin-top: 10px;
  font-size: 20px;
}

.product-item p {
  font-size: 18px;
  color: #ff0f0e;
}

.product-item .btn {
  margin-top: 10px;
}

/* Contacto */
#contacto form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

#contacto input, #contacto textarea {
  padding: 10px;
  margin-bottom: 15px;
  font-size: 16px;
}

#contacto .btn {
  align-self: center;
}

/* Footer */
footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
}

footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .social-links a {
  color: #fff;
  margin-left: 15px;
  font-size: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar .nav-menu {
    flex-direction: column;
    align-items: center;
  }

  .navbar .nav-menu li {
    margin: 10px 0;
  }

  #biografia .bio-content {
    flex-direction: column;
    text-align: center;
  }

  #biografia img {
    margin-bottom: 20px;
  }

  .event-item, .product-item {
    width: 100%;
  }
  /* Estilos para la sección de iconos sociales */
.hero-content .social-links {
  margin-bottom: 20px; /* Añade espacio debajo de los iconos */
}

.hero-content .social-links a {
  color: #fff;
  margin: 0 10px;
  font-size: 24px;
  text-decoration: none;
}

.hero-content .social-links a:hover {
  color: #ff0f0e; /* Cambia el color al pasar el mouse */
}

/* Estilos para el botón "Escucha Ahora" */
.hero-content .btn {
  display: inline-block;
  background-color: #ff0f0e;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 18px;
  border-radius: 5px;
  margin-top: 20px; /* Añade espacio superior al botón */
}

.hero-content .btn:hover {
  background-color: #e00e0d; /* Efecto hover en el botón */
}

}
