body {
  visibility: hidden;
}

body.loaded {
  visibility: visible;
}


body {
    background-color: black;
    color: white;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

@font-face {
    font-family: "GurmukhiMN";
    src: url("../fonts/gurmukhi-mn.ttf") format(truetype);
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Marmelad";
    src: url("../fonts/Marmelad-Regular.ttf") format(truetype);
}

@font-face {
    font-family: "StardosStencil";
    src: url("../fonts/StardosStencil-Regular.ttf") format(truetype);
}

@font-face {
    font-family: "Rosario";
    src: url("../fonts/Rosario-VariableFont_wght.ttf") format(truetype);
}

/* NAV CONTENT */
/* NAV CONTENT */
/* NAV CONTENT */
/* NAV CONTENT */
.mobile-nav {
    display: none;
}

.mobile-menu {
    display: none;
}

nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    justify-content: center;
    gap: 6rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 1rem;
}

.brand {
    display: flex;
    margin: 0;
    align-items: center;
}

nav h1 {
    color: white;
    font-family: "GurmukhiMN";
    font-size: 2rem;
    margin: 0;
}

.nav-selections {
    display: flex;
    justify-content: center;
    gap: 5.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-selections a {
    color: white;
    font-family: "Marmelad";
    font-size: 1.25rem;
    text-decoration: none;
    font-weight: 400;
}

@media (max-width: 768px) {
    .nav-options {
        display: none;
    }
    .mobile-nav {
        display: flex;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        cursor: pointer;
        padding: 0;
        margin-right: 3rem;
        background-color: black;
        border: none;
    }

    .brand {
        margin-left: 1rem;
    }
    
    .hamburger-line {
        height: 1.5px;
        background-color: white;
        transition: all 0.3s ease-in-out;
        border-radius: 2px;
    }

    .hamburger-line-one {
        width: 20px;
    }

    .hamburger-line-two {
        width: 15px;
        margin-top: 5px;
        align-self: flex-end;
    }

    .hamburger-line-three {
        width: 20px;
        margin-top: 5px;
    }

    .hamburger.active .hamburger-line-one {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active .hamburger-line-two {
        opacity: 0;
        width: 0;
    }

    .hamburger.active .hamburger-line-three {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background-color: rgba (0, 0, 0, 0.8);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        gap: 2rem;
    }

    nav h1 {
        color: white;
        font-family: "GurmukhiMN";
        font-size: 1.5rem;
        margin: 0;
    }
    
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: black;
        backdrop-filter: blur(20px);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.8);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .mobile-menu-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        color: white;
        font-size: 2rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: rotate(90deg);
    }

    .mobile-menu-items {
        list-style: none;
        text-align: center;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-items li {
        margin: 1.5rem 0;
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.3s ease;
        transition-delay: calc(var(--i) * 0.1s);
    }

    .mobile-menu.active .mobile-menu-items li {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-menu-items a {
        color: white;
        text-align: center;
        font-family: "Marmelad";
        font-size: 1.5rem;
        font-weight: 700;
        text-decoration: none;
        padding: 1rem 1rem;
        border-radius: 15px;
        display: block;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        transform: translateX(0rem);
    }

    .mobile-menu-items a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.5s;
    }
    
    .mobile-nav {
        display: flex;
    }

    nav {
        padding: 1rem;
    }

    .brand h1 {
        font-size: 1.5rem;
    }

    .content h2 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    body.menu-open {
        overflow: hidden;
    }
}

/* HERO VIDEO */
/* HERO VIDEO */
/* HERO VIDEO */
/* HERO VIDEO */
.hero-video {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    margin-top: 10rem;
}

.hero-video video{
    width: 35rem;
    height: 15rem;
    object-fit: cover;
    object-position: 50% 46%;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
}
.ground-shadow {
    width: 25rem;
    height: 2.8rem;
    border-radius: 37rem;
    background: 
    #F1DAC0;
    filter: blur(50px);
    position: relative;
    z-index: 1;
    transform: translateY(-3.5rem) translateX(-1.2rem);
}
.mobile-purposes {
    display: none;
}
@media (max-width: 768px) {
    .hero-video video{
    display: none;
    }
    .mobile-purposes {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    .mobile-purposes-image {
        width: 19rem;
        height: 10rem;
        object-fit: cover;
        object-position: 50% -40%;
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 2;
    }
    .ground-shadow {
        width: 13rem;
        height: 2.1rem;
        border-radius: 37rem;
        background: 
        #F1DAC0;
        filter: blur(25px);
        position: relative;
        z-index: 1;
        transform: translateY(-2.6rem) translateX(-.5rem);
            }
        }

@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-video video{
        display: none;
    }
    .mobile-purposes {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    .mobile-purposes-image {
        width: 19rem;
        height: 10rem;
        object-fit: cover;
        object-position: 50% -40%;
        padding: 0;
        margin: 0;
        position: relative;
        z-index: 2;
    }
    .ground-shadow {
        width: 13rem;
        height: 2.1rem;
        border-radius: 37rem;
        background: 
        #F1DAC0;
        filter: blur(25px);
        position: relative;
        z-index: 1;
        transform: translateY(-2.6rem) translateX(-.5rem);
    }
}
@media (orientation: landscape) and (max-width: 1024px) {
    .hero-video video {
        display: none !important;
    }
.mobile-purposes {
        display: flex !important;
    }
}

/* TOO EARLY MESSAGE */
/* TOO EARLY MESSAGE */
/* TOO EARLY MESSAGE */
/* TOO EARLY MESSAGE */
.too-early {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    margin-top: 10rem;
    padding: 0;
    padding-top: 1rem;
}

.too-early h1 {
    color: white;
    font-family: "Rosario";
    font-size: 2rem;
    font-weight: 600;
    font-style: normal;
    padding: 0;
    padding-top: 2rem;
}

.too-early p {
    width: 27rem;
    text-align: center;
    font-family: "StardosStencil";
    font-size: 1rem;
    font-style: normal;
    font-weight: 200;
    opacity: .75;
}

.too-early p a {
    color: #59A138;
    filter: brightness(1.25);
    transition: all .2s ease;
    cursor: pointer;
    display: inline-block;
}

.too-early p a:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .too-early {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        padding-top: 8rem;
    }

    .too-early h1 {
    color: white;
    font-family: "Rosario";
    font-size: 1.5rem;
    font-weight: 600;
    font-style: normal;
    padding: 0;
    padding-top: 2rem;
    }

    .too-early p {
        width: 20rem;
        text-align: center;
        font-family: "StardosStencil";
        font-size: 1rem;
        font-style: normal;
        font-weight: 200;
        opacity: .75;
    }

    .too-early p a {
        color: #59A138;
        filter: brightness(1.25);
        transition: all .2s ease;
        cursor: pointer;
        display: inline-block;
    }

    .too-early p a:hover {
        transform: scale(1.05);
    }

    .hero-video {
        margin-top: 10rem;
    }
}

/* TRIPS SECTION */
/* TRIPS SECTION */
/* TRIPS SECTION */
/* TRIPS SECTION */
.trips {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.trips h2 {
    color: white;
    font-family: "Rosario";
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.trips-description {
    display: flex;
    justify-content: center;
    width: 18.5rem;
    text-align: justify;
    font-family: "StardosStencil";
    font-size: 1.25rem;
    opacity: .75;
    padding: 0;
}

.trips-description-two {
    display: flex;
    flex-direction: column;
}

.try-button {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    height: 2rem;
    width: 9.5rem;
    background-color: rgba(119, 215, 75, .75);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5), 
                0 0 0 2px rgba(255, 255, 255, 0.5);
    font-family: "StardosStencil";
    font-size: 1rem;
    color: black;
    padding-top: .1rem;
    transition: all .2s ease;
}

.try-button:hover {
    transform: scale(1.2);
}

.highlight {
    color: #59A138;
    filter: brightness(1.25);
}

.image-box {
    position: relative;
    background-color: black;
    width: 30.5rem;
    height: 15.5rem;
    border-radius: 0 .625rem .625rem 0;
    overflow: hidden;
}

.image-box::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    
    border-radius: inherit;
    z-index: -1;
}

.image-box-reverse {
    position: relative;
    background-color: black;
    width: 30.5rem;
    height: 15.5rem;
    border-radius: .625rem 0 0 .625rem;
    overflow: hidden;
}

.image-box-reverse::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    
    border-radius: inherit;
    z-index: -1;
}

.trips-one {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.20rem;
}

.trips-two {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.20rem;
    padding-top: 4rem;
}

.trips-three {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4.20rem;
    padding-top: 4rem;
}

.slideshow-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.trips-image-two {
    position: absolute;
    top: 0; left: 0;
    width: 140%;
    height: 140%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity .5s ease;
    margin-top: -10%;
    margin-bottom: -20%;
    margin-left: -15%;
}

.trips-image-two.active {
    opacity: 1;
}

.trips-image-one {
    width: 150%;
    height: 150%;
    object-fit: cover;
    object-position: center;
}

.trips-image-three {
    width: 160%;
    height: 160%;
    object-fit: cover;
    object-position: center;
}

.spacer-two {
    display: flex;
    height: 1px;
    width: 60rem;
    background-color: gray;
    padding: 0;
    margin: 0;
    margin-top: 4rem;
    opacity: .5;
}

@media (max-width: 768px) {
    .trips {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .image-box {
        width: 20rem;
        height: 13rem;
    }

    .image-box-reverse {
        width: 20rem;
        height: 13rem;
    }

    .trips-one {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .trips-two {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .trips-three {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .spacer-two {
        width: 20rem;
    }

    .trips-description {
        font-size: 1rem;
    }

    .trips-description-two {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .try-button {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    height: 2rem;
    width: 9.5rem;
    background-color: rgba(119, 215, 75, .75);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5), 
                0 0 0 2px rgba(255, 255, 255, 0.5);
    font-family: "StardosStencil";
    font-size: 1rem;
    color: black;
    padding-top: .1rem;
    transition: all .2s ease;
    }
}

/* FOOTER CONTENT */
/* FOOTER CONTENT */
/* FOOTER CONTENT */
/* FOOTER CONTENT */
.end-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #151515;
    margin: 0;
    padding: 0;
    margin-top: 7rem;
}

.footer-sections {
    display: flex;
    justify-content: center;
    gap: 8rem;
}

.footer-column-one,
.footer-column-two {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.footer-column-one ul,
.footer-column-two ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: "Rosario";
}

.footer-column-one a,
.footer-column-two a {
    color: inherit;
    text-decoration: none;
    opacity: .5;
    transition: all .2s ease;
}

.footer-column-one a:hover,
.footer-column-two a:hover {
    color: #e4c5a1;
}

.footer-column-one h3,
.footer-column-two h3 {
    opacity: .75;
    font-size: 1rem;
}

.footer-divider {
    height: 1px;
    width: 60rem;
    background-color: white;
    padding: 0;
    margin: 0;
    opacity: .25;
    margin-top: 1rem;
}

.copyright {
    font-family: "GurmukhiMN";
    opacity: .50;
    font-size: .8rem;
}

@media (max-width: 768px) {
    .end-footer {
        display: flex;
        margin-top: 4rem;
    }

    .footer-column-one {
        display: none;
    }

    .footer-divider {
        width: 20rem;
    }
}