@charset "utf-8";

:root {
    /* =========================================================
       FONDS / SECTIONS
       ========================================================= */
    --bg-primary: #2f20a3;         /* Bleu principal (sections, titres) */
    --bg-secondary: #ed704a;       /* Ocre rouge secondaire (alerts, sections) */
    --bg-accent: #F5D972;          /* Accent lumineux (hover, highlights) */
    --bg-light: #ececec;           /* Fond clair / dropdowns */
    --bg-lighter: #ffffff;         /* Fond très clair / général */
    --bg-border: #e6e6e6;          /* Bordures légères */

    /* =========================================================
       TEXTE
       ========================================================= */
    --text-primary: #2f20a3;       /* Texte principal */
    --text-secondary: #00cdd1;     /* Texte accent / liens */
    --text-on-accent: #ed704a;     /* Texte sur accent clair */
    --text-light: #ffffff;          /* Texte clair (sur fond sombre ou coloré) */
    --text-muted: #848484;          /* Texte secondaire / footers */
    --text-strong: #3c3c3c;        /* Texte fort / contrasté */

    /* =========================================================
       BOUTONS
       ========================================================= */
    --btn-primary-bg: #00cdd1;
    --btn-primary-hover: #369eb8;
    --btn-primary-text: #ffffff;

    --btn-secondary-bg: #d1a728;
    --btn-secondary-hover: #e8c238;
    --btn-secondary-text: #ffffff;

    --btn-dark-bg: #343a40;
    --btn-dark-hover: #292d32;
    --btn-dark-active: #1d2124;
    --btn-dark-text: #ffffff;

    /* =========================================================
       ACCENTS / HIGHLIGHTS
       ========================================================= */
    --accent-cyan: #00cdd1;       /* Hover / highlights cyan */
    --accent-cyan-dark: #369eb8;  /* Hover plus foncé */
    --accent-gold-dark: #d1a728;  /* Or foncé / boutons secondaires */
    --accent-ocre-red: #ed704a;   /* Ocre rouge / alerts */
    --accent-terre-battue: #da5a3d; /* Hover boutons rouges */
    --accent-majorelle: #3d2ad2;  /* Couleur spéciale décorative */

    /* =========================================================
       NEUTRES / GRIS
       ========================================================= */
    --black: #222222;
    --gray-dark: #343a40;
    --gray-darker: #292d32;
    --gray-darkest: #1d2124;
    --gray-medium: #848484;
    --gray-light: #e6e6e6;
    --gray-lighter: #ececec;

    /* =========================================================
       UTILITAIRES
       ========================================================= */
    --cursor-pointer: pointer;
}

/* =========================================================
   TEXT COLORS
   ========================================================= */
.blue  { color: var(--text-primary) !important; }
.bluesky  { color: var(--text-secondary) !important; }
.pink  { color: var(--accent-ocre-red) !important; }
.black { color: var(--black) !important; }
.white  { color: var(--text-light) !important; }

/* =========================================================
   LINKS / BUTTONS MENU
   ========================================================= */
.cursor-hand { cursor: var(--cursor-pointer); }

a.btn-menu:link,
a.btn-menu:visited {
    background-color: var(--accent-gold-dark);
    padding: 15px 8px;
    margin-top: 24px;
    margin-left: 15px;
    color: var(--text-light);
}

a.btn-menu-adh:link,
a.btn-menu-adh:visited {
    background-color: var(--btn-primary-bg);
    padding: 15px 8px;
    margin-top: 5px;
    margin-left: 15px;
    color: var(--btn-primary-text);
}
li a.btn-menu-adh { display: none !important; }

/* =========================================================
   LAYOUT
   ========================================================= */
.theme_menu .right-column { width: 200px; }
.thm-btn { padding: 0 8px; }

/* =========================================================
   SPECIAL BUTTON
   ========================================================= */
.spe-btn {
    position: relative;
    background: var(--accent-gold-dark);
    font-size: 14px;
    line-height: 46px;
    font-weight: 600;
    color: var(--text-light) !important;
    border: 2px solid var(--accent-gold-dark);
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    padding: 0 15px;
}
.thm-btn {
    border: 0px solid #1ecefe;
}
/* =========================================================
   MODAL
   ========================================================= */
.modal { z-index: 99999 !important; }

.modal-dialog {
    width: 600px;
    margin: 150px auto;
}

/* =========================================================
   TITLES
   ========================================================= */
.section-title::before, .section-title-account::before {
    background: var(--btn-primary-bg);
}

.title-blue,
a.title-blue { color: var(--text-primary); }

h4.title-blue,
h4.title-pink {
    font-size: 25px;
    margin-bottom: 0 !important;
}

h4.title-blue { color: var(--text-primary) !important; }
h4.title-pink { color: var(--accent-ocre-red) !important; }

h4.title-blue span,
h4.title-pink span {
    font-size: 16px;
    line-height: 14px !important;
}

/* =========================================================
   BUTTONS - SOBRES / PROPRES
   ========================================================= */

/* Bouton principal = CYAN CORP */
.btn-blue, a.btn-blue {
    background-color: var(--btn-primary-bg);
    border-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
}
.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active,
.btn-blue.active {
    background-color: var(--btn-primary-hover);
    border-color: var(--btn-primary-hover);
    color: var(--btn-primary-text);
}

/* Bouton secondaire = OCRE ROUGE */
.btn-pink, a.btn-pink {
    background-color: var(--btn-secondary-bg);
    border-color: var(--btn-secondary-bg);
    color: var(--btn-secondary-text);
}
.btn-pink:hover,
.btn-pink:focus,
.btn-pink:active,
.btn-pink.active {
    background-color: var(--btn-secondary-hover);
    border-color: var(--btn-secondary-hover);
    color: var(--btn-secondary-text);
}

/* Bouton sombre (Bootstrap-like) */
.btn-dark, a.btn-dark {
    background-color: var(--btn-dark-bg);
    border-color: var(--btn-dark-bg);
    color: var(--btn-dark-text);
}
.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active,
.btn-dark.active {
    background-color: var(--btn-dark-hover);
    border-color: var(--btn-dark-active);
}

/* Bouton abonnement */
.btn-abo,
.btn-abo a:link,
.btn-abo a:visited {
    background-color: var(--btn-secondary-bg);
    border-color: var(--btn-secondary-bg);
    color: var(--btn-primary-text);
    font-size: 12px;
    padding: 3px 6px;
}
.btn-abo:hover,
.btn-abo:focus,
.btn-abo:active,
.btn-abo.active {
    background-color: var(--btn-secondary-bg);
    border-color: var(--btn-secondary-bg);
    color: var(--btn-primary-text);
}

/* encadré contenu */
.bloc-info {
    padding:20px;
    background:#eeeeee;
    border-left:4px solid #2f20a3;
}
.bloc-alerte {
    padding:20px;
    background:#eeeeee;
    border-left:4px solid #ed704a;
}

/* =========================
   TOP BAR
========================= */
.top-bar {
    background-color: var(--text-primary);
    padding: 6px 0;
    font-size: 14px;
}

.top-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
/* =========================
   LIENS TEXTE (GAUCHE)
========================= */
.top-bar .top-bar-text li {
    display: inline-flex;
    align-items: center;
    margin-right: 18px;
}
.top-bar .top-bar-text a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: color .25s ease;
}
.top-bar .top-bar-text a:hover {
    color: var(--bg-accent);
}
.top-bar .top-bar-text i {
    width: 30px;
    height: 30px;
    margin-right: 1px !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*background: var(--btn-secondary-bg);*/
    color: var(--text-light) !important;
    font-size: 14px;
    /*transition: background .25s ease, color .25s ease;*/
    top: 0px !important;
}
.top-bar .top-bar-text a:hover i {
    background: var(--btn-secondary-hover);
    color: var(--text-light);
}
/* =========================
   BOUTON LOGIN
========================= */
.top-bar .btn-login {
    color: var(--text-light);
    background: var(--btn-secondary-bg);
    border: 1px solid var(--btn-secondary-bg);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px 4px 4px;
    border-radius: 20px;
    transition: all .25s ease;

}
.top-bar .btn-login:hover {
    color: var(--text-light) !important;
    background: var(--btn-secondary-hover);
    border-color: var(--btn-secondary-hover);
}
/* =========================
   RÉSEAUX SOCIAUX (DROITE)
========================= */
.top-bar .social {
    position: relative;
    top: 7px;
}
.top-bar .social li {
    display: inline-block;
    padding: 0 0px !important;
}
.top-bar .social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    transition: background .25s ease, transform .2s ease;
}
.top-bar .social a:hover {
    background: var(--bg-accent);
    transform: translateY(-2px);
}
/* =========================
   TWITTER / X (SVG)
========================= */
.x-twitter-topbar {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
    transition: filter .25s ease;
}
.x-twitter-topbar:hover {
    filter: invert(61%);
}

/* Alignements généraux */
.float_left { float: left; }
.float_right { float: right; }
.clearfix::after { content: ""; display: block; clear: both; }

/* LOGO */
.main-logo {
    margin: 15px 0 10px;
}
.main-logo img { max-height: 55px; }

.main-logo p {
    font-size: 9px;
    line-height: 10px;
    margin-top: 5px;
    color: var(--text-primary);
}
/* Recherche - input + bouton alignés */
.search-group .form-control {
  height: 46px;           /* adapte à ton thème */
}

.search-group .btn-search {
  height: 46px;
  padding: 0 18px;
  border-radius: 0;
}

.search-group .form-control {
  border-right: 0;
}

.search-group .btn-search {
  border-left: 0;
}

.search-result a {
    color: var(--text-primary);
}

.search-result a:hover {
    color: var(--text-on-accent);
}

.search-result i.fa {
    color: var(--gray-medium);
    }
/* MENU PRINCIPAL */
.theme_menu {
    background: var(--bg-lighter) !important;
    border-bottom: 2px solid var(--bg-border);
    box-shadow: none !important;
    padding: 0;
}
div.has-base-color-overlay {
    filter: grayscale(100%) sepia(100%) hue-rotate(5deg) saturate(250%);
}
div.box h3 {
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.9);
}
.menu-column { padding-left: 10px !important; }
.menuzord-menu {
    margin-left: 0 !important;
    float: right !important;
    margin-top: 26px;
}
.menuzord {
    background: transparent !important;
    width: 100%;
    float: left;
    position: relative;
    padding: 0;
}
.menuzord-menu > li > a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    padding: 22px 18px;
    text-transform: none;
    line-height: 1;
    transition: all 0.2s ease;
}
.menuzord-menu > li > a:hover {
    color: var(--accent-cyan);
}
.menuzord-menu > li:hover > a,
.menuzord-menu > li.active > a {
    color: var(--accent-cyan);
    border-bottom: 3px solid var(--accent-cyan);
    padding-bottom: 19px;
}

/* Dropdown */
.menuzord-menu ul.dropdown {
    background: var(--bg-lighter);
    border: 1px solid var(--gray-lighter);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.menuzord-menu ul.dropdown li a {
    padding: 10px 18px !important;
    color: var(--text-primary) !important;
    border-bottom: 1px dashed var(--text-strong);
    font-weight: 500;
}
.menuzord-menu ul.dropdown li a:hover,
.menuzord-menu ul.dropdown li.active a {
    background: transparent !important;
    color: var(--accent-cyan) !important;
}
.menuzord-menu ul.dropdown li:last-child a {
    border-bottom: none !important;
}
/* ========
   SLIDER
   ======== */

.hero-slider {
    position: relative;
    overflow: hidden;
}
.hero-slider .carousel-inner {
    min-height: 300px;
}
.hero-slide {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
}
.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 30px 0;
}
.hero-slide-image {
    position: relative;
    z-index: 1;
}
.hero-slide-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 8px;
}
.hero-slide-text {
    padding: 0 30px;
}
.hero-slide-text h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.2;
    color: #FFF;
}
.hero-slide-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #F5F5F5;
}
.hero-cta-btn {
    display: inline-block;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}
.hero-cta-btn:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Contrôles de navigation - CORRIGÉS */
#homeCarousel .carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    width: auto;
    height: 100%;
    background: transparent;
    opacity: 1;
    text-shadow: none;
    display: flex;
    align-items: center;
}

#homeCarousel .carousel-control.left {
    left: 20px;
}

#homeCarousel .carousel-control.right {
    right: 20px;
}

/* Cercles des flèches */
#homeCarousel .custom-control i {
    width: 44px;
    height: 44px;
    font-size: 30px;
    line-height: 40px;
    color: var(--text-primary, #333);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--text-primary, #333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

/* Ajustement fin pour le centrage des icônes */
#homeCarousel .custom-control.left i {
    padding-right: 3px;
}

/* Hover des flèches */
#homeCarousel .custom-control:hover i {
    background: var(--btn-secondary-bg, #2f20a3);
    color: var(--text-light, #fff);
    border-color: var(--btn-secondary-bg, #2f20a3);
}

/* Indicateurs (points) - MASQUÉS */
#homeCarousel .carousel-indicators {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slide {
        min-height: auto;
    }
    .hero-slide-text h2 {
        font-size: 28px;
        margin-top: 20px;
    }
    .hero-slide-text p {
        font-size: 16px;
    }
    .hero-slide-text {
        padding: 0 15px;
    }
    .hero-slider .carousel-inner {
        min-height: auto;
    }

    /* Flèches plus petites sur mobile */
    #homeCarousel .custom-control i {
        width: 36px;
        height: 36px;
        font-size: 24px;
        line-height: 32px;
    }

    #homeCarousel .carousel-control.left {
        left: 10px;
    }

    #homeCarousel .carousel-control.right {
        right: 10px;
    }
}
/* BOUTONS SPÉCIAUX DANS LE MENU */
.menuzord-menu > li > a.btn-menu,
.menuzord-menu > li > a.btn-menu-adh,
.thm-btn,
.spe-btn {
    display: inline-block;
    padding: 10px 18px !important;
    border-radius: 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: none;
    color: var(--text-light) !important;
    margin-top: 8px;
    line-height: 1;
    margin-right: 8px;
    border-bottom: none !important;
}
.menuzord-menu > li > a.btn-menu {
    background: var(--btn-primary-bg);
}
.menuzord-menu > li > a.btn-menu:hover {
    background: var(--btn-primary-hover);
}
.menuzord-menu > li > a.btn-menu-adh,
.thm-btn {
    background: var(--accent-ocre-red) !important;
    color: var(--text-light) !important;
    border: none !important;
    line-height: 1 !important;
}
.menuzord-menu > li > a.btn-menu-adh:hover,
.thm-btn:hover {
    background: var(--accent-terre-battue) !important;
    color: var(--text-light) !important;
}
.right-column .thm-btn { margin-left: 10px; }

/* VIDEO RESPONSIVE */
.conteneur-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.conteneur-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* LISTS */
ul,
.top-bar ul,
ul.inform-list,
ul.contact-infos,
ul.contact-info,
.main-footer ul.list { list-style: disc; margin-bottom: 2px; }
li { margin-left: 25px; }
.social li,
ul.inform-list li,
ul.contact-infos li,
ul.contact-info li,
.main-footer ul.list li,
.theme_menu li { margin-left: 0; }
ul.brochures-lists li { margin-left: 0px; }
.brochures-lists li {
    background: var(--accent-terre-battue);
    transition: .5s ease;
}
ul.inform-list { list-style: none; margin-bottom: 2px; }
/* BLOG / PARTNERS / TEAMS */
.default-blog-news .img-box img { max-height: auto; }

.partnerhome,
.partnerhome a { /*width: 250px;*/ height: 250px; }
.partnerhome a { display: block; }

.adherentlist,
.adherentlist a { width: 150px; height: 150px; }
.adherentlist a { display: block; }

.our-team .single-team-member { min-height: 250px; }

/* REGISTRATION ZONE */
.registr h1,
.registr h2,
.registr h3 { color: var(--text-light) !important; }
.registr h1 { padding: 35px 25px 0; }
.registr h2 { padding: 20px 20px 0; }
.registr h3 { padding: 15px 15px 0; }
.registr .registr-txt { padding: 25px 25px 50px; }
.registr .registr-txt p { color: var(--text-light) !important; font-size: 16px; }
.registr .registr-txt a { color: var(--text-light); text-decoration: underline;}
.registr-disabled { opacity: 0.75; cursor: not-allowed; }
.registr-layer {
    /*background-color: rgba(79, 79, 79, 0.8);*/
background-color: var(--accent-cyan-dark);
    /*position: absolute;*/
    width: 970px;
    /*height: 640px;*/
    /*margin-top: -640px;*/
}

/* AUTRES */
.single-blog-post h1 {
    line-height: 44px !important;
    margin-bottom: 28px !important;
}
.single-blog-post h2 {
    line-height: 40px !important;
    margin-bottom: 24px !important;
}
.single-blog-post h3 {
    line-height: 36px !important;
    margin-bottom: 20px !important;
}
.single-blog-post h4 {
    line-height: 32px !important;
    margin-bottom: 15px !important;
}
.single-blog-post h5 {
    line-height: 28px !important;
    margin-bottom: 15px !important;
}
.inner-banner .box {
    height: 300px;
}
.inner-banner::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
}
.three-column .single-our-service .img-box .count { background: var(--text-secondary); }
.three-column .single-our-service .img-box .count2 { background: var(--accent-terre-battue); }
.three-column .single-our-service h4, .three-column .single-our-service h4 a { color: var(--btn-dark-bg); }
.three-column .single-our-service h5 { color: var(--btn-dark-bg); }
.three-column .single-our-service .img-box { position: relative;  max-width: 100%;  }

.popular-post { background: #f7f7f7; padding: 20px;}
.popular-post .item h4, .popular-post .item-agenda h5 { color: var(--text-secondary); }
.popular-post .item h4, .popular-post .item-agenda h4 { color: var(--text-primary); }
.popular-post .item h4 a, .popular-post .item-agenda h4 a { color: var(--text-primary); }
.popular-post .item h4 a, .popular-post .item-agenda .post-info { color: var(--btn-dark-bg); }
.popular-post .item a:hover { color: var(--text-primary); -webkit-transition: .5s ease; transition: .5s ease;}
.popular-post .item h4, .popular-post .item-agenda h4 {line-height: 18px;}

.large-blog-news .lower-content {
    padding: 0px 0px 0px;
}
.default-blog-news .lower-content h4 a {
    color: var(--black);
    font-size: 16px;
    line-height: 22px;
}
.default-blog-news .lower-content .text p {
    margin-bottom: 20px;
    line-height: 22px;
    font-size: 14px;
}
.default-form .thm-btn, .service-contact .thm-btn {
    width: auto;
}
.growth-service .heightblock { min-height: 210px; }
.checkbox label.error,
.radio label.error {
    position: absolute;
    font-size: 13px;
    color: #f00;
    font-weight: 700;
    left: 0;
    top: 25px;
}
.blog-section .lower-content .img-box {
    margin: 40px 0px;
}
.service-contact {
    background: var(--bg-primary);
    padding: 30px;
    margin-top: 50px;
}
.checkout-area textarea#txtkeywords { height: 96px; }

.service-catergory li a.lock-out {
    color: #d9534f;
}
.service-catergory li a.lock-out + .view-all-icon {
    color: #d9534f;
}
.service-catergory li a.lock-out:hover,
.service-catergory li a.lock-out:hover + .view-all-icon {
    color: #c9302c; /* Un rouge légèrement plus foncé */
    text-decoration: none;
}

.main-footer { position: relative; background: var(--bg-primary); color: var(--text-light); }
.main-footer ul.list, .main-footer ul.contact-info {
  list-style: none !important;
}
.main-footer .about-widget .text {
    padding-bottom: 0px;
    padding-right: 20px;
}
.main-footer .about-widget .text p {
    text-align: justify;
    font-size: 16px;
    line-height: 18px;
}

.footer-logo img { max-height: 60px; }
.footer-bottom p { color: var(--text-light) !important; }
.footer-bottom ul { list-style: none !important; }
.footer-bottom .get-text ul li a {
    color: #fff;
}
.main-footer .links-widget .list li a:before {
    background: var(--text-light);
}
.main-footer .links-widget .list li:hover a:before {
    background: var(--accent-cyan);
}

.main-footer .links-widget .list li a, .main-footer p {
    color: var(--text-light) !important;
}
.main-footer .links-widget .list li a:hover {
    color: var(--accent-cyan) !important;
}
.main-footer .posts-widget .post h4 a, .main-footer .contact-info a, .main-footer .contact-info a:link, .main-footer .contact-info a:visited {
    color: var(--text-light) !important;
}
.x-twitter-footer {
    width: 24px;
    height: 24px;
    filter: invert(100%);
    color: #fff;
}
.x-twitter-footer:hover {
    filter: invert(61%);
}
.footer-bottom {
    background: var(--accent-cyan-dark);
    padding: 25px 0px 12px 0px;
}
.scroll-top {
    background: var(--btn-secondary-bg);
}

.category-style-one ul {
    padding: 20px 20px 10px 20px;
}

.social li {
  display: inline-block;
  margin: 0 8px;
}

.social-link {
  display: inline-block;
  transition: all 0.3s ease;
}

.social-icon {
  width: 28px;
  height: 28px;
  fill: #666;
  transition: fill 0.3s ease;
}

.social-twitter:hover .social-icon {
  fill: #000;
}

.social-linkedin:hover .social-icon {
  fill: #0077B5;
}

.secure-content {
    background-color: #d1a728;
  padding: 20px;
  margin: 40px 0px;
}
.secure-content h4 {
   color: var(--text-light);
   margin-bottom: 0px !important;
}
.secure-content p {
   color: var(--text-light);
}
