/* navigation.css */
.nav {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.nav-logo img {
    height: 80px;
}
.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    text-decoration: none;
    color: var(--text-color);
    padding: 0.5rem 1rem;
    font-weight: 500;
}
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
}
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        gap: 0.5rem;
    }
    .nav-toggle {
        display: none;
    }
}
