/* Icône burger */
.burger-icon {
    font-size: 30px;
    cursor: pointer;
    display: none; /* Cacher par défaut */
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10;
}

/* Menu mobile (caché par défaut) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: #282416;
    color: white;
    padding: 20px;
    display: none; /* Menu caché */
    flex-direction: column;
    justify-content: space-between;
    z-index: 119;!important;
}

/* Header du menu avec le logo */
.menu-header {
    text-align: center;
}

.menu-logo {
    width: 60px;
    height: auto;
}

/* Liens du menu */
.menu-links {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.menu-links li {
    margin-bottom: 20px;
}

.menu-links a {
    text-decoration: none;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
}

.menu-links a:hover {
    text-decoration: underline;
}

/* Pied de page du menu : bouton et réseaux sociaux */
.menu-footer {
    text-align: center;
}

.appointment-btn {
    background-color: #ab9e56;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 12px;
    cursor: pointer;
    border-radius: 1px;
    text-transform: uppercase;
}

.appointment-btn:hover {
    background-color: #645223;
}

/* Icônes des réseaux sociaux */
.social-icons a {
    margin: 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

/* Lignes séparatrices */
hr {
    border: 0;
    height: 1px;
    background-color: #555;
}

/* Responsivité : Afficher le menu mobile sur mobile */
@media (max-width: 768px) {
    .burger-icon {
        display: block;
    }
}
