/* Start custom CSS for html, class: .elementor-element-79ddfff *//* ==========================================================================
   --- CONFIGURATION GLOBALE SANS ERREUR SYNTAXE ELEMENTOR PRO ---
   ========================================================================== */

@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

.ex-global-page-wrapper {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    color: #1e1b26;
}

.ex-bold { font-weight: 700; }
.ex-purple-text { color: #321B59 !important; font-weight: bold; }
.ex-dark-text { color: #1e1b26 !important; font-size: 14.5px; line-height: 1.6; }

/* --------------------------------------------------------------------------
   DÉFINITION DES KEYFRAMES D'ANIMATIONS UNIQUES PAR SECTION
   -------------------------------------------------------------------------- */
@keyframes animHeroFade { 
    from { opacity: 0; transform: scale(1.03); } 
    to { opacity: 1; transform: scale(1); } 
}
@keyframes animVersetUp { 
    from { opacity: 0; transform: translateY(40px); } 
    to { opacity: 1; transform: translateY(0); } 
}
@keyframes animMeaningLeft { 
    from { opacity: 0; transform: translateX(-50px); } 
    to { opacity: 1; transform: translateX(0); } 
}
@keyframes animWhoZoom { 
    from { opacity: 0; transform: scale(0.9); } 
    to { opacity: 1; transform: scale(1); } 
}
@keyframes animIdentityFlip { 
    from { opacity: 0; transform: perspective(400px) rotateX(15deg); } 
    to { opacity: 1; transform: perspective(400px) rotateX(0deg); } 
}
@keyframes animJoinRight { 
    from { opacity: 0; transform: translateX(50px); } 
    to { opacity: 1; transform: translateX(0); } 
}
@keyframes animFooterReveal { 
    from { opacity: 0; transform: translateY(20px); } 
    to { opacity: 1; transform: translateY(0); } 
}

/* --------------------------------------------------------------------------
   APPLICATION DES ANIMATIONS DÉDIÉES (ÉLÉMENTOR PRO COMPATIBLE)
   -------------------------------------------------------------------------- */
.ex-hero-viewport { animation: animHeroFade 1.4s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.ex-verset-section { animation: animVersetUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.ex-meaning-section .ex-m-text { animation: animMeaningLeft 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.ex-who-section .ex-who-item { animation: animWhoZoom 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; }
.ex-identity-section .ex-id-card { animation: animIdentityFlip 1.1s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.ex-join-activities-section .ex-column-activities { animation: animJoinRight 1.3s cubic-bezier(0.25, 1, 0.5, 1) forwards; }
.ex-footer-actions-section { animation: animFooterReveal 1s ease-out forwards; }

/* --------------------------------------------------------------------------
   HEADER ET TRAITEMENT LOGO RESPONSIVE (CORRIGÉ & STABLE)
   -------------------------------------------------------------------------- */
.ex-nav-header {
    position: absolute; top: 0; left: 0; width: 100%; height: 90px;
    display: flex; justify-content: center; align-items: center;
    padding: 0 45px; background-color: #ffffff; z-index: 100;
}
.ex-nav-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%; /* Limite le bloc pour éviter les collisions avec le sélecteur */
}
.ex-nav-logo-img { 
    height: 48px; 
    width: auto; 
    max-width: 100%; /* Rend l'image totalement responsive */
    object-fit: contain;
}
.ex-nav-country-box { position: absolute; right: 45px; }

/* Correction Elementor Pro : display flex requis pour la lecture de la propriété gap */
.ex-country-dropdown-btn {
    background: #f4f5f7; color: #25123e; font-size: 13.5px; font-weight: 500;
    padding: 10px 20px; border-radius: 25px; border: 1px solid #e2e8f0;
    cursor: pointer; display: flex; align-items: center; gap: 10px; position: relative;
}
.ex-country-dropdown-btn:hover { background: #eaedf1; }
.ex-country-menu {
    position: absolute; top: 105%; right: 0; background: #ffffff; border-radius: 12px;
    width: 190px; display: none; box-shadow: 0 15px 30px rgba(37, 18, 62, 0.15); border: 1px solid #e2e8f0;
}
.ex-country-dropdown-btn:hover .ex-country-menu { display: block; }
.ex-country-link { display: block; padding: 12px 20px; color: #25123e; text-decoration: none; font-size: 13px; }
.ex-country-link:hover { background-color: #f8fafc; }

/* --------------------------------------------------------------------------
   HERO ET ÉLÉMENTS DE LIEN
   -------------------------------------------------------------------------- */
.ex-hero-viewport {
    min-height: 85vh; margin-top: 90px;
    background: linear-gradient(rgba(18, 6, 33, 0.96), rgba(18, 6, 33, 0.96)), url('https://images.unsplash.com/photo-1504052434569-70ad5856f453?auto=format&fit=crop&w=1920');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center; position: relative;
    padding: 100px 20px 140px 20px;
}
.ex-hero-inner-content { width: 100%; max-width: 960px; z-index: 2; }
.ex-hero-main-title { font-family: 'Playfair Display', serif; color: #ffffff; font-size: 46px; line-height: 1.38; font-weight: 400; }

.ex-gold-line { background-color: #e1b94e; border: none; border-radius: 2px; }
.ex-gold-line.center { margin: 25px auto; width: 85px; height: 3px; }
.ex-gold-line.left { margin: 15px 0; }
.ex-gold-line.small { width: 40px; height: 2px; }

/* Correction Elementor Pro : display flex requis pour le gap */
.ex-hero-action-row { display: flex; gap: 22px; justify-content: center; margin-top: 45px; }

/* BOUTONS COMPORTEMENT */
.ex-hero-btn, .ex-btn { padding: 16px 36px; border-radius: 35px; text-decoration: none; font-weight: 600; font-size: 14px; display: inline-block; transition: all 0.2s ease; border: none; }
.ex-btn-filled-gold { background-color: #e1b94e; color: #160929; }
.ex-btn-filled-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(225, 185, 78, 0.35); }
.ex-btn-gold { background: #e1b94e; color: #1a0b2e; }
.ex-btn-gold-dark { background: #25123e; color: #ffffff; }
.ex-btn-bordered-white { border: 1px solid rgba(255, 255, 255, 0.4); color: #ffffff; background-color: rgba(255, 255, 255, 0.06); }
.ex-btn-bordered-white:hover { background-color: #ffffff; color: #160929; }
.ex-hero-bottom-smooth-fade { position: absolute; bottom: 0; left: 0; width: 100%; height: 150px; background: linear-gradient(transparent, #ffffff); z-index: 1; }

/* --------------------------------------------------------------------------
   SECTIONS CONTENEURS STRUTURES
   -------------------------------------------------------------------------- */
.ex-verset-section { text-align: center; padding: 70px 20px; background: #ffffff; }
.ex-verset-text { font-family: 'Playfair Display', serif; font-style: italic; font-size: 23px; max-width: 840px; margin: 0 auto 18px auto; color: #1e1b26; line-height: 1.6; }
.ex-verset-ref { font-size: 12px; letter-spacing: 3px; font-weight: 700; color: #e1b94e; display: block; margin-bottom: 10px; }

.ex-container { max-width: 1140px; margin: 0 auto; padding: 0 25px; width: 100%; }
.ex-title-serif { font-family: 'Playfair Display', serif; font-size: 38px; color: #25123e; margin-bottom: 20px; font-weight: 400; }
.ex-title-serif.centered { text-align: center; }
.ex-title-serif.white { color: #ffffff; }
.ex-tag { font-size: 11px; letter-spacing: 4px; font-weight: 700; color: #e1b94e; text-align: center; margin-bottom: 45px; }
.ex-tag.left { text-align: left; margin-bottom: 10px; }

/* SIGNIFICATION & VALEURS COEUR */
.ex-meaning-section { padding: 90px 0; background: #ffffff; }
/* Correction Elementor Pro : display flex requis pour le gap */
.ex-meaning-content { display: flex; gap: 60px; align-items: center; }
.ex-m-text { flex: 1; }
.ex-m-image { flex: 1; }
.ex-m-image img { width: 100%; height: auto; border-radius: 12px; box-shadow: 0 25px 50px rgba(0,0,0,0.07); }
.ex-quote { border-left: 4px solid #e1b94e; padding-left: 22px; font-style: italic; color: #321B59; margin: 25px 0; font-size: 15.5px; line-height: 1.65; }

.ex-who-section { padding: 90px 0; background: #fdfcf7; }
.ex-who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.ex-who-item { text-align: center; background: #ffffff; padding: 35px 22px; border-radius: 12px; box-shadow: 0 4px 20px rgba(37, 18, 62, 0.03); }
/* Correction Elementor Pro : display flex requis pour le gap */
.ex-who-icon { width: 65px; height: 65px; background: #faf6eb; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px auto; gap: 0; }
.ex-who-icon i { color: #e1b94e; font-size: 24px; }
.ex-who-item h3 { font-size: 17px; color: #25123e; margin-bottom: 12px; font-weight: 600; }
.ex-who-item p { font-size: 13.5px; color: #555555; margin: 0; line-height: 1.55; }

/* STRUTURES DES GRILLES DE CONTENU */
.ex-identity-section { background: radial-gradient(circle at center, #2a1545 0%, #170a26 100%); padding: 100px 0; }
.ex-id-desc { color: rgba(255,255,255,0.85); text-align: center; max-width: 650px; margin: -10px auto 45px auto; font-size: 15px; }
.ex-id-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.ex-id-card { background: rgba(255, 255, 255, 0.04); padding: 35px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.06); color: #ffffff; }
.ex-id-icon-box { margin-bottom: 20px; }
/* Correction Elementor Pro : display flex requis pour le gap */
.ex-id-card i { color: #e1b94e; font-size: 22px; background: rgba(225, 185, 78, 0.08); padding: 12px; width: 45px; height: 45px; display: flex; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid rgba(225, 185, 78, 0.2); gap: 0; }
.ex-id-card h3 { font-size: 17px; margin-bottom: 12px; font-weight: 600; color: #ffffff; }
.ex-id-card p { font-size: 13.5px; color: rgba(255, 255, 255, 0.75); margin: 0; line-height: 1.6; }

/* ADHÉRER ET BLOCS D'ACTIVITÉS */
.ex-join-activities-section { padding: 95px 0; background: #ffffff; }
/* Correction Elementor Pro : display flex requis pour le gap */
.ex-two-columns-split { display: flex; gap: 70px; }
/* Correction Elementor Pro : display flex requis pour le gap */
.ex-column-join { flex: 5; display: flex; flex-direction: column; gap: 0; }
.ex-join-img-wrapper { margin-top: 35px; border-radius: 14px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.08); width: 100%; height: 260px; }
.ex-join-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.ex-column-activities { flex: 7; }
.ex-activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ex-activity-item { position: relative; height: 160px; border-radius: 10px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.ex-activity-item img { width: 100%; height: 100%; object-fit: cover; }
/* Correction Elementor Pro : display flex requis pour le gap */
.ex-activity-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(transparent 20%, rgba(32, 14, 69, 0.95) 90%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; color: #ffffff; gap: 0; }
.ex-activity-overlay h4 { font-size: 14px; margin: 0 0 5px 0; font-weight: 600; color: #ffffff; }
.ex-activity-overlay p { font-size: 11px; margin: 0; color: rgba(255,255,255,0.8); }

/* ZONE D'ACTION / CONTACT DU BAS */
.ex-footer-actions-section { padding: 90px 0; background: #130624; }
/* Correction Elementor Pro : display flex requis pour le gap */
.ex-flex-actions { display: flex; gap: 30px; }
.ex-action-card { flex: 1; padding: 50px; border-radius: 16px; }
.ex-action-card.purple { background: rgba(255, 255, 255, 0.04); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.07); }
.ex-action-card h3 { font-family: 'Playfair Display', serif; font-size: 28px; margin-top: 0; margin-bottom: 18px; color: inherit; }
.ex-action-card p { font-size: 13.5px; line-height: 1.65; margin-bottom: 35px; color: inherit; }
.ex-action-card.white { background: #ffffff; color: #25123e; }
.ex-contact-mini { margin-bottom: 30px; }
.ex-contact-mini span { display: block; font-size: 14px; margin-bottom: 10px; font-weight: 500; color: #25123e; }
.ex-contact-mini i { color: #e1b94e; margin-right: 10px; }

/* ==========================================================================
   --- RESPONSIVE STRICT TABLETTE CIBLE : WIDTH 768px / HEIGHT 781px ---
   ========================================================================== */
@media (max-width: 768px) {
    .ex-hero-viewport { height: 691px; min-height: 691px; padding: 60px 30px; }
    .ex-hero-main-title { font-size: 38px; }
    .ex-nav-header { padding: 0 30px; }
    .ex-nav-country-box { right: 30px; }
    .ex-who-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
    .ex-id-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px; }
    .ex-activities-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 15px; }
    .ex-meaning-content, .ex-two-columns-split, .ex-flex-actions { flex-direction: column; gap: 40px; }
    .ex-column-join, .ex-column-activities { width: 100%; }
}

/* ==========================================================================
   --- RESPONSIVE STRICT MOBILE CIBLE : WIDTH 360px / HEIGHT 736px ---
   ========================================================================== */
@media (max-width: 500px) {
    /* Ajustement responsive du Header et réduction proportionnelle du logo */
    .ex-nav-header { height: 110px; flex-direction: column; justify-content: center; gap: 10px; padding: 10px; }
    .ex-nav-logo-img { height: 32px; } /* Calibre proprement le logo sur un écran de 360px */
    .ex-nav-country-box { position: static; width: 100%; display: flex; justify-content: center; }
    .ex-country-dropdown-btn { padding: 6px 16px; font-size: 12px; }
    
    .ex-hero-viewport { height: 626px; min-height: 626px; max-width: 360px; margin: 110px auto 0 auto; padding: 40px 15px; display: flex; flex-direction: column; justify-content: center; }
    .ex-hero-inner-content { display: flex; flex-direction: column; justify-content: center; height: 100%; }
    .ex-hero-main-title { font-size: 23px; line-height: 1.42; }
    .ex-hero-action-row { flex-direction: column; gap: 12px; width: 100%; margin-top: 30px; }
    .ex-hero-btn, .ex-btn { width: 100%; text-align: center; padding: 14px 20px; font-size: 13px; }
    .ex-country-menu { right: auto; left: 50%; transform: translateX(-50%); }
    .ex-verset-text { font-size: 18px; }
    .ex-title-serif { font-size: 28px; text-align: center; }
    .ex-who-grid, .ex-id-grid, .ex-activities-grid { grid-template-columns: 1fr !important; gap: 15px; }
    .ex-activity-item { height: 180px; }
    .ex-join-img-wrapper { height: 200px; }
    .ex-who-item, .ex-id-card, .ex-action-card { padding: 25px 15px; }
    .ex-action-card h3 { font-size: 22px; }
}/* End custom CSS */