.fa-bars {
    margin-right: 10px;
}

.navigation-menu {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;

    padding-left: 1.2em;
    padding-top: 15vh;

    color: #001549;
    background: #5e78c1;
    height: 100vh;
    width: 50%;
    margin: 0;
    list-style: none;
    text-align: left;
    position: fixed;
    left: -100%;
    transition: all 0.5s ease;
    z-index: 1;

    font-size: 1.3rem;
    /* ✅ Normal font size */
    line-height: 2.2rem;
    box-shadow: 4px 0 60px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
    /* ✅ Prevent overflow if menu gets long */
}



.navigation-menu li {

    font-family: 'Agenor Light', 'Open Sans', sans-serif;
    font-weight: 500;

}


.navigation-menu li:hover {

    cursor: pointer;
}

.navigation-menu a {

    text-decoration: none;
    display: block;
    transition: all 0.3s;
}


.navbar {
    /* it will be sticky on the top too */
    display: flex;
    flex-direction: row;
    /* X axis */
    justify-content: space-between;
    /* Y axis */
    align-items: center;
    font-size: 1em;

    backdrop-filter: blur(8px);

    padding: 0px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;


}

.navbar label {

    width: 100px;

}

.content {
    width: 80%;
    margin: 40px auto;
    padding-top: 75px;
    transition: all 0.5s;
    position: relative;
    left: 0;
}

/* Hide the checkbox */
#toggle {
    display: none;
}

/* Use this label to toggle the sliding menu */
label[for="toggle"] {
    cursor: pointer;
    font-size: 30px;
    margin-left: 40px;
}

/* Slide menu when checkbox is checked */
input#toggle:checked+ul.navigation-menu {
    right: 0;
}

/* Also slide content when checkbox is checked */
input#toggle:checked~.content {
    left: -45%;
}

.navigation-menu {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    padding-left: 1em;

    color: #001549;
    background: #ffffffdb;

    backdrop-filter: blur(25px);
    height: 100vh;
    margin: 0;
    list-style: none;
    text-align: left;
    position: fixed;
    left: -100%;
    transition: all 0.5s;
    z-index: 99;
    font-size: 1.3rem;
    line-height: 3rem;

    box-shadow: 4px 0 60px rgba(0, 0, 0, 0.2);

    width: max-content;
    padding-right: 70px;
    /* 👈 adds the 100px extra */
}



input#toggle:checked+ul.navigation-menu {
    left: 0;
    /* ← was right: 0; */
}

input#toggle:checked~.content {
    left: 45%;
    /* ← changed from -45% */
}