@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body, html {
    background-image: url('../image/mistbg2025.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    color: #FFFFFF;
    font-family: 'Open Sans';
    font-weight: 600;
    min-height: 100vh;
  }
  .main-section {
    top: 0%;
    backdrop-filter: blur(4px) contrast(80%) brightness(90%);
  }
  #page-header {
    font-family: 'Arial';
    font-weight: bold;
    font-style: italic;
    text-shadow: 4px 4px 0px #00000025;
  }
  #not-page-header {
    font-family: 'Arial';
    font-weight: bold;
    font-style: italic;
    text-shadow: 4px 4px 0px #00000025;
  }
  
/* Navbar Customization */
.navbar {
    z-index: 50;
    position: sticky;
    top: 1%;
    border-radius: 32px;
    max-width: 98%;
    margin: 0 auto;
    background-color: #7aa8d65e !important;
    backdrop-filter: blur(5px) brightness(50%) saturate(50%);
    border-radius: 30px;
  }
  
  .navbar-brand, .navbar-nav .nav-link {
    color: #fff !important; /* Adjust the text color */
  }
  
  .navbar-brand img {
    max-height: 40px; /* Adjust the size of your logo */
  }
  
  /* Navbar link hover effect */
  .navbar-nav .nav-link:hover {
    color: #689acc !important; /* Adjust hover color */
  }

  .text-center a {
    color: #aec7d8;
  }

  .btn-primary {
    background-color: #7aa8d65e;
    border:none !important;
    outline: none !important;
  }

  .btn-primary:focus {
    outline: none !important;
    box-shadow: none !important;
  }

  .btn-secondary {
    display: inline-flex; /* Use flexbox for alignment */
    align-items: center; /* Align items vertically */
    justify-content: center; /* Center items horizontally */
    gap: 0.25em; /* Add some space between the text and the image */
    padding: .375rem .75rem; /* Bootstrap's default padding for buttons */
    border-radius: 15px;
    background-color: #abd7f549 !important;
    backdrop-filter: blur(4px);
    margin-top: 2%;
    margin-bottom: 2%;
    border:none !important;
    outline: none !important;
  }

  .btn-secondary:focus {
    outline: none !important;
    box-shadow: none !important;
  }
  
  .btn-secondary .button-logo {
    height: 1em; /* Set the height of the logo relative to the font size */
    width: auto; /* Maintain the aspect ratio of the logo */
    margin-bottom: -0.1em; /* Adjust if the logo is not vertically aligned */
  }

  .btn-light {
    color: #FFFFFF;
    background-color: #FFFFFF50;
    backdrop-filter: blur(4px) contrast(80%) brightness(80%) !important;
    border-radius: 20px;
  }

  .btn-light:hover {
    color: #FFFFFF;
    background-color: #ffffff30
  }

/* the featured channels card i hate myself -sspwxr/raii */
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 5%;
}
.featured-card {
  width: 32%;
  height: 470px;
  padding: 2%;
  border-radius: 30px;
  background-color: #394d7796;
  margin-bottom: 2%;
  overflow: hidden;
}

.featured-card img {
  border-radius: 15px;
  display: block;
  width: 100%;
  height: auto;
}

footer {
  position: relative;
  width: 100%;
  background-image: linear-gradient(#35404e, #000000);
  bottom: -4%;
}