body {
    font-size: 1.3em;
    font-family: "Quicksand", serif;
    font-weight: 400;
    font-style: normal;
}

.no-scroll {
    height: 100vh;
    overflow: hidden;
}

h2 {
    font-size: 2em;
}

body, html {
    overflow-x: hidden;
}

img {
    object-fit: cover;
}

@media(max-width: 992px) {
    .navbar-nav {
        position: absolute;
        top: 0;
        right: 0;
        height: 100vh;
        width: 40vw;
        min-width: 300px;
        padding: 70px 110px 40px 60px;
        background: white;
        transition: transform 0.3s;
        font-size: 1.8rem;
        z-index: 2;
    }

    .navbar-hidden {
        transform: translateX(200%);
        transition: transform 0.3s;
    }

    .navbar-shown-content-overlay-show {
        opacity: 40% !important;
        display: block !important;
    }

    .navbar-close {
        display: block !important;
        cursor: pointer;
        transition: opacity 0.2s;

        &:hover {
            opacity: 50%;
        }
    }
}

.navbar-shown-content-overlay {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: black;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0%;
    display: none;
    transition: opacity 0.3s;
}

.navbar-close {
    display: none;
    position: absolute;
    z-index: 100;
    top: 20px;
    right: 30px;
    font-size: 3rem;
}

.moved-photo {
    transform: translateY(40px);
}

@media (min-width: 576px) and (max-width: 992px) {
    .moved-photo {
        width: 50vw !important;
    }
    .semi-circle {
        max-width: 1000px !important;
        width: 70vw !important;
    }
}

.w-60 {
    width: 60%;
}

.bg-light-blue {
    background-color: #c8e0ee;
}

.semi-circle {
    max-width: 600px;
    width: 45vw;
    aspect-ratio: 2/1;
    border-radius: 300px 300px 0 0;
    background-color: #9ab4c6;
    position: absolute;
    bottom: 0;
}

.bg-light-pink {
    background-color: #ffd9d9;
}

.social-media-logo {
    font-size: 75px;
    color: #2e334a;
    cursor: pointer;

    &:hover {
        opacity: 0.8;
    }
}

.light-pink {
    background-color: #fff9f9;
}

.img-shadow {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.btn-link {
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid black;
    display: inline-flex;
    align-items: center;
    transition: border-color 0.4s ease;
    gap: 6px;
}
.btn-link img {
    transition: transform 0.4s ease;
    width: 1.2em;
    height: auto;
    display: inline-block;
}
.btn-link:hover {
    color: black;
    border-color: transparent;
}
.btn-link:hover img {
    transform: translateX(4px);
}

#carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;

    & > i {
        font-size: 50px;
        cursor: pointer;
        opacity: 50%;
        transition: opacity;

        &:hover {
            opacity: 80%;
        }

        @media(max-width: 768px) {
            display: none;
        }
    }
}

#carousel-image-window {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

#carousel-hover-overlay {
    background: black;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

    transition: opacity 0.2s;
    opacity: 0;
}

#carousel-hover-overlay:hover {
    opacity: 0.6;

    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;

    & > i {
        color: white;
        font-size: 75px;
    }
}

#carousel-image-belt {
    height: 100%;
    display: flex;
    flex-flow: row nowrap;
    transition: transform 0.5s;

    & > img {
        width: 100%;
        height: 100%;
        flex-shrink: 0;
        object-fit: cover;
    }
}

.bg-very-dark-blue {
    background-color: #2e334a;
}

.countdown-unit {
    font-size: 0.6em;
    font-weight: lighter;
    color: #2e334a;
}

.countdown-number {
    font-size: 2.5em;
    font-weight: lighter;
    top: 0;
    color: #2e334a;
}

@media(min-width: 768px) and (max-width: 1000px) {
    .countdown-number {
        font-size: 2em;
    }

    .countdown-unit {
        font-size: 0.4em;
    }
}

@media (max-height: 700px) {
    .countdown-number {
        font-size: 1.8em;
    }

    .countdown-unit {
        font-size: 0.35em;
    }
}

.premiere-circle {
    background-color: white;
    border-radius: 50%;
    width: 100%;
    min-width: 250px;
    max-width: min(70vw, 40vh);
    aspect-ratio: 1 / 1;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.premiere-btn {
    background-color: #2e334a;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 10px 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.watermark {
    position: absolute;
    opacity: 20%;
    right: 0;
    height: 115%;
    top: -8%;
    z-index: -1000;

    @media (max-width: 768px) {
        right: 15%;
        height: 130%;
    }
}

.opacity-75 {
    opacity: 75%;
}

.fs-2-2 {
    font-size: 2.2em;
}

footer {
    height: 200px;
    background-color: #2e334a;
    width: 100%;
}