/* Configuration du logo TikStar */

/* Configuration du logo sur desktop */
.navbar-brand img {
    max-height: 70px;  /* Hauteur maximale sur desktop */
    width: auto;       /* Largeur automatique pour maintenir les proportions */
    transition: all 0.3s ease;  /* Transition douce pour les changements de taille */
}

/* Adaptation du logo pour mobile */
@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 40px;  /* Hauteur réduite sur mobile */
    }
}

