/*
Theme Name: Theme Axcio par Hexagone Stratégie (Child)
Description: Theme réalisé sur Avada par l'agence marketing digital et CRM pour les cabinets d'expertise comptable Hexagone Stratégie, pour l'usage du cabinet Axcio
Author: Hexagone Stratégie
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain: Avada
*/

/* MISE EN FORME DU TEXTE */
@import url('https://fonts.googleapis.com/css2?family=Allison&display=swap');

.allison {
    font-family: 'Allison', cursive !important;
    font-size: 150px !important;
    font-weight: 400 !important;
    display: inline-block !important;
    line-height: 0.1 !important;
    position: relative !important;
    padding: 0 15px !important;
}

@media (max-width: 768px) {
    .allison {
        font-size: 80px !important;
    }
}

.allisonh2 {
    font-family: 'Allison', cursive !important;
    font-size: 120px !important;
    font-weight: 400 !important;
    display: inline-block !important;
    line-height: 0.1 !important;
    position: relative !important;
    padding: 0 15px !important;
}

@media (max-width: 768px) {
    .allisonh2 {
        font-size: 60px !important;
    }
}
/* FIN MISE EN FORME DU TEXTE */

/*PRESENTATION DES SERVICES TABS*/

/* Structure principale */
.presentation-service-tab {
    display: flex;
    align-items: center;
    gap: 40px; /* Espace entre le logo et le texte */
    padding: 20px 0;
}

/* Zone Image */
.presentation-service-tab__image {
    flex: 0 0 150px; /* Largeur fixe du logo */
}

.presentation-service-tab__image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Zone Texte */
.presentation-service-tab__content {
    flex: 1;
}

.presentation-service-tab__content p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Bouton */
.presentation-service-tab__btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: #ffffff; /* Ajuste selon ta charte */
    color: #333333;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.presentation-service-tab__btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Adaptabilité Mobile */
@media (max-width: 768px) {
    .presentation-service-tab {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .presentation-service-tab__image {
        flex: 0 0 auto;
        width: 120px; /* Plus petit sur mobile */
        margin: 0 auto;
    }
}
/*FIN PRESENTATION DES SERVICES TABS*/
