/* --- Your Original CSS --- */
nav {
    position: fixed;
    top: 1vh;
    left: 0px;
    width: 100%;
    display: flex;
    justify-content: center; /* This will be overridden on mobile */
    align-items: center;
    z-index: 1000;
    padding: 0 20px; /* Add horizontal padding */
    margin: 0;
    box-sizing: border-box; /* Ensures padding is included in the width */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding-left: 0;
    margin: 0;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 5px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #fff;
}

nav img {
    height: 30px;
    /* Add a margin to separate it from the nav links on desktop */
    margin-right: 20px;
}


/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        top: 1vh;
        justify-content: center;
        padding: 0 10px;
    }
    
    nav ul {
        width: 100%;
        justify-content: space-around;
        padding: 8px 10px;
        border-radius: 15px;
    }
    
    nav ul li a {
        font-size: 14px;
    }
}

.logo {
    position: fixed;
    top: 10px;
    left:10px;
    
}
.logo img {
    width: 7.5vw;
    height: 7.5vw;
    z-index: 1000;
}
