
/*******************************************************************************
    (0) Sun And Moon
*******************************************************************************/
.sun-and-moon {
    background: linear-gradient(to bottom, #000000, #130B1E);
    z-index: 7;

    /* overflow: hidden; */

    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}
.sun-and-moon-info {
    position: absolute;
    display: flex;
    width: 100vw;
    height: 100dvh;
    flex-direction: column;
    align-items: center;
    z-index: 6;
    transition: 0.5s ease;
}
.fullscreen .sun-and-moon-info {
    opacity: 0;
    pointer-events: none;
}

/* Sun And Moon Text **********************************************************/
.sun-and-moon-text {
    position: absolute;
    top: 15dvh;
    text-transform: uppercase;
    filter: drop-shadow(0px 0px 6px #ffffffaa);
}
.sun-and-moon-text > span {
    font-weight: 200;
    filter: drop-shadow(0px 0px 6px #ffffffaa);
}

/* Vignette */
.sun-and-moon .vignette {
    position: absolute;
}

/* Sun And Moon ***************************************************************/
.sun-and-moon-switch {
    position: absolute;
    height: 20dvh;
    aspect-ratio: 1;
    top: 45dvh;
    border-radius: 50%;
    z-index: 8;

    box-shadow: 3dvh -3dvh 0 1dvh white inset;
    filter: drop-shadow(0px 0px 50px #ffffff);

    transform: translateY(-50%);

    cursor: pointer;
    transition: 0.5s ease;
}
@media(hover: hover) and (pointer: fine) {
    .sun-and-moon-switch:hover { transform: translateY(-50%) scale(1.1); }
}
.day .sun-and-moon-switch {
    height: 28dvh;
    background: white;
}

/* Sun And Moon Line **********************************************************/
.sun-and-moon-line {
    position: absolute;
    width: 0.6px;
    right: 49.98vw;
    top: 55dvh;
    bottom: 0;
    margin-left: 0.5px;
    background: #ffffff66;
    transition: 0.5s ease;
}


/* Nav Links ******************************************************************/
.nav-header {
    position: absolute;
    top: 60vh;
    font-weight: 500;
    filter: drop-shadow(0px 0px 6px #ffffffaa);
}
.nav-title {
    position: absolute;
    top: 70vh;
    padding: 0 2vh;

    font-weight: 500;
    font-style: italic;
    text-transform: uppercase;

    cursor: pointer;
    transition: color 0.5s ease;
}
.day-nav-title { 
    left: 50vw; 
    color: var(--extra-dim-white);
}
.day .day-nav-title { color: white; }
.night-nav-title {
    right: 50vw;
    color: white;
}
.day .night-nav-title { color: var(--extra-dim-white); }

.nav-links {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;

    height: 20dvh;
    top: 74.5dvh;
}
.day-nav-links { left: 50vw; }
.night-nav-links { right: 50vw; }
.nav-link {
    padding: 0 2dvh;
    cursor: pointer;
    transition: color 0.5s ease;
}
.day-nav-links > .nav-link { color: var(--extra-dim-white); }
.day .day-nav-links > .nav-link { color: var(--dim-white); }
.night-nav-links > .nav-link { color: var(--dim-white); }
.day .night-nav-links > .nav-link { color: var(--extra-dim-white); }

@media(hover: hover) and (pointer: fine) {
    .day-nav-title:hover { color: white; }
    .night-nav-title:hover { color: white; }
    .day-nav-links > .nav-link:hover { color: white; }
    .night-nav-links > .nav-link:hover { color: white; }
}


.star-link {
    height: 1.5dvh;
}
.star-link > path {
    fill: var(--dim-white);
    stroke: var(--extra-dim-white);
    stroke-width: 10px;
}



/*******************************************************************************
    (^) Sun And Moon End
*******************************************************************************/