a {
    color: black;
    text-decoration: none;
}

a:hover{
    color: #06768d;
    text-decoration: none;
}

hr{
    color: #A9A9A9;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.3); /* soft transparent black */
}

.navbar-brand{
    font-weight: bold; /* Make text bold */
  }

.navbar-nav .nav-link{
    font-weight: bold; /* Make text bold */
    font-size: 14px;
}

.header{
    background-image: url(imgs/city_ghetto.jpg); 
    background-position: center;
    background-size: cover;
    color: white;
}

.article-header{
    font-weight: 600;
}
.article-text {
    /* font-family: 'Arial', sans-serif; Adjust to your preferred font */
    font-size: 1.7rem; /* Smaller than display-6 */
    font-weight: 100; /* Lighter/thinner font weight */
    line-height: 1.2; /* Adjust line-height for readability */
}

.cited-text{
    font-family: 'Times New Roman', Times, serif;
    color: gray;
}

.btn-color {
    color: white;
    background-color: #2888BE;
    font-size: 15px;
    font-weight: 800;
    padding: 15px 25px;
}

.btn-color a {
    color: white !important; /* Ensure link text is white */
    text-decoration: none; /* Remove default underline */
  }

.menu-font{
    padding-top: 3px;
    font-size: 12px;
    font-weight: 900;
    color: black;
}

.navbar-toggler-icon{
    font-size: .8em;    
    margin-bottom: 2px;
    padding: 10px;
}

.main-section{
    padding-top: 4rem;
    letter-spacing: 0.5px;
}

.article-section{
    padding: 40px 0;
}

.article{
    padding: 20px 0;
    font-size: 1.3em;
}

.navbar-brand {
    background:transparent;
}

.shadow-text {
    color: white;
    text-shadow:
    1px 1px 3px rgba(0, 0, 0, 0.8),
    2px 2px 6px rgba(0, 0, 0, 0.5),
    3px 3px 9px rgba(0, 0, 0, 0.4);
}

.shadow-text-s {
    color: white;
    text-shadow:
    1px 1px 5px rgba(0, 0, 0, 1),
    3px 3px 8px rgba(0, 0, 0, 0.9),
    4px 4px 10px rgba(0, 0, 0, 0.7);
}

.underline-input:focus {
    border-color: transparent; /* Removes the border */
    box-shadow: none; /* Removes the default shadow */
    border-bottom: 2px solid blue; /* Adds blue underline on focus */
}

/* Default underline */
.underline-input {
    border-color: transparent; /* Remove the default border */
    border-bottom: 1px solid lightgray; /* Adds light gray underline */
    border-radius: 0;
}

/* Validation styles */
.underline-input.is-invalid {
    border-color: transparent; /* Removes the border */
    border-bottom: 2px solid red; /* Adds red underline on invalid state */
}

.form-text {
    font-size: 22px;
    font-family: 'Times New Roman', Times, serif;
}

.footer-container {
    font-family: 'Times New Roman', Times, serif;
    font-size: 18px;
    padding: 5em;
    display: flex;
    align-items: center; /* Vertically center the buttons */
    justify-content: center; /* Horizontally center the buttons */
    height: 100px; 
}

.footer .btn {
    width: 50px;
    height: 50px;
    margin: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer .btn i {
    font-size: 24px; /* Adjust icon size */
    color: white;
}


@media (min-width: 992px) {
    .header{
        height: 33em; 
    }

    .fixed-lg-top {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1030; /*Ensure it's above other content*/

    }

    .navbar-brand{
        margin-top: 5px;
        margin-left: 10px;
        margin-right: 10px;
        color: white !important;
      }
    
    .navbar-nav .nav-link{
        margin-top: 5px;
        margin-left: 10px;
        margin-right: 0px;
        color: white !important;
    }
}

@media (min-width: 768px)  and (max-width: 991px) {
    .navbar {
        background-color: transparent;
    }
    
    .header{
        height: 30em; 
    }
}

@media (max-width: 767px) {
    .navbar {
        background-color: transparent;
    }
    .header{
        height: 25em;
    }
}