/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Jost', sans-serif;
    color: white;
    background-color: #0A091A;
    max-height: 100vh;

}

@font-face {
    font-family: 'Jost';
    src:
    url("/source/Jost-VariableFont_wght.ttf")
}

/* Container Styles */
.container {
    position: relative;
    width: 100%;
    height: var(--doc-height);
    overflow: hidden;

}

/* Logo Styles */
.logo {
    text-align: center;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1; /* Ensure the logo is above the icons */
}





/* Icons Container */
.icons {
    position: absolute;
    top: 50%;
    left: 50%;
}

/* Icon Styles */
.icon {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    transform-origin: center;
    will-change: transform;
}

/* Menu Button */
.menu-button {
    background: none;
    border: none;
    cursor: pointer;
    position: fixed; 
    top: 20px;
    right: 20px;
    z-index: 5; 
}



#close-icon {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#burger-icon {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.menu-button.active #close-icon {
    opacity: 1;
}

.menu-button.active #burger-icon {
    opacity: 0;
}

/* Sidebar (for desktop) */
.sidebar {
    position: fixed;
    top: 0;
    right: -280px; /* Hidden by default */
    width: 250px;
    height: 100%;
    background-color: #0A091A;
    overflow: hidden;
    transition: right 0.3s ease;
    z-index: 2;
}
.sidebar-gradient {
    position: fixed;
    top: 0;
    right: -30px;
    width: 40px; /* Stretch the gradient to match the sidebar width */
    height: 100%;
    background: linear-gradient(to left, rgba(10, 9, 26, 1), rgba(10, 9, 26, 0));
    z-index: 2; /* Below the sidebar but above the content */
    pointer-events: none; /* Allow clicks to pass through */
    transition: right 0.3s ease;
}
.sidebar-gradient.active{
    right: 250px;
}
.sidebar.active {
    right: 0;
}

.sidebar .menu {
    list-style: none;
    padding: 100px 20px;
}

.sidebar .menu li {
    margin-bottom: 20px;
}

.sidebar .menu li a {
    color: white;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.sidebar .menu li a:hover {
    transform: scale(0.98);
    letter-spacing: -0.5px;
}

/* Fullscreen Menu (for mobile) */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0A091A;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.fullscreen-menu .menu {
    list-style: none;
    text-align: center;
}

.fullscreen-menu .menu li {
    margin-bottom: 20px;
}

.fullscreen-menu .menu li a {
    color: white;
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.fullscreen-menu .menu li a:hover {
    transform: scale(0.98);
    letter-spacing: -0.5px;
}

/* Content Section */
.content {
    display: none;
    position: relative;
    z-index: 1;
    padding-top: 80px; /* Space for the small logo */
    text-align: center;
    color: white;
}
.content::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 2;
}


.small-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    cursor: pointer;
    display: none;
    z-index: 3;
}

.small-logo img {
    width: 200px;
    height: auto;
}

.content-text {
    max-width: 700px;
    margin: 0 auto;
    padding: 22px;
    text-align: left;
    font-family: 'Jost', sans-serif;
    font-weight: 300;
}

.content-text p {
    font-size: 1rem;
    line-height: 1.6;
}
.content-text h1 {
    text-align: center;
    font-size: 2rem;
    padding-bottom: 30px;
    padding-top: 10%;
}
.content-text h2 {

    font-size: 1.4rem;
    padding-bottom: 30px;
    padding-top: 10%;
}
.content-text h3 {
    padding-bottom: 10px;
    padding-top: 20px;
}
.content-text ul {
    padding-left: 20px;
}
.content-text ol {
    padding-left: 20px;
}
.content-text a {
    color: white;
   
}

/* Media Queries */

@media (max-width: 1340px) {
    .content::before {
    background: linear-gradient(to bottom, #0A091A, #0a091ade, #0a091ade, transparent);
    height: 90px; /* Increased from 80px to 200px */
    }
    .sidebar {
        display: none;
    }

    .sidebar-gradient {
        display: none;
    }
    .fullscreen-menu .menu li a {
        font-size: 2rem;
    }

    .icon-wrapper {
        position: relative;
        width: min(10vw, 7vh);
        height: min(10vw, 7vh);
        
    }
    .logo img {
    width: 60vw; /* Adjust the logo size as needed */
    max-width: 450px;
    height: auto;
}
.slogan {
    font-weight: 300; /* Slim font */
    text-align: center;
}
}

@media (min-width: 1340px) {
    .content::before {
        background: linear-gradient(to bottom, #0A091A, transparent);
        height: 60px; /* Increased from 80px to 200px */
    }
    .fullscreen-menu {
        display: none;
    }
    .icon-wrapper {
        position: relative;
        width: 40px;
        height: 40px;
        
    }
    .logo img {
        width: 50vw; /* Adjust the logo size as needed */
        max-width: 420px;
        height: auto;
    }
    .slogan {
        font-size: max(1.3rem, 14pt);
        margin-top: 10px;
        font-weight: 300; /* Slim font */
        text-align: center;
    }
}
