@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; }
.pink  { color: var(--accent-ocre-red) !important; }
.black { color: var(--black) !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 {
    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 {
    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 {
    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-primary-bg);
    border-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    font-size: 12px;
}
.btn-abo:hover,
.btn-abo:focus,
.btn-abo:active,
.btn-abo.active {
    background-color: var(--btn-primary-hover);
    border-color: var(--btn-primary-hover);
    color: var(--btn-primary-text);
}

/* =======================================
   TOP BAR
   ======================================= */
.top-bar {
    background-color: var(--bg-secondary);
    padding: 6px 0;
    font-size: 14px;
}

/* Reset UL */
.top-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Trafic des liens texte (gauche) */
.top-bar .top-bar-text li {
    display: inline-flex;
    align-items: center;
    margin-right: 18px;
}

.top-bar .top-bar-text li i {
    color: var(--text-light);
    margin-right: 10px;
    font-size: 18px;
    position: relative;
    top: 2px;
}

.top-bar .top-bar-text a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: baseline;
    gap: 0px;
    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;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-light);
    font-size: 14px;
    transition: background .25s ease, color .25s ease;
}

.top-bar .top-bar-text a:hover i {
    background: var(--bg-accent);
    color: var(--text-on-accent);
}

/* Icônes sociales (droite) */
.top-bar .social {
    top: 7px;
    position: relative;
}
.top-bar .social li {
    display: inline-block;
    margin-left: 0px;
    margin-right: 0px;
}

.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 SVG blanc */
.x-twitter-topbar {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.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);
}

/* MENU PRINCIPAL */
.theme_menu {
    background: var(--bg-lighter) !important;
    border-bottom: 2px solid var(--bg-border);
    box-shadow: none !important;
    padding: 0;
}
.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;
}

/* 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(--btn-secondary-bg) !important;
    color: var(--text-light) !important;
    border: none !important;
}
.menuzord-menu > li > a.btn-menu-adh:hover,
.thm-btn:hover {
    background: var(--btn-secondary-hover) !important;
    color: var(--text-light) !important;
}
.right-column .thm-btn { margin-left: 10px; }

/* ========
   SLIDER
   ======== */
/* Hauteur fixe du carousel */
#homeCarousel,
#homeCarousel .carousel-inner,
#homeCarousel .carousel-inner .item {
  height: 550px;
}

/* Carousel inner overflow */
#homeCarousel .carousel-inner {
  overflow: hidden;
  position: relative;
}

/* Item doit être relative pour le fade */
#homeCarousel .carousel-inner .item {
  position: relative;
}

/* Slide background */
#homeCarousel .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Lien plein slide */
#homeCarousel .slide-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

/* Zone flèches - CENTRAGE VERTICAL */
#homeCarousel .carousel-control {
  background: none;
  opacity: 1;
  width: 120px;
  z-index: 10;
  /* Supprime dégradés Bootstrap */
  background-image: none !important;
  /* Centrage vertical */
  display: flex;
  align-items: center;
  justify-content: center;
}
#homeCarousel .carousel-control {
    text-shadow: none;
}
/* Cercle + flèche */
#homeCarousel .custom-control i {
  width: 44px;
  height: 44px;
  font-size: 30px;
  color: var(--text-primary);
  border: 2px solid var(--text-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  position: static; /* Important : retire le positionnement absolu */
}

/* Hover flèches */
#homeCarousel .custom-control:hover i {
  background: var(--btn-secondary-bg);
  color: var(--text-light);
  border-color: var(--btn-secondary-bg);
}

/* ===============================
   CAROUSEL FADE – BOOTSTRAP 3
   =============================== */
#homeCarousel.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition: opacity .8s ease-in-out;
}

/* Premier item visible */
#homeCarousel.carousel-fade .carousel-inner .item:first-child {
  position: relative;
}

/* Item actif */
#homeCarousel.carousel-fade .carousel-inner .active {
  opacity: 1;
  z-index: 2;
  position: relative;
}

/* Items en transition */
#homeCarousel.carousel-fade .carousel-inner .next,
#homeCarousel.carousel-fade .carousel-inner .prev {
  opacity: 1;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Items qui sortent */
#homeCarousel.carousel-fade .carousel-inner .active.left,
#homeCarousel.carousel-fade .carousel-inner .active.right {
  opacity: 0;
  z-index: 1;
}

/* Empêche le translate de Bootstrap qui casse le fade */
#homeCarousel.carousel-fade .carousel-inner .next.left,
#homeCarousel.carousel-fade .carousel-inner .prev.right {
  transform: translate3d(0, 0, 0);
}

/* Responsive */
@media (max-width: 768px) {
  #homeCarousel,
  #homeCarousel .carousel-inner,
  #homeCarousel .carousel-inner .item {
    height: 320px;
  }
}

/* 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: none; 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; }

/* BLOG / PARTNERS / TEAMS */
.default-blog-news .img-box img { max-height: 208px; }

.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-disabled { opacity: 0.75; cursor: not-allowed; }
.registr-layer {
    background-color: rgba(79, 79, 79, 0.8);
    position: absolute;
    width: 970px;
    height: 640px;
    margin-top: -640px;
}

/* AUTRES */
.inner-banner::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 0;
}

.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;
}
.checkout-area textarea#txtkeywords { height: 96px; }
.main-footer { position: relative; background: var(--bg-primary); color: var(--text-light); }
.footer-logo img { max-height: 60px; }
.footer-bottom p { color: var(--text-light) !important; }
.footer-bottom ul { list-style: none !important; }
.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(--bg-secondary);
}

.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;
}