.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #333;
    color: white;
}

.navbar .title {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Styles pour les liens de navigation */
.nav-links {
    display: flex;
    gap: 1rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.nav-links a.active {
    background-color: #00aaff11;
    border-radius: 5px;
    color:#00aaff
}

.nav-links a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Style pour le menu hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px 0;
    transition: 0.3s;
}

/* Cacher les liens de navigation en mobile */
.nav-links-mobile {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    background-color: #333;
    padding: 1rem;
    position: absolute;
    top: 60px; /* Position en dessous de la navbar */
    right: 20px;
    border-radius: 5px;
    z-index: 100;
}

.nav-links-mobile a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
}

.nav-links-mobile a.active {
    background-color: #00aaff11;
    border-radius: 5px;
    color:#00aaff
}

.nav-links-mobile a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Styles responsives */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}

