/* Navigation principale */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Logo */
.logo {
    font-size: 3rem;
    font-weight: 700;
    font-family: "Montserrat", "Comic Sans MS", "Marker Felt", "Bradley Hand", cursive;
}

/* Liens de navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* Bouton de contact */
.contact-button {
    background-color: rgba(56, 182, 255, 0.1);
    color: var(--primary-blue) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(56, 182, 255, 0.2);
}

.contact-button:hover {
    background-color: rgba(56, 182, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(56, 182, 255, 0.2);
}

/* Menu hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger:hover span {
    background-color: var(--primary-blue-hover);
}



/* Header du menu mobile - caché par défaut, affiché seulement sur mobile */

.menu-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: black;
    padding-left: 2rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    margin-right: 0.5rem;
}

/* Contact mobile */
.mobile-contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
}

.mobile-contact-title {
    color: black;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.mobile-contact-icons {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.mobile-icon-link {
    color: black !important;
    transition: transform 0.3s ease;
}

.mobile-icon-link svg {
    fill: black !important;
}

.mobile-icon-link:hover {
    transform: scale(1.1);
}


.mobile-menu-header {
        display: None;
    }

/* Masquer le bouton contact mobile sur desktop */
.mobile-nav-buttons {
    display: none;
}