
.header-text{
    text-transform: uppercase;
    font-weight: 200;
    color: var(--bs-heading-color);/*#333;*/
    margin-bottom: 20px;
    font-size: 30px;
    position: relative;
    line-height: 24px;
}
.banner .container{
  max-width: 970px;   
}
    /* Top login bar */
    .topbar {
      background: #004d66;
      color: #fff;
      padding: 0.25rem 1rem;
    }
    .topbar input {
      max-width: 140px;
    }


/* Banner background */
.banner {
    position: relative;
    height: 22rem;
    background: 
        radial-gradient(circle, rgba(123,171,237,0.7) 0%, rgba(174,238,232,0.7) 100%),
        url("../img/template/bg3a.jpg") top/cover no-repeat;
    display: flex;
    align-items: center;
}

/* Logo scaling */
.logo-link img.brand-logo {
    max-width: 8rem;
    width: 100% !important;
    height: auto !important;
    display: block !important;
}
/* Base: mobile size */
.logo-group {
    max-width: 8rem;
}

/*.brand-logo {
    max-width: 6rem;
}*/
@media (min-width: 480px) {
.lead{
    font-size: 1rem;
}
}
/* Medium screens (≥ 768px) */
@media (min-width: 768px) {
    .logo-group {
        max-width: 6rem;
    }
/*    .brand-logo {
        max-width: 8rem;
    }*/
.main-header{
        font-size: 2rem;
} 
   
}

/* Large screens (≥ 992px) */
@media (min-width: 992px) {
    .logo-group {
        max-width: 8rem;
    }
/*    .brand-logo {
        max-width: 10rem;
    }*/
}

/* Social icons: fill width of logo block evenly */
.social-icons {
    max-width: 8rem;
}

.social-icons img.social-icon {
    flex: 1 1 0;
    max-width: 100%;
    height: auto;
}

/* Optional: slightly smaller icons on very small screens */
@media (max-width: 575px) {
    .social-icons img.social-icon {
        max-width: 90%;
    }
        .logo-group {
        max-width: 5rem;
    }
    .main-header{
            font-size: 1.8rem;
    }    
}
    /* Navbar sits at bottom of banner */
    .banner .navbar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
    }

    /* Transparent navbar */
    .navbar {
      background: transparent !important;
    }

    /* White hamburger */
    .navbar-toggler {
      border-color: rgba(255, 255, 255, 0.7);
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.9)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    /* Navbar links styled as equal-width buttons */
    .navbar-nav {
      display: flex;
      justify-content: center;
      width: 100%;
    }
    .nav-link {
      background: #fff;
      color: #004d66 !important;
      margin: 0 0.25rem;
      text-align: center;
      flex: 1;
      min-width: 8rem; /* ensures all match the "Information" button size */
      border-radius: 0.5rem;
    }
    /* Desktop buttons: equal width */
    @media (min-width: 992px) {
      .navbar-nav {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
      }
      .navbar-nav .nav-link {
        display: inline-block;
        background: #fff;
        color: #004d66 !important;
        border-radius: 0.5rem;
        padding: 0.5rem 1rem;
        text-align: center;
        flex: 1;
        max-width: 10rem; /* size of “Information” */
      }
    }

    /* Mobile buttons: stacked */
    @media (max-width: 991.98px) {
      .navbar-nav .nav-link {
        display: block;
        background: #fff;
        color: #004d66 !important;
        border-radius: 0.5rem;
        padding: 0.5rem;
        margin: 0.25rem 0;
        width: 100%;
        text-align: center;
      }    
 
    /* Adjust banner height for mobile so hamburger is visible */
    @media (max-width: 576px) {
      .banner {
        height: 16rem;
      }
    }