@font-face {
    font-family: 'Chillax-Variable';
    src: url('/fonts/Chillax-Variable.woff2') format('woff2');
    font-weight: 300 900;
    font-style: normal;
}

body {
    font-family: 'Chillax-Variable', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s, color 0.3s;

    /* background-color: #0e2038;*/
    background-color: black;
    color: #c7c6c6;
}


.list-page-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.list-page-title {    
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.list-items {
    display: grid;
    gap: 1.5rem;
}

.list-item {
    color: white;
    display: block;
    padding: 1.5rem;
    background: #06101e;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.list-item-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.list-item-description {
    opacity: 0.5;
    margin: 0;
    line-height: 1.5;
}

.container {
    max-width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

a {
    color: #00bfff;
    text-decoration: none;
}

a:hover {
    color: #1e90ff;
}



.top-header {
    padding: 0 0 0 0;
    transition: background-color 0.3s, box-shadow 0.3s;

    .header-container {
        max-width: 80%;
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header-left {
        flex: 1;
        min-width: 200px;
        /* This ensures consistent spacing */
    }

    .logo-link {
        display: flex;
        align-items: center;
        padding: 10px 0;
        text-decoration: none;
    }

    .header-logo {
        height: 40px;
        width: auto;
        vertical-align: middle;


    }

    .logo-text {
        margin-left: 12px;
        font-size: 1.5rem;
        font-weight: 200;
        letter-spacing: 2px;
        color: #959cbc;

        text-transform: uppercase;
    }
}

.menu .menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;

    li {
        margin: 0;
        padding: 20px 0;
        display: inline;

        a {
            color: #959cbc;
            text-transform: uppercase;
            text-decoration: none;

            padding: 10px;
            transition: background-color 0.3s, color 0.3s;
        }
    }

    li:hover {
        cursor: pointer;
        background-color: rgba(0, 0, 0, 0.4);

        a {
            color: #fff;
            font-weight: 500;
        }
    }
}

/* Hamburger menu styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.menu-toggle:hover {
    background-color: rgba(149, 156, 188, 0.1);
}

.menu-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.menu-toggle.active .menu-icon {
    transform: rotate(90deg);
}

/* Responsive styles */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .menu .menu-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0e2038;
        border-top: 1px solid rgba(149, 156, 188, 0.2);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        flex-direction: column;
        padding: 0;
        margin: 0;
        justify-content: flex-start;
    }

    .menu .menu-list.active {
        display: flex;
    }

    .menu .menu-list li {
        display: block;
        padding: 0;
        border-bottom: 1px solid rgba(149, 156, 188, 0.1);
    }

    .menu .menu-list li:last-child {
        border-bottom: none;
    }

    .menu .menu-list li a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .menu .menu-list li:hover {
        background-color: rgba(0, 0, 0, 0.4);
    }

    .top-header {
        position: relative;
    }

    .header-container {
        max-width: 95%;
        padding: 0 20px;
    }

    .container {
        max-width: 95%;
    }
}