html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

p{
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

nav{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    color: #FFFFFF;
    z-index: 999;
}

.nav-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
}

.nav-link-container{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #000000;
}

.nav-link-container.sticky{
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    background-color: #000000;
    z-index: 1000;
}

.nav-link{
    text-decoration: none;
    color: #FFFFFF;
    margin: 0 1rem;
    font-family: 'Montserrat', sans-serif;
}

main{
    height: 100vh;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.left-side{
    display: flex;
    min-height: 100vh;
    background-color: #FFFFFF;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #000000;
}

.right-side{
    background-color: #000000;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 8vw;
    text-align: center;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-height: 100vh;
}

.right-side::-webkit-scrollbar {
    display: none;
}

.content-container{
    max-width: 600px;
    max-height: 75vh;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: 12rem;
    position: relative;
}

.content-container::-webkit-scrollbar{
    display: none;
}

.content-container::after{
    content: '\f078';
    font-family: 'fontawesome';
    position: fixed;
    bottom: 0;
    left: calc(50vw + 25% - 1rem);
    color: #FFFFFF;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    line-height: 1;
}

.content-container.has-scroll::after{
    opacity: 1;
}

.content-container.scrolled-to-bottom::after{
    opacity: 0;
}

.social-media-icons{
    position: fixed;
    bottom: 2vh;
    right: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-media-icons img{
    width: 32px;
    height: 32px;
    margin: 0.5rem 0;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    text-align: center;
    color: #FFFFFF;
}

@media (max-width: 991px){
    .nav-link{
        margin: 0;
    }
    main{
        position: relative;
        height: auto;
    }
    .social-media-icons{
        display: none;
    }
    .content-container{
        max-height: none;
        margin-top: 6rem;
        margin-bottom: 6rem;
    }

    .content-container::after{
        display: none;
    }

    .nav-link-container.sticky{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }

    .nav-link-container{
        display: none;
    }

    .right-side{
        max-height: unset !important;
    }
    footer{
        display: none;
    }
}

.navigation__mobile_hamburger{
    display: none;
}

#nav-icon3 {
    width: 35px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
  
#nav-icon3 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #FFF;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}
  

#nav-icon3 span:nth-child(1) {
    top: 0px;
}

#nav-icon3 span:nth-child(2),#nav-icon3 span:nth-child(3) {
    top: 12px;
}

#nav-icon3 span:nth-child(4) {
    top: 24px;
}

#nav-icon3.open span:nth-child(1) {
    top: 12px;
    width: 0%;
    left: 50%;
}

#nav-icon3.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

#nav-icon3.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

#nav-icon3.open span:nth-child(4) {
    top: 18px;
    width: 0%;
    left: 50%;
}

#mobileNav{
    height: 100vh;
    top: 100vh;
    padding-top: 2.4rem;
    transition: .25s ease-in-out;
    position: fixed;
    width: 100%;
    background-color: #000000;
}

#mobileNav.mobile_open{
    top: 49px;
    transition: .25s ease-in-out;
}

#mobileNav .nav-link{
    font-size: 1.5rem;
}

@media (max-width:991px){
    .navigation__mobile_hamburger {
        padding-top: 10px;
        position: fixed;
        left: 50%;
        top: calc(100% - 49px);
        transform: translateX(-50%);
        font-size: 35px;
        text-align: center;
        display: block;
        width: 55px;
        cursor: pointer;
        z-index: 999;
        background-color: #000;
        height: 49px;
        border-radius: 10px 10px 0 0;
        border: 1px solid #fff;
        border-bottom: none;
        transition: top 0.25s ease-in-out;
    }

    .open_nav{
        top: 0;
        transition: top 0.25s ease-in-out;
    }

    #mobileNav .social-media-icons {
        display: flex;
        position: absolute;
        bottom: calc(48px + 4.8rem);
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        right: unset;
        gap: 20px;
    }

    .nav-item{
        width: max-content;
        margin: 0 auto;
    }
}

.noscroll{
    overflow: hidden;
}

.active{
    color: var(--bs-nav-link-hover-color);
}

/* Gallery Mosaic Styles */
section.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 20px;
    width: 100%;
    max-width: 100%;
    margin-top: 8rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991px) {
    section.gallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 12px;
        padding: 15px;
        margin-top: 5rem !important;
    }
}

.form-group{
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-primary{
    --bs-btn-bg: #006c7e;
    --bs-btn-border-color: #006c7e;
}

.grecaptcha-badge { 
    visibility: hidden;
}