html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Banner Styles */
.banner {
    background-image: url('/images/banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100vw; /* Full width */
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}
.banner {
    background-size: contain;
}
.banner {
    background-size: cover;
    background-position: top center;
    object-fit: cover;
}



.banner-content {
    position: relative;
    z-index: 1;
}

.banner-heading {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-subtext {
    font-size: 20px;
    font-weight: lighter;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .banner-heading {
        font-size: 36px;
    }

    .banner-subtext {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .banner-heading {
        font-size: 28px;
    }

    .banner-subtext {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 10px;
    }
