* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2em;
    min-height: 100vh;
    background-color: #F9DDA7;
}

.page-gap {
    width: 100%; 
    padding: 180px 0;
}

@media (max-width: 900px) {
    .page-gap {
        padding: 80px 0;
    }
}

h1 {
    text-align: center;
    margin: 2rem 0;
    color: #117188;
    font-family: Cambria;
    letter-spacing: 0.1em;
}

p {
    font-family: Calisto;
}

/* __Navbar__ */

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 100%;
    position: sticky;
    top: 0;
    background: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 1000;

    background-color: rgb(255, 255, 255, 0.4);
    /*  padding: 1em; */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    max-width: 1600px;
    height: 100px;
}

.navbar-container .navbar-menu {
    display: flex;
    text-align: center;
    list-style: none;
}

.navbar-container .navbar-menu li a {
    text-decoration: none;
    color: #000000;
    font-size: 1em;
    font-weight: 500;
    padding: 3px 20px;
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.7s ease;
    white-space: nowrap;
    margin: 0px 4px;
}

.navbar-container .navbar-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.8);
    color: #000;
    border: 2px solid rgba(255, 255, 255, 0.8);
}   

.book-button {
    background-color: #117188;
    border: 2px solid transparent;
    color: #fff;
    border: 2px solid #117188;
    text-align: center;
    font-size: 1em;
    font-weight: 500;
    padding: 3px 20px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}   

.book-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid #117188;
    color: #000;
}  


.mini-nav-menu > *{
    display: none;
}

.navbar-toggle {
    background: transparent;
    padding: 10px;
    border:none;
    cursor: pointer;
}


.bar{
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #000;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 900px) {
    .navbar {
        backdrop-filter: none;
    }
    
    .navbar-container .navbar-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.7rem !important;
        width: 180px;
        position: absolute;
        height: auto;
        top: 85px;
        right: 10px;
        padding: 1rem 1.5rem;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(10px);
    }

    .navbar-container .navbar-menu li button{
        display: none;
    }


    .mini-nav-menu{
        display: flex;
        flex-direction: row;
    }

    .mini-nav-menu .book-button{
        margin-right: 10px;
    }

    .mini-nav-menu > * {
        display: inline-block;
        z-index: 1001;
    }

    .navbar-container .navbar-menu.active {
        display: flex;
    }

    .navbar-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .navbar-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

/* __End Navbar__ */

/*_________________?? Edit this??_________________
.responsive-image {
    width: 100%;
    height: auto;
}*/

/* __All pages__ */

.content-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    margin: 1.5rem 0;
    background-color: #F9DDA7;
    box-shadow: #000 0px 2px 3px;
    border-radius: 15px;
    margin-left: 5%;
    margin-right: 5%;
}

.content-div-2{
    background-color: #85C2C0;
    width: 100%;
    padding: 50px;
}

/* __End All pages__ */

/* __Homepage__ */

.in-line-icon{
    display:inline-block; 
    height:1em; 
    width:auto; 
    transform:translate(0, 0.1em);
}

/* __About Page__ */



.team-profiles {
    list-style-type: none;
}

.team-member-profile {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 0 1rem;
    margin: 0;
    background-color: #F9DDA7;
}

.team-member-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0.5em 1em;
    float: left;
}

.team-member-profile p{
    font-size: 0.8em;
    text-align: justify;
}

h1.span {
    background: linear-gradient(90deg, #117188, #85C2C0);
}

/* __End About Page__ */

/* __Contact Page__ */

input:focus {
    background-color: rgb(213, 236, 244);
}

/* __End Contact Page__ */

/* __Footer__ */

footer {
    text-align: center;
    padding: 20px 5%;
    background-color: #117188;
    color: #85C2C0;
    font-size: 0.8em;
    font-weight: 500;
}
footer div {
    float: left;
    width: 100%;
    text-align: center;
    gap: 0.5rem;
    display: flex;
    margin-bottom: 1em;
    padding: 10px;
}

footer div * {
    flex-direction: column;
}

.social-media-links {
    justify-content: center;
    margin-top: 0.5rem;
    display: inline-block;
}

.social-media-button {
    background-color: #73b8c9;
    width: 35px;
    height: 35px;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    margin: 0 2%;
    background-repeat: no-repeat;
    background-size: contain;
}

.social-media-button:hover {
    background-color: rgba(255, 255, 255, 0.8);
    border: 2px solid #117188;
    transform: scale(1.2);
}

/* __End Footer__ */