/* Style pour le badge "Social proof" à côté du logo */
.navbar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    background-color: #7C89FF;
    box-shadow: 0 4px 15px rgba(124,137,255,0.2);
    transform: rotate(-3deg); /* Rotation vers le bas */
    margin-left: -16px;
    transition: all 0.3s ease;
    white-space: nowrap;
    vertical-align: middle;
    position: relative;
    z-index: 10;
    top: -4px; /* Décalé plus vers le haut */
}

/* Ajustement du conteneur pour gérer le chevauchement */
.logo-container {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-right: 5px; /* Compense la marge négative du badge */
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .navbar-badge {
        font-size: 0.85rem;
        padding: 5px 10px;
        margin-left: -14px;
        transform: rotate(-3deg) scale(1.05); /* Rotation vers le bas */
        top: -4px;
    }
    
    .logo-container {
        padding-right: 3px; /* Ajustement pour mobile */
    }
}

@media (max-width: 480px) {
    .navbar-badge {
        font-size: 0.9rem;
        padding: 6px 12px;
        margin-left: -16px;
        transform: rotate(-3deg) scale(1.08); /* Rotation vers le bas */
        top: -5px; /* Décalé encore plus vers le haut sur mobile */
    }
    
    .logo-container {
        padding-right: 2px; /* Ajustement pour très petits écrans */
    }
}
