@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100..900&display=swap');


:root {
    --heading-font: 'Barlow Semi Condensed', sans-serif;
    --body-font:'Barlow', sans-serif;
    --teal: #00A7AA;
    --teal-dark:#006D71;
    --blue:#1A65B6;
    --sand:#CCD3CE;
    --blue-dark:#003558;
    --brown:#32161F;
} 

.fakeimg {
    height: 200px;
    background: #aaa;
  }
  
  
body {
  background-color: #d7f3ed;
}
  
  body {
 font-family:var(--body-font);
    color:var(--blue-dark);  
}
h1,h2,h3 {
    font-family:var(--heading-font);
}

h1 {
    font-size: clamp(2.6rem, 5.5vw, 3.2em);
        font-weight: bold;
}

h2 {
    font-size: clamp(2.4rem, 5vw, 2.8em);
        font-weight: bold;
}

h3 {
    font-size: clamp(2.2rem, 4.5vw, 2.4rem);
        font-weight: bold;
}

h4 {
    font-size: clamp(2rem, 3.5vw, 2.2rem);
            font-weight: bold;
}


p {
    font-size: clamp(1.4rem, 2.5vw, 1.5rem);
}

.btn {
    display:inline-flex;
    width:fit-content;
    transition:all .5s ease-in-out;
}

a {
color: #3278ec;
}

a:hover {
  color: #006eff;
}





.jumbotron-footer {
    position:relative;
padding: 50px; 
    background:white;
    
    & .logos {
        display:flex;
        flex-flow: row;
        & img {
            width:20%;
            height:auto;
            padding: 30px; 
        }
    }
}

.navbar {
background-color: var(--teal-dark);
    background-image: linear-gradient(90deg, var(--teal-dark), var(--teal));
padding:0 50px;
}

.nav-link {
color: white;
    font-weight:bold;
background:rgba(0,0,0,.0);
    height:100%;
    font-size:1.1rem;
    padding:.5rem 1.5rem !important;
    margin-right:.25rem;
}
.nav-link:hover {
    
    color:white;
    background-color:rgba(0,0,0,.2);
}


.custom-btn {
    background-color: #3278ec; /* Deep Blue */
    color: white; /* White Text */
    border: 2px solid white; /* White Outline */
    border-radius: 25px; /* Curved Edges */
    padding: 10px 20px; /* Adds Space Inside the Button */
    font-size: 1.2rem; /* Increases Readability */
    font-weight: bold;
    text-transform: uppercase; /* Optional: Makes Text Uppercase */
    transition: all 0.3s ease-in-out; /* Smooth Hover Effect */
}

/* Hover effect to make it more interactive */
.custom-btn:hover {
    background-color: #fe7f03;
    color: white;
    border-color: #003366;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3); /* Gives a 3D effect */
    text-decoration: none;
}



.floating-btn {
    position: absolute;
    background: url('documents/play-button.png') no-repeat center center;
        background-size: contain; /* Ensure full image visibility */
    bottom: 0px; /* Positions the button at the bottom of the jumbotron */
    left: 50%;
        width: 405px; /* Adjust width */
        
    height: 150px; /* Adjust height */
    transform: translateX(-50%); /* Centers the button horizontally */
      transition: all 0.3s ease-in-out;
}



.jumbotron-footer {
    padding: 20px 35px; /* Adds padding around the footer */
    background: #ffffff; /* Light background for better readability */
    text-align: left; /* Centers text */
}

.jumbotron-footer p {
    margin-bottom: 10px; /* Adds spacing between paragraphs */
    font-size: 18px; /* Adjust text size */
    color: #000000; /* Soft gray color for text */
}

/* Logo Styling */
.logos {
    display: flex;
    justify-content: left; /* Centers images horizontally */
    align-items: center; /* Aligns images vertically */
    gap: 25px; /* Adds space between logos */
}

.logos img {
    height: 100px; /* Ensures all logos have the same height */
    width: auto; /* Keeps the aspect ratio */
}


.blue-bg {
    background:var(--blue);
}
.sand-bg {
    background:var(--sand);
}

.video-container {
    max-width:500px;
    padding:10px;
    margin:auto;
    & video{
    height:100%;
    width:100%;
    }
}

img.border-white {
    border:3px solid white;
}
#location-cards .card {
  border: none;
  border-radius: 5px;
}
#accessibility-cards.row {
}
#accessibility-cards .card-deck {
/*    margin:15px auto;*/
}

#accessibility-cards .card-deck .card {
  min-width: inherit;
    
    flex:none;
    margin-top:15px;
    margin-bottom:15px;
}
@media (min-width: 576px) { 
    #accessibility-cards .card-deck .card { width:calc(50% - 30px);}

}
@media (min-width: 768px) { 
    #accessibility-cards .card-deck .card { width:calc(33.3% - 30px);}

}

@media (min-width: 960px) { 
    #accessibility-cards .card-deck .card { width:calc(25% - 30px);}

}

@media (min-width: 1366px) { 
    #accessibility-cards .card-deck .card { width:calc(20% - 30px);}

}

.page-title {
    flex:none;
    width:100%;
    padding-bottom:0 !important;
    & h2 {font-size:2.5rem; margin-bottom:0;;}
}


@media (max-width: 992px) { /* Tablets */
    h1, h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) { /* Mobile */
    h1, h2 {
        font-size: 1.75rem;
    }
    p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) { /* Small Mobile */
    h1, h2 {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .floating-btn {
        width: 300px;
        height: 120px;
        }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .floating-btn {
        width: 250px;
        height: 100px;

    }
}