/* General Reset */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0c0c0c;
  color: #fff;
}

/* Header */
header {
  background-color: #1a1a1a;
  padding: 20px 50px;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

header h1 {
  font-size: 28px;
  color: #ff3838;
  margin: 0;
}

nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: #ff3838;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 0 10px; /* Reduce el padding lateral */
  max-width: 900px; /* Limita el ancho máximo */
  text-align: center; /* Centra el texto */
}

.hero-content h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.hero-description {
  max-width: 80%; /* Limita el ancho del párrafo */
  margin: 0 auto; /* Centra el párrafo */
  line-height: 1.6;
  font-size: 1.1em;
  color: #ddd;
}


/* Sections */
section {
  padding: 60px 50px;
}

.about,
.artists,
.videos,
.contact {
  background-color: #121212;
  text-align: center;
}

h3 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #ff3838;
}

p,
label,
input,
textarea {
  font-size: 16px;
  color: #ccc;
}

/* Artist Cards */
.artist-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.artist {
  background-color: #1f1f1f;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}

.artist:hover {
  transform: translateY(-10px);
}

.artist img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.artist h4 {
  margin: 15px 0;
  font-size: 20px;
}

.artist p {
  font-size: 14px;
  padding: 0 15px 20px;
  color: #ccc;
}

/* Videos */
.videos iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border: none;
  margin: 20px;
}

.videos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* Contact Form */
.contact form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact input,
.contact textarea {
  padding: 10px;
  border: none;
  border-radius: 8px;
  background-color: #1f1f1f;
  color: #fff;
}

.contact button {
  background-color: #ff3838;
  color: white;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact button:hover {
  background-color: #e02e2e;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #999;
}

/* Social Icons */
.contacto {
  text-align: center;
  padding: 60px 20px;
  background-color: #121212;
}

.contacto a.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacto a.social-icon:hover {
  color: #25d366; /* color verde de WhatsApp */
}

.contact-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  gap: 20px;
}

/* Animaciones */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
