/* Boutons Fixes - Styles CSS */



.boutons-fixes-wrapper {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bouton-fixe {
    display: block;
    width: 120px;
    height: 100px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 15px 0 0 15px;
    overflow: hidden;
    position: relative;
}

.bouton-fixe:hover {
    transform: translateX(10px);
   
}

/* Bouton Adhérer */
.bouton-adherer {
    background: #f28f2a;
    margin-bottom: 2px;
}

.bouton-adherer:hover {
    background: #e07d1a;
}

/* Bouton Newsletter */
.bouton-newsletter {
    background: #5bce8e;
}

.bouton-newsletter:hover {
    background: #4bb87e;
}

/* Contenu des boutons */
.bouton-fixe-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
}

.bouton-fixe-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    filter: brightness(0) invert(1); /* Rendre l'icône blanche */
}

.bouton-fixe-text {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.2;
    font-family: 'Asap Condensed',Helvetica,Arial,Lucida,sans-serif !important;
}

/* Animation d'entrée */
@keyframes slideInRight {
    from {
        transform: translateX(100%) translateY(-50%);
        opacity: 0;
    }
    to {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }
}

.boutons-fixes-wrapper {
    animation: slideInRight 0.8s ease-out;
}

/* Masquer sur mobile et tablette */
@media (max-width: 1024px) {
    .boutons-fixes-wrapper {
        display: none !important;
    }
}

/* Responsive pour écrans moyens */
@media (max-width: 1200px) {
    .bouton-fixe {
        width: 100px;
        height: 85px;
    }
    
    .bouton-fixe-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 6px;
    }
    
    .bouton-fixe-text {
        font-size: 10px;
    }
}