/* These are styles used only on the landing page */

nav {
    height: 7.5%;
    width: 90%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: rgba(0, 0, 0, 0.75);
    left: 50%;
    transform: translateX(-50%);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: fixed;
    z-index: 2;
}

nav .nav-logo,a,.discover-dropdown {
    margin-left: 20px;
}

.nav-logo {
    height: 30px;
}

.nav-right {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-right: 20px;
}

nav .discover-dropdown,.hamburger-menu .discover-dropdown {
    position: static;
    height: auto;
}

.hamburger-menu .discover-dropdown .dropdown-icon {
    margin-top: 25px;
    margin-bottom: 25px;
}

.hamburger-menu .discover-dropdown .dropdown-content {
    right: unset;
    margin-top: 0;
}

nav .discover-dropdown .dropdown-icon {
    margin-bottom: 5px;
}

.nav-login {
    color: #0F95EC;
}

section {
    width: 100%;
    height: 50vh;
    overflow: hidden;
    position: relative;
}

footer {
    width: 100%;
    background-color: #1b1821;
    height: fit-content;
    min-height: 40vh;
    padding-left: 20px;
    padding-top: 20px;
    position: relative;
}

footer .footer-logo {
    width: 12.5%;
    margin-bottom: 40px;
}

footer .footer-section {
    width: 30%;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    line-height: 1.75;
}

footer .footer-section h4 {
    font-weight: bold;
}

footer .footer-section a {
    font-size: 17px;
    width: fit-content;
}

footer .footer-bottom {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: calc(100% - 20px);
}

footer .footer-bottom img {
    width: 100px;
    margin-bottom: 10px;
}

.first-section {
    height: 75vh;
    background-image: url(/assets/media/Backgrounds/Evergreen.png);
    background-size: 110vw;
    background-repeat: no-repeat;
    background-position: 0% top;
    animation: moveEvergreen 30s alternate-reverse infinite linear;
    overflow-x: auto;
}

section img:not(.transparent-section .section-right img,.dark-section .section-right img,.stripes-section .section-right img) {
    width: 500px;
}

.section-content {
    width: 75vw;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.section-right,.section-left {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    height: 100%;
}

.section-right {
    align-items: center;
}

section h1 {
    font-size: 50px;
    text-align: left;
    display: flex;
    align-items: flex-start;
}

section p {
    font-size: 20px;
}

.transparent-section {
    background: transparent;
    height: auto;
    padding-bottom: 20px;
    padding-top: 20px;
}

.section-images img {
    height: 150px;
    width: 150px;
    display: flex;
    line-height: 100% !important;
}

.section-images {
    flex-direction: row;
    position: relative;
    z-index: 1;
}

.dark-section {
    background-color: rgba(0, 0, 0, 0.75);
}

.dark-section .section-left {
    align-items: first baseline;
}


.first-section {
    clip-path: polygon(0% 0%,100% 0%,100% calc(100% - 5.13vw),0% 100%);
}

.first-section::after {
    content: '';
    background-color: white;
    width: 100%;
    height: 10px;
    position: absolute;
    bottom: 0;
    transform: skewY(-3deg);
    transform-origin: top left;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave svg {
    position: relative;
    display: block;
    width: calc(113% + 1.3px);
    height: 96px;
    transform: rotateY(180deg);
}

.wave .shape-fill {
    fill: rgba(0, 0, 0, 0.75);
}

.transparent-section img {
    height: 50vh;
}

.section-right .review {
    width: 100%;
    min-width: none;
    max-width: none;
}


.section-right #reviews {
    width: 100%;
}

.stripes-section {
    background-image: url(/assets/media/Backgrounds/StripedBG.png);
}

.crown-section {
    background-image: url(/assets/media/Backgrounds/CrownBG.png);
    background-position: bottom center;
    background-size: cover;
    background-repeat: no-repeat;
}

.stripes-section .section-content {
    width: 80vw;
}

.hamburger-button {
    z-index: 5;
    height: 50px;
    width: 50px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    color: white;
    top: 0;
    right: 0 !important;
    position: fixed;
    align-items: center;
    justify-content: center;
}

.hamburger-button i {
    font-size: 30px;
}

.hamburger-menu {
    display: none;
    width: auto;
    height: fit-content;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 5;
}

.hamburger-contents {
    display: none;
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    height: auto;
    width: 80vw;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.75);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.hamburger-contents a {
    display: block;
    margin-top: 25px;
    margin-bottom: 25px;
    margin-left: 20px;
    font-size: 20px;
}


/* Viewport-specific styles */

@media screen and (max-width: 1160px) {
    .first-section {
        background-size: 140vw;
    }
}

@media screen and (max-width: 900px) {
    .first-section {
        background-size: 180vw;
    }
}

@media screen and (max-width: 800px) {
    nav {
        display: none;
    }

    .first-section {
        background-size: auto;
    }

    .first-section .section-right {
        display: none;
    }

    .section-left {
        width: 100%;
    }

    .section-content {
        width: 100%;
    }

    section h1 {
        text-align: center;
        font-size: 40px;
    }

    section p {
        font-size: 15px;
    }

    .transparent-section .section-content {
        flex-direction: column;
        justify-content: space-evenly !important;
    }
    
    .section-images img {
        width: 100px;
    }

    .transparent-section .section-left {
        height: 120px;
    }

    .transparent-section .section-right {
        display: none;
    }

    .dark-section .section-right {
        display: none;
    }

    .dark-section {
        height: auto;
    }

    .dark-section .section-left {
        align-items: center;
        margin-top: 10px;
    }

    .hamburger-menu {
        display: flex !important;
    }

    section p,section h1 {
        text-align: center;
        justify-content: center;
    }

    .stripes-section .section-right {
        display: none;
    }

    .stripes-section {
        height: auto;
    }

    .crown-section .section-right {
        display: none;
    }

    .crown-section {
        height: auto;
    }
}

@media screen and (max-width: 1200px) {
    .transparent-section {
        height: 50vh;
    }

    .transparent-section img {
        height: 30vh;
    }
}

@media screen and (max-width: 900px) {
    .section-images img {
        width: 125px;
    }
}

@media screen and (max-height: 400px) {
    .transparent-section {
        height: 120vh !important;
    }
}