@keyframes navbar_dropdownAnim_fwrd {
    from { clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
    to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}
@keyframes navbar_dropdownAnim_bkrd {
    from { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    to { clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
}

@keyframes animateBG {
    from { background-position: 0 50%; }
    to { background-position: 100% 50%; }
}
@keyframes slightZoomBG {
    from { transform: scale(1);}
    to { transform: scale(1.05);}
}

@keyframes rotateSquare {
    from { 
        transform: scale(0) rotate(0); 
        opacity: 1; 
    }
    to { 
        transform: scale(5) rotate(960deg); 
        opacity: 0;
    }
}

body {
    background-color: var(--legacy_bgcol) !important;
}

.mainbody-wrapper {
    position: relative;
    width: 100%; height: auto;
    overflow: hidden !important;
}

.animatedBG {
    top: 0;
    width: 100%; height: 100vh;
    margin: auto;
    z-index: -1;
    background: linear-gradient(
        135deg, 
        var(--cl-parallax_left),
        var(--cl-parallax_center),
        var(--cl-parallax_right)
    );
    background-size: 200% 200%;
    animation: animateBG 5s ease-in-out infinite alternate;
}

.entrance-wrapper {
    width: 100%; height: 100vh;
    overflow: hidden;
    pointer-events: none;
}

.entranceBG {
    top: 0;
    width: 100%; height: 100%;
    /* background-image: var(--imgURL); */
    overflow: hidden;
    background-size: cover;
}
.slightzoom { animation: slightZoomBG 4s ease-in-out infinite alternate; }

.animSquare {
    width: 50px; height: 50px;
    border: 3px solid white;
    /* box-shadow: 0 0 5px white; */

    position: absolute;
    animation: rotateSquare 12s ease-in infinite forwards;
    transform: scale(0);
}

.entrance-image-container {
    position: absolute; top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    width: 100%; height: 100vh;
}
.entrance-image-container div {
    align-self: center;
    flex-shrink: 0;
    width: 45vw; height: 40vw;
}


.title {
    background: linear-gradient(var(--cl-parallax_center), var(--PURPLE));
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    padding: 10px 0 0 0; 
    font-weight: 550;
}

.title-wrapper { width: fit-content; margin: auto; }

hr.title-hr {
    position: relative;
    margin: auto;
    width: 65%;
    text-align: center;
    height: 5px; opacity: 1;
    border: none; border-radius: 2px;
    background: linear-gradient(
        to right, 
        var(--cl-parallax_center), var(--MAGENTA)
    );
}

.section {
    text-align: justify; 
    padding: 50px clamp(15px, 15vw, 2.5rem) !important;
}

/*** NAVBAR ***/

.navbar {
    position: absolute !important; 
    top: 0; left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    border-radius: 0 0 15px 15px;
    min-height: 75px;

    background-color: var(--cl-navbar_bgcol);
    transition: border-radius .2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.navbar-home {
    width: 10%; min-width: 125px;
    padding: 5px; margin: 5px 15px;

    object-fit: contain;
}

.navbar-home > a > img { /* navbar home image */
    max-height: 50px; 
    width: 100%; 
    height: 100%;
} 

.navbar-linkslist {
    padding: 5px 15px; margin: 5px;
    display: flex;
    gap: 25px;
}

#navbar-dropdown-icon { 
    display: none;
    background-image: var(--bs-navbar-toggler-icon-bg); 
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    width: 2em;
    height: 2em;
    margin: 0 1em;
    cursor: pointer;
}

#navbar-dropdown-menu {
    display: flex;
    flex-direction: column;
    justify-content: center; align-items: center;
    gap: 5px;

    position: absolute;
    width: 100px; height: 0;
    top: 75px; right: 0;
    background-color: rgb(161, 161, 161);
    border-radius: 0 0 0 15px;
    z-index: 2;
    overflow: hidden;

    transition: height .2s cubic-bezier(0.075, 0.82, 0.165, 1);

}


/*** FUNCTIONALITY CLASSES ***/
.inter-hover { transform: scale(1.0); transition: .2s ease; }
.inter-hover:hover { transform: scale(1.1); }
.img { width: 100%; height: 100%; }

.forced-link { cursor: pointer; }
.nodeco {text-decoration: none;}
.disabledLink {
    text-decoration: none;
    opacity: 0.5;
    color: var(--disabled-lnk);
    pointer-events: none;
}
.disableTransition { transition: none !important; }
.disableAnimation { animation: none !important; }
.centertxt { text-align: center !important; }