/* ==========================================================================
ENCART FLOTTANT COMPACT & OBLONG (DESKTOP)
========================================================================== */
.floating-actions-container {
    position: fixed;
    right: 10px;
    top: 500px;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0; /* Supprime l'espace pour coller les deux boutons */
    border-radius: 50px; /* Arrondit l'ensemble global */
    overflow: hidden; /* Force les boutons à épouser l'arrondi global */
    border: 5px solid white;
    /*box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);*/
}

.floating-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 130px;
    text-decoration: none !important;
    color: #ffffff !important;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: background-color 0.2s ease-in-out; /* Transition de couleur uniquement */
}

/* Couleurs par défaut */
.btn-inscription-float {
    background-color: #111424;
    /*background-color: #F9911B;*/
}
.btn-contact-float {
    background-color: #0077b6; /* Bleu clair */
}

/* Changements de couleur exclusifs au survol (sans effet zoom) */
.btn-inscription-float:hover {
    background-color: #232844;
    /*background-color: #BF6704;*/

}
.btn-contact-float:hover {
    background-color: #0096c7; /* Éclaircissement du bleu clair */
}

.floating-icon svg {
    width: 40px;
    height: 40px;
}

.floating-label {
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   VERSION MOBILE (BARRE HORIZONTALE FLOTTANTE ET OBLONGUE)
   ========================================================================== */
@media only screen and (max-width: 1100px) {
    .floating-actions-container {
        position: fixed;
        bottom: 20px; /* Décollé du bas de l'écran */
        left: 50%;
        right: auto;
        top: auto;
        transform: translateX(-50%); /* Centrage parfait horizontal */
        flex-direction: row; /* Alignement horizontal des deux boutons */
        border-radius: 50px; /* Rendu oblong horizontal */
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        padding: 0;
        background-color: transparent;
        border: 4px solid white; /* Épaisseur blanche tout autour */
        overflow: hidden;
        width: 85%; /* Largeur de la barre sur mobile */
        max-width: 340px;
    }

    .floating-action-btn {
        flex: 1;
        flex-direction: row; /* Icône et texte côte à côte */
        height: 55px; /* Hauteur confortable pour le clic tactile */
        width: auto;
        border-radius: 0; /* Pas d'arrondi individuel pour garder le bloc uni */
        gap: 8px;
    }

    /* Changement de couleur au clic sur mobile */
    .btn-inscription-float:active {
        background-color: #232844;
    }
    .btn-contact-float:active {
        background-color: #0096c7;
    }

    .floating-icon svg {
        width: 20px;
        height: 20px;
    }

    .floating-label {
        font-size: 14px;
        margin-top: 0;
    }

    body {
        padding-bottom: 90px; /* Espace de sécurité en bas de page */
    }
}