:root {
    --nav-height: 230px;
}

#splash-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height); 
    background-color: #000;
    z-index: 65;
    display: flex;
    justify-content: center;
    align-items: center;
    /* overflow: hidden; */
    transition: background-color 0.5s ease;
}

#bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    display: none; 
    z-index: 1;
}

#logo {
    position: relative;
    width: 120px;
    height: auto;
    z-index: 2;
    opacity: 1;
    transform: scale(0.5); 
}

#nav-links {
    position: absolute;
    display: flex;
    width: 100%;
    padding: 40px;
    box-sizing: border-box;
    z-index: 3;
    opacity: 0;
}

#nav-links ul {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    align-items: center;
}

#nav-links ul:first-of-type {
    left: calc(35% - 39px);
}

#nav-links ul:last-of-type {
    left: calc(65% + 26px);
}

#nav-links ul li a,
#nav-links ul li .dropdown_heading {
    color: var(--gold);
    text-transform: uppercase;
    font-family: "feature_film_jnlregular";
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 22px;
    margin: 0 20px;
}

#main-content {
    position: relative;
    width: 100%;
    padding-top: var(--nav-height);
    opacity: 0;
    z-index: 5;
}

#skip-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 10px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    display: none;
}

.is-new-user #splash-bg {
    height: calc(var(--mobile_vh, 1vh) * 100);
    height: 100%;
}

.is-new-user #bg-image {
    display: block;
}

.is-new-user #skip-btn {
    display: block;
}

.is-new-user #logo {
    opacity: 0;
    transform: scale(45);
}

.is-new-user body {
    overflow: hidden;
}

.force-shrunk #splash-bg { 
    height: 120px;
}

.force-shrunk #logo {
    transform: scale(1) translateY(75px) !important;
    opacity: 1 !important;
    transition: none !important;
}

.force-shrunk #clip-rect {
    height: 100px !important;
}

.force-shrunk #main-content {
    padding-top: 0;
}

@media (max-width: 1100px) {
    #nav-links {
        padding: 25px;
    }
}

@media (max-width: 800px) {
    #nav-links {
        padding: 20px;
    }
}

@media (max-width: 600px) {
    /* 1. Shorter Navbar */
    #splash-bg {
        height: 170px; 
    }

    /* 2. Adjust Logo size for the smaller bar */
    #logo {
        width: 100px; /* Slightly smaller base width */
    }

    /* 3. Adjust the Content Spacer */
    #main-content {
        padding-top: 170px; 
    }

    /* 4. The Force-Shrunk state for mobile (e.g. 40px) */
    .force-shrunk #splash-bg {
        height: 80px;
    }

    .force-shrunk #logo {
        transform: scale(1) translateY(61px) !important;
        opacity: 1 !important;
        transition: none !important;
    }
}

@media (max-width: 1100px) {
    .force-shrunk .navigation_is_open {
        height: 100% !important;
    }
}