/*                              Styles for Desktop                                  */
/* Universal Components */
*{
    box-sizing: border-box;
}
html, body {
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.topNavbar {
    background-color: #183D8B;
    position: sticky;
    top: 0;
    height: 100px; 
    font-family: 'Alberto sans';
    font-size: 1.5rem ;
    z-index: 100;
}  
.bayardLogo {
    max-height: 70px;
}
.navbar-nav {
    width: 100%;
    justify-content: center;
}
.contentContainer{
    width: 100%;
    overflow-x: hidden;
}
.footer {
    height: 100px;
    font-family: 'Alberto sans';
    font-size: 1rem;
    width: 100%;
}
.managementLogoContainer{
    width: 120px;
    height: 70%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.termsLink:hover{
    color: blue;
}
.borderSpan{
    border-bottom: 3px solid hsl(221, 71%, 32%) !important;
    width: 70%;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Amenities Page  */
.amenitiesContainer{
    height: 600px;
}
.amenitiesMessageContainer{
    height: auto;
    width: 100%;
    animation: slideInRight 1s ease-out forwards;
}
.amenitiesMessageContainer2{
    height: auto;
    width: 100%;
    animation: slideInLeft 1s ease-out forwards;
}
.amenitiesHeader{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #183D8B;
    border-bottom: 1px solid #183D8B;
    width: 100%;
    text-align: center;
}
.amenitiesImages{
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}
@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
    } 
    @keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
} 
.headerOverlay{
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    color: white; 
    text-align: center; 
    z-index: 1; 
    background-color: rgba(0, 0, 0, 0.5); 
    padding: 20px;
}
.headerOverlayText{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
}



/*                              Styles for tablets                                  */
@media (max-width: 768px) {
/* Universal Components */
.topNavbar {
    background-color: #183D8B;
    position: sticky;
    top: 0;
    height: 100px; 
    font-family: 'Alberto sans';
    font-size: 1.5rem ;
    z-index: 100;
}  
.navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #183D8B;
    z-index: 1;
}
.navbar-nav {
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
}
.nav-link {
    font-family: 'Alberto sans';
    font-size: 18px;
    padding: 10px 0;
}
.footer {
    height: 65px;
    font-size: 15px;
}
.managementLogoContainer{
    width: 60%;
    height: 70%;
    padding: 0;
}
.borderSpan{
    border-bottom: 2px solid hsl(221, 71%, 32%) !important;
    width: 70%;
    margin-top: 7px;
    margin-bottom: 7px;
}

/* Amenities Page  */
.amenitiesContainer{
    height: 300px;
}
.amenitiesHeader{
    font-size: .9rem;
}
.amenitiesImages{
    height: 300px;
}
.headerOverlayText{
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
}

}



/*                              Styles for Mobile                                  */
@media (max-width: 600px) {
/* Universal Components */
.bayardLogo {
    max-height: 45px;
}
.footer {
    height: 65px;
    font-size: 9px;
}
.managementLogoContainer{
    width: 70%;
    height: 70%;
}
.borderSpan{
    border-bottom: 1px solid hsl(221, 71%, 32%) !important;
    width: 70%;
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Amenities Page  */
.amenitiesContainer{
    height: 200px;
}
.amenitiesHeader{
    font-size: .8rem;
}
.amenitiesImages{
    height: 200px;
}
.headerOverlayText{
    font-size: .7rem;
}

}