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


body {
  font-family: 'Work Sans', sans-serif;
  line-height: 1.6;
}


/* CONTAINER FOR CONTENT */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-weight: 700; /* Bold */
  font-size: 40px;
  line-height: 45px;
   margin-bottom: 12px;
}

p {
  font-weight: 400; /* Regular */
    font-size: 18px; /* Regular */
}

/* HERO SECTION */
.hero {
  background: url('../images/hero_image1.jpg') center/cover no-repeat fixed;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.nav-links a.lang-link {
  color: #f7c945 !important; /* fuerza el color */
  font-weight: 600;
}


.strong-line {
  font-weight: 700;
}

.medium-line {
  font-weight: 500;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  width: 100%; /* Asegura que ocupe todo el ancho */
}


.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li {
  position: relative;
  padding: 15px 0;
}

.nav-links a {
  color: #fff;

  display: inline-block;
  padding: 10px 15px;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 2px;
  width: 0;
  background: #fff;
  transition: width 0.3s ease, left 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
  left: 0;
}


.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
}

.hero-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  font-size: 1.8rem;
}

/* ABOUT SECTION */
.about {
  background: #fff;
  padding: 50px 0;
}

.about-text, .about-img {
  flex: 1 1 300px;
  padding: 20px;
}

.about-img img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about .container {
  display: flex;
  flex-wrap: wrap;
}

/* WORKS SECTION */
.works {
  background: #011d36;
  color: white;
  padding: 50px 0;
  text-align: center;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.video-gallery iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

/* SERVICIOS SECTION */
.services {
  background: #ebebeb;
  padding: 4rem 1rem;
  text-align: center;
}

.services h2 {
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: ;
  padding: 2rem;
  border-radius: 0px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}


/* MUSIC SECTION */
.music {
  background: #fff;
  padding: 50px 0;
  text-align: center;
}

/* CONTACT SECTION */
.contact {
  background: #011d36;
  color: white;
  padding: 50px 0;
  text-align: center;
}

.contact-spacing {
  margin: 40px 0;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-family: inherit;
}

.contact-form textarea {
  height: 150px; /* o el valor que prefieras */
  resize: vertical; /* permite al usuario redimensionarlo si quiere */
}


.contact-form button {
  padding: 10px 30px;
  background: white;
  color: #26262B;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  align-self: center;
  width: fit-content;
}

/* FOOTER */

.site-footer {
  background-color: #000;
  color: white;
  padding: 20px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-content p {
  margin: 0;
  font-size: 16px;
}

.instagram-link img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* blanco */
  transition: transform 0.2s ease;
}

.instagram-link:hover img {
  transform: scale(1.1);
}

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

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #2a323d;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; /* ✅ ocupa toda la altura */
    padding: 100px 30px 30px; /* deja espacio superior para el logo o botón */
    z-index: 1000;
    text-align: left;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
      font-size: 40px;       /* ⬅ texto más grande */
      line-height: 0.2;      /* ⬅ menos interlineado */
      padding: 6px 0;        /* ⬅ menos espacio extra */
      text-decoration: none;
      position: static;
    }

  .nav-links a::after {
    content: none; /* ✅ elimina subrayado */
  }

  .about .container {
    flex-direction: column;
  }

  .video-gallery {
    grid-template-columns: 1fr;
  }
    
      .services {
    padding: 3rem 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }
}
