*{
    margin: 0;
    padding: 0;
}
BODY {
    width: 100%;
    background-color: rgb(255, 255, 255);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    font-family: 'Jura', sans-serif;
    font-size: 12pt;
    color: #000000;
    text-align: center;
}
#mainpage {
    border: 0;
    padding-top: 30px;
}
@media screen and (max-width: 800px) {
    .pageContent {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        background-position-x: -60px;

    }
    .nav_menu {
        width: 100%;
    }
    .mainpage {
        width: 100%;
    }
    .page{
        width: 100%;
        justify-content: center;
    }
    #mainpage {
        width: 100%;
        height: 700px;
    }
    .pageHeader{
        width: 100%;
    }
    .main-menu{
        width: 100%;
    }

    .nav {
        display: none;
    }
}

@media screen and (min-width: 800px) {
    .page {
        width: 1000px;
    }

    #mainpage {
        width: 900px;
        height: 700px;
    }

    .pageContent {
        min-width: 1000px;
    }

    .nav_menu {
        width: 808px;
        max-width: 808px;
        margin-left: 85px;
    }
    .pageHeader{
        width: 800px;
    }
}
.page {
    display: block;
    min-height: 100vh; /* Adjusted to ensure full viewport height */
    box-sizing: border-box;
}

.pageHeader {
    clear: none;
    min-height: 30px;
    box-sizing: border-box;
    text-align: center;
    opacity: 0.98;
}

.pageContent {
    background-color: white;
    float: left;
    clear: none;
    min-height: 800px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0);
}

.main-menu {
    font-family: 'Jura', sans-serif;
    width: 100%;
    flex: content-box;
    flex-direction: column;
    font-size: 18px;
    font-weight: bold;
    );}
a.main-menu {
    color: black;
}
.body_content{
    width:100%;
    display: flex;
    justify-content: center
}

.nav_menu a {
    margin: auto 30px;
}
.nav_menu a:hover {
    font-weight: bolder;
}
a:link {
    text-decoration: none;
    border-right: rgba(0, 0, 0, 0.29);
    border-left: rgba(0, 0, 0, 0.27);
}

a:visited {
    color: black;
}

::-webkit-scrollbar {
    width: 12px; /* width of the entire scrollbar */
}

::-webkit-scrollbar-track {
    background: rgba(120, 142, 164, 0); /* color of the tracking area */
}

::-webkit-scrollbar-thumb {
    background-color: rgba(106, 108, 84, 0.52); /* color of the scroll thumb */
    border-radius: 10px; /* roundness of the scroll thumb */
    border: 1px solid rgba(255, 255, 255, 0.55); /* creates padding around scroll thumb */
}
.nav_menu a {
    color: #000000;
    position: relative;
    text-decoration: none;
}

.nav_menu a:hover {
    color: rgba(0, 0, 0, 0.58);
}
.nav_menu a:hover::before {
    top: 0;
    transform-origin: left;
    transform: scaleX(1);
}
.nav_menu a:hover::after {
    transform-origin: right;
    transform: scaleX(1);
}

.nav_menu a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 1px;
    background-color: #c2c2c2;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .5s ease-in-out;
}


.nav_menu a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    border-radius: 1px;
    background-color: #8a8a8a;
    bottom: 0;
    left: 0;
    transform-origin: left;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

footer {
    background: rgba(194, 178, 164, 0.19);
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0);
    position: absolute;
    min-width: 100%;
}


#footerLogo {
    max-width: 220px!important;
    max-height: 154px!important;
}

.hidden {
    display: none;
}

.searchBar input[type=text] {
    border-radius: 6px;
    border: 1px rgba(0, 0, 0, 0.53) solid;
    filter: drop-shadow(2px 1px 1px rgba(0, 0, 0, 0.38));
    font-family: 'Jura', sans-serif;
    font-size: 10pt;
}

.searchBar input[type=button]{
    border: 0;
    font-family: 'Jura', sans-serif;
    font-size: 12pt;
    font-weight: bold;
    border-radius: 10px;
    background-color: transparent;
}

.searchBar {
    padding: 20px;
}

select {
    border-radius: 6px;
    border: 1px rgba(0, 0, 0, 0.53) solid;
    filter: drop-shadow(2px 1px 1px rgba(0, 0, 0, 0.38));
    font-family: 'Jura', sans-serif;
    font-size: 10pt;
}

.filterBar {
    padding-bottom: 5px;
    padding-top: 10px;
    z-index: 1;
    position: relative;
}

.parallax-banner {
    background-image: url("../img/backgroundSpring2.png"); /* Add your parallax background image */
    background-attachment: fixed;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: auto;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    text-align: center;
}

.parallax-banner h1 {
    position: relative;
    z-index: 1;
}

.parallax-banner p {
    position: relative;
    z-index: 1;
}

.parallax-content {
    max-width: 800px;
}

.parallax-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0));
}

nav {
    overflow: hidden;
    position: fixed;
    background: rgba(0, 0, 0 , 0.3);
    width: max-content;
    display: block;
    padding: 2px;
    z-index: 2;
    transform: translateX(-50%);
    right:0;
    bottom: 19rem;
    gap: 0.6rem;
    border-radius: 3rem;
    backdrop-filter: blur(15px);

}
nav a{
    background: transparent;
    padding: 0.5rem;
    border-radius: 80%;
    display: flex;
    transition: all 400ms ease;
}
nav a:hover{
    background: rgba(227, 227, 227, 0.21);
    color: #a8a8a8;
}

nav a.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}
.contact__icon {
    color: #ffffff;
}

nav img{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}
