@font-face { font-family: 'Lustra Thin'; src: url('../fonts/Lustra Text Thin.ttf') format('truetype');}
@font-face { font-family: 'Lustra Regular'; src: url('../fonts/Lustra Text Regular.ttf') format('truetype');}
@font-face { font-family: 'Lustra Bold'; src: url('../fonts/Lustra Text Bold.ttf') format('truetype');}


:root {
    --primary-color: #FB8411;
    --secondary-color: #0380D0;
    --background-color: #121212;
    --text-color: #FFFFFF;
}

.text-center {
    text-align: center;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lustra Bold', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-image: url('/assets/images/landingbackground.png'); /* Fallback color */
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-size: 100% 100%;
    color: #FFFFFF; /* Font Color */
    font-family: Arial, sans-serif;
}




.page-container{
    width: 100vw;
    height: calc(100vh - 61px - 64px);
    overflow-y: auto;    
}


/** NAVIGATION STYLES **/

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    width: 100vw;
    background-color: rgba(0,0,0,0.8);
    /* position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; */
}

.navbar-title {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Footer Styles */
.footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 64px;
    background-color: var(--background-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer > div {
    display: flex;
    flex-direction: column;
}

.footer > div.right {
    text-align:  right;
}

.footer a {
    color: var(--primary-color);
}

.navbar i#mobile-burger, div.burger-popout {
    display: none;
}

.footer.desktop {
    display: flex;
}
.footer.mobile {
    display: none;
}

.abstract .header.desktop {
    display: block;
}
.abstract .header.mobile {
    display: none;
}

@media screen and (max-width: 500px) {
    .navbar {
        padding: 10px 20px; /* Adjust padding for smaller screens */
    }
    .navbar .nav-links {
        display: none; /* Hide nav links on smaller screens */;
    }
    .navbar i#mobile-burger {
        display: block;
    }
    div.burger-popout.shown {
        position: absolute;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 50px;
        width: 100vw;
        background-color: rgba(0,0,0,0.8);
        top: 56px;
        flex-direction: column;
             
    }
    div.burger-popout.shown a {
        color: white;
    }

    .footer.desktop {
        display: none;
    }
    .footer.mobile {
        display: flex;
    }

    .abstract .header.desktop {
        display: none;
    }
    .abstract .header.mobile {
        display: block;
        text-align: center;
    }

}
