* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}
/* Revisado */

/* FONTS */

h1,
h2,
h3,
h4,
.section-title {
  font-family: "Metal Mania", system-ui;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 2px;
}
body,
p {
  font-family: "astoria", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 20px;
  line-height: 1.6;
}
span,
li,
a {
  font-family: "astoria", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
}
/* Revisado */

/* BUTTONS */

.btn-noise {
    position: relative;
    width: 10em;
    height: 2.8em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: white !important;
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    transition: background 0.3s, color 0.3s, box-shadow 0.5s ease-in-out;
    text-align: center;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    text-decoration: none;
  }
  
  .btn-noise:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
      0 0 40px rgba(255, 255, 255, 0.4);
    animation: glow-effect 1.5s infinite alternate ease-in-out;  
  }
/* Revisado */

  /* BACKGROUND VIDEO */
  #bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    filter: brightness(0.5) sepia(0.1) hue-rotate(190deg) saturate(1.5) contrast(1.2);
  }
  /* Revisado */

  /* NAVBAR */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    max-width: 200px;
    margin: 11px 0 5px 0;
}

.navbar-nav {
    display: flex;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar-nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-nav a:hover {
    color: #e3d7aa;
}

.navbar-toggler {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
/* Revisado */

/* HOME SECTION */
.home-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  min-height: 100vh;
  margin-bottom: 0;
}

.home-title {
  font-size: 2.5rem;
  font-weight: bold;
}

.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.video-container a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
}
.home-image {
  width: 50%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(248, 248, 248, 0.4);
  margin: 0 auto; /* Centra la imagen */
  display: block; /* Asegura que no haya comportamiento inline */
}

.home-image img {
  width: 100%;
  height: auto; /* Mantén la proporción de la imagen */
  object-fit: cover;
  display: block;
}

  /* Revisado */

  /* OPTIONS SECTION */
.options-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 60px 0;
  }
  
  .options-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 5rem;
  }
  /* Revisado */

  
  /* General styling for both cards */
  .option-card {
    flex: 1;
    max-width: 500px;
    min-width: 280px;
    padding-bottom: 20px;
    background: linear-gradient(to bottom, #111, #222, #111);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .option-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
  }
  
  .option-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    filter: brightness(0.5) saturate(1) contrast(1);
  }
  
  .option-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .option-text {
    padding: 20px;
    text-align: center;
    color: white;
  }
  
  .option-text h2 {
    font-size: 2rem;
    text-transform: uppercase;
    margin: 0;
  }
  
  .option-text p {
    font-size: 1rem;
    font-family: "astoria", sans-serif;
    margin-bottom: 20px;
  }
  
  /*  SOCIAL MEDIA SECTION */
  .social-media-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    text-align: center;
    background: transparent;
  }
  .social-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    margin-bottom: 20px;
    color: white;
  }
  
  .social-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .social-icons {
    display: flex;
    gap: 15px;
    padding: 5px 0;
  }
  
  .social-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
  }
  
  .social-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
    transition: fill 0.3s ease-in-out;
  }
  
  .social-icon:hover svg {
    fill: #e3d7aa;
  }
  
 /* SUBSCRIPTION SECTION */
  .subscription-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 50px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
    color: white;
  }
  
  .subscription-title {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .subscription-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  iframe {
    max-width: 100%;
  }
  
/* FOOTER */
  .footer-section {
    margin-top: auto;
    background: black;
    color: white;
    text-align: center;
    padding: 5px 0;
  }
  
  .footer-text {
    font-size: 1rem;
    margin: 0;
  }
  
  .footer-link {
    color: white;
    text-decoration: none;
  }
  
  .footer-link:hover {
    text-decoration: underline;
  }
  
 
/* RESPONSIVE */

/* Responsive - Mostrar hamburguesa en móviles */
@media screen and (min-width: 1400px) {
  .home-title {
    font-size: 3rem;
  }

  .video-container a {
    font-size: 1rem;
  }

  .home-image {
    width: 600px;
  }
}
@media (max-width: 768px) {
    .navbar-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        padding: 20px;
    }

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

    .navbar-toggler {
        display: block;
        margin-right: 20px;
    }
    html {
      scroll-padding-top: 10px;
    }
/* HOME SECTION */
.home-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  min-height: 100vh;
  margin-bottom: 0;
}

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

.video-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.video-container a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: bold;
}
.home-image {
  width: 300px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(248, 248, 248, 0.4);
  margin-bottom: 20px;
}

.home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


 /* options section */
    .options-section {
      background: transparent;
      margin-bottom: 0;
      margin-top: -50px;
    }
    .options-container {
      flex-direction: column;
      align-items: center;
      width: 90%;
    }
    
    .option-card {
      max-width: 90%;
    }
    /* Responsive Social */
.social-media-section{
  margin-top: -50px;
}
.social-media-section h1 {
  font-size: 1em;}
  .social-title {
    margin-bottom: 10px; 
  }
  .social-icons {
    gap: 15px; 
  }
  .social-icon svg {
    width: 28px;
    height: 28px;
  }

  /* Subscription */
  .subscription-title {
    font-size: 1.5rem;
  }

  /* Footer Responsive */
  .footer-section {
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  .footer-text {
    font-size: 15px;
    margin: 0;
  }
  .footer-link {
    font-size: 15px;
    padding: 0 5px;
  }
}
