/* Base navigation styles */
nav {
    background-color: transparent; /* No background color */
/*    padding: 10px;*/
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
}

/* Menu item styles */
ul.menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

ul.menu li {
    padding: 10px;
}

ul.menu li a {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
}

/* Hide the hamburger by default */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 30px; /* Larger size for visibility */
    color: white; /* Match the color of the menu */
    top-margin: 0px;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    ul.menu {
        display: none; /* Hide the menu initially */
        flex-direction: column; /* Stack menu items vertically */
        background-color: #0D47A1; /* Optional: change background color */
        position: absolute;
        top: 65px;
        right: 0;
        width: 100%; /* Full width menu on mobile */
    }

    ul.menu.active {
        display: flex; /* Show the menu when the hamburger is clicked */
    }

    .hamburger {
        display: block; /* Show the hamburger on mobile */
        font-size: 30px;
        margin-top: 0px;
    }
}
