@font-face {
    font-family: 'Montserrat-Light';
    src: url('font/Montserrat-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat-Light', Arial, sans-serif; 
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.03);
    position: fixed;
    width: 100%;
    z-index: 100;
    border-bottom: 2px solid #5c5e62; /* can we move this line up by 5px */
    padding: 1px 0;
}
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.nav-links li {
    margin-left: 1rem;
    padding-right: 25px;
}
.nav-links a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    transition: color 0.2s linear;
}
.nav-links a:hover {
    color: #000;
}
.nav-links {
    display: flex;
    justify-content: flex-end; 
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a {
    text-decoration: none;
    color: #000;
    text-transform: uppercase;
    padding: 0 15px;
    font-size: 14px;
    transition: color 0.2s linear;
}
.nav-links a:hover {
    color: #000; 
}
.logo img {
    height: 80px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 80px; 
    padding-right: 80px; 
    border-bottom-width: 25px;
    border-right: 2px solid #5c5e62; 
}
.logo-mobile {
    display: none;
}
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
}
.banner {
    position: relative;
    height: 100vh;  
    overflow: hidden;  
    margin: 0;  
    padding: 0;
}
.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
    transition: opacity 0.5s ease-out;
}
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;  
    opacity: 0; 
    transition: opacity 0.5s ease-in;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}
.nav-links.active {
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    align-items: flex-start;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%; 
    padding: 0;
    z-index: 10;
    transition: max-height 0.4s ease-in; 
    max-height: 500px; 
}
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.03);
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px; 
    z-index: 100; 
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
}
.footer-content p {
    margin: 0;
    font-size: 14px; 
}
.social-links {
    display: flex;
    gap: 15px;
    padding-right: 30px;
}
.social-links a img {
    display: block;
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
}
.social-links a:hover img {
    transform: scale(1.2); 
}
#content {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1000;
    animation: screenEffect 0.1s steps(2, end) infinite;
}
@keyframes screenEffect {
    0% { opacity: 1; }
    50% { opacity: 0.2; }
    100% { opacity: 1; }
}
.artifact-line {
    position: fixed;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    left: 0;
    opacity: 0;
    animation: artifactDistortion 0.2s ease-in-out infinite;
}
@keyframes artifactDistortion {
    0% { opacity: 0; transform: translateY(0px); }
    50% { opacity: 1; transform: translateY(5px); }
    100% { opacity: 0; transform: translateY(-5px); }
}
@keyframes rgbTextEffect {
    0% { transform: translate(0, 0); text-shadow: 2px 2px red, -2px -2px blue; }
    20% { transform: translate(-3px, 3px); text-shadow: -2px -2px green, 2px 2px blue; }
    40% { transform: translate(3px, -3px); text-shadow: 2px -2px red, -2px 2px green; }
    60% { transform: translate(-3px, -3px); text-shadow: -2px 2px blue, 2px -2px red; }
    80% { transform: translate(3px, 3px); text-shadow: 2px 2px green, -2px -2px red; }
    100% { transform: translate(0, 0); text-shadow: none; }
}
@keyframes pageShake {
    0% { transform: translate(0, 0); }
    20% { transform: translate(-5px, 5px); }
    40% { transform: translate(5px, -5px); }
    60% { transform: translate(-5px, -5px); }
    80% { transform: translate(5px, 5px); }
    100% { transform: translate(0, 0); }
}
body.active-state {
    animation: pageShake 0.2s steps(2, end) infinite;
}
#copyright.active-state {
    animation: rgbTextEffect 0.1s steps(2, end) infinite;
}
@media (max-width: 991px) {
    .nav-links {
        max-height: 0; 
        flex-direction: column; 
        justify-content: flex-start;
        align-items: flex-start;
        transition: max-height 0.4s ease-out;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
    }
    .nav-links li {
        margin: 0;
        padding: 0; 
        width: 100%; 
    }
    .nav-links a {
        color: #fff;
        padding: 1rem; 
        display: block;
        text-align: left; 
        text-decoration: none;
        width: 100%; 
        transition: background-color 0.2s ease, color 0.2s ease;
    }
    .nav-links a:hover {
        background-color: rgba(255, 255, 255, 0.1); 
        color: #fff;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
        font-size: 2rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #fff;
    }
    .logo-desktop {
        display: none;
    }
    .logo img {
        padding-left: 0px;
        padding-right: 20px; 
        border-right: none; 
    }
    .logo-mobile {
        display: block;
        height: 30px;
        margin: 0 auto;
    }
    .navbar {
        display: flex;
        justify-content: center;
        align-items: center; 
        flex-wrap: wrap; 
        background-color: #252525;
        padding: 0rem;
    }
}