/*                              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;
}

/* Home Page  */
.headerImgContainer{
    height: 550px;
    width: 100%;
    overflow: hidden;
    position: relative;
} 
.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;
}
.contentContainer{
    width: 100%;
    overflow-x: hidden;
}
.welcomeTextContainer{
    width: 70%;
    margin: auto 0;
    transform: translateX(100%); 
    opacity: 0;
    animation: slideIn 1s ease-out forwards;
}
.welcomeHeader{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: #183D8B;
}
.welcomeText {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
}
@keyframes slideIn {
0% {
    transform: translateX(-100%);
    opacity: 0;
}
100% {
    transform: translateX(0);
    opacity: 1;
}
} 
.bayardMap{
    width: 90%;
    height: 450px;
}
.attractionsText{
    font-size: .9rem;
    font-family: 'Poppins', sans-serif;
}



/*                              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;
}

/* Home Page  */
.headerImgContainer{
    height: 250px;
    width: 100%;
} 
.headerOverlayText{
    font-size: 1rem;
}
.homeImages{
    height: 250px;
    width: 100%;
}
.welcomeTextContainer{
    width: 100%;
    margin: auto 0;
}
.welcomeHeader{
    font-size: .9rem;
}
.welcomeText {
    font-size: .8rem;
}
.bayardMap{
    width: 95%;
    height: 350px;
}

.attractionsText{
    font-size: .7rem;
    font-family: 'Poppins', sans-serif;
}
}



/*                              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;
}


/* Home Page */
.headerImgContainer{
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
} 
.headerOverlayText{
    font-size: .7rem;
}
.homeImages{
    height: 180px;
    width: 100%;
}
.footer {
    height: 65px;
    font-size: 9px;
}
.managementLogoContainer{
    width: 70%;
    height: 70%;
}
.welcomeHeader{
    font-size: .7rem;
}
.welcomeText {
    font-size: .45rem;
}
.bayardMap{
    width: 95%;
    height: 350px;
}
.attractionsText{
    font-size: .7rem;
    font-family: 'Poppins', sans-serif;
}
}