*, *::before, *::after {
  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;
}

/* HOME SECTION */
.home-section {
    display: flex;
    width: 100vw;
    height: fit-content;
    box-sizing: border-box;
    text-align: center;
    color: white;
    position: relative;
  }
 
  /* ASIDE */

.sidebar {
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    margin: 80px auto;
    height: fit-content;
    max-width: 300px;
    width: 100%;
}

.card {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card iframe {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border: 0;
}

  /* END ASIDE */

.content {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    margin: 80px 20px 0 20px;
    height: fit-content;
}
.blog-post{
    background: rgba(0, 0, 0, 0.8);
    padding: 0px 20px 20px 60px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
}

.blog-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-post img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: auto;
    margin-top: 40px;
}
.blog-post h2 {
    margin: 0;
}
.blog-post p {
    text-align: left;
    margin: 0;
    font-size: 1rem;
}
.blog-post a {
    color: #e3d7aa;
}
.blog-post .date {
  font-size: 0.9rem; 
  font-style: italic;
  color: #f0eeee; 
  margin-top: 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;
  }
  
  @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;
    }
    .sidebar {
      display: none;
  }

  .home-section {
    display: flex;
      flex-direction: column;
      align-items: center;
  }
.content {
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  }
  .blog-post {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 95%;
    margin: 0 0 20px 0;
    padding: 0 20px 20px 20px;
    box-sizing: border-box;
}
.blog-post h1 {
  font-size: 0.8em;
}
.blog-post p {
  font-size: 0.7em;
}
.blog-post p {
  text-align: left;
}
.blog-post h2,
.blog-post .date {
    text-align: center;
    width: 100%;
}
  .blog-post img {
      width: 100%;
  }

      /* Responsive Social */

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