/* --- GLOBAL NAVBAR STYLES (Desktop) --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- MOBILE RESPONSIVE STYLES (Add this at the bottom) --- */
@media (max-width: 768px) {
    header {
        flex-direction: column; /* Stacks logo/nav vertically */
        text-align: center;     /* Centers the links */
        padding: 15px;
    }

    nav ul {
        flex-direction: column; /* Stack links on top of each other */
        gap: 10px;
        margin-top: 10px;
        width: 100%;
    }
}

/* --- REST OF YOUR CODE --- */
.logo img { height: 60px; }

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #6a1b9a;
    font-weight: 700;
    font-size: 1rem;
}

nav a:hover { color: #333; }