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);
}

.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 */

/* GENERAL SECTIONS */
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    min-height: 100dvh;
    height: 100vh;
    box-sizing: border-box;
    color: white;
    text-align: left;
    overflow: hidden;
    scroll-margin-top: 80px;
  }

  /* DOOMLOG HEADER */
.doomlog-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
  }
  .doomlog-text h1 {
    font-size: 30px;
  }
  .doomlog-container {
    max-width: 900px;
  }
  
  .doomlog-image {
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  /* DOOMLOG ALBUMS */
  .doomlog-albums {
    padding: 60px 20px;
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  .album-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .album-card {
    width: 100%;
    max-width: 320px;
    background: rgba(20, 20, 20, 0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease-in-out;
    color: white;
  }
  .album-card h2 {
    font-size: 25px;
    margin: 0;
  }
  .album-card p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .album-card:hover {
    transform: translateY(-5px);
  }
  
  .album-cover {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .album-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 10px;
  }
  .album-buttons.ariel {
    justify-content: center;
  }
  .btn-special {
    display: block;
    margin: 20px auto 0;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s, border-color 0.3s;
  }
  
  .btn-special:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
  }
  
  /* 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 (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;
  }
  .doomlog-container {
    padding: 15px;
  }
  .doomlog-container h1 {
    font-size: 1em;
  }
  .doomlog-container p {
    font-size: 0.8em;
  }
  .doomlog-albums{
    background: transparent;
  }
.album-card {
  max-width: 90%;
}
.album-buttons{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
  /* 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;
}
}
