/* ==========================================================================
   1. INFORMATIONS DU THÈME
   ========================================================================== */
/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.2
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* ==========================================================================
   1. VARIABLES GLOBALES
   ========================================================================== */
:root {
  /* Variables de navigation */
  --drawer-width: 100%;
  --drawer-timing: 0.4s;
  --drawer-easing: cubic-bezier(0.4, 0, 0.2, 1);
  --nav-hover: #89adf7;

  /* Variables formulaires */
  --input-color: #949494;
  --input-bg: #f9f9f9;
  --input-border: #e4e4e4;

  /* Styles communs */
  --box-shadow-sm: 0 0 5px rgba(0, 0, 0, 0.05);
  --box-shadow-lg: 0 0 12px rgba(0, 0, 0, 0.5);
  --border-radius: 10px;

  /* Variables Elementor */
  --wpgb-border-width: 1px;
}

.site-2 :root {
  --nav-hover: #89adf7;
  --transition-time: 0.3s;
}

/* Styles d'inputs globaux */
input,
input::-webkit-input-placeholder,
::-moz-placeholder {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--input-color);
}

/* Police personnalisée */
@font-face {
  font-family: 'Archivo Black';
  src: url('assets/fonts/archivo-black.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('assets/fonts/roboto.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* ==========================================================================
     2. FORMULAIRES
     ========================================================================== */
/* Structure des formulaires de contact */
.contactform {
  display: none;
  background-color: #FFFFFF;
  margin: 15px 0 0;
  padding: 30px 50px 50px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
}

.contactform:first-of-type {
  display: block;
}

/* Champs de formulaire Contact Form 7 */
.contactform input[type="text"],
.contactform input[type="email"],
.contactform select,
.contactform textarea {
  width: 100%;
  font-size: 16px;
  color: #949494;
  background: #f9f9f9;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 10px 15px;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s, color 0.3s;
}

/* Hauteurs spécifiques des champs */
.contactform input[type="text"],
.contactform input[type="email"],
.contactform select {
  height: 46px !important;
}

.contactform textarea {
  padding: 15px;
  margin-top: 20px;
}

/* États des champs (hover/focus) */
.contactform input[type="text"]:hover,
.contactform input[type="email"]:hover,
.contactform select:hover,
.contactform textarea:hover {
  background: #f3f3f3 !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05) !important;
}

.contactform input[type="text"]:focus,
.contactform input[type="email"]:focus,
.contactform select:focus,
.contactform textarea:focus {
  border-color: #e4e4e4 !important;
  color: black !important;
  outline: none;
}

/* Styles des cases à cocher */
.contactform input[type="checkbox"] {
  height: 21px !important;
  width: 21px !important;
  vertical-align: sub !important;
  display: inline-flex;
}

/* Styles des labels d'acceptation */
.contactform span.wpcf7-form-control.wpcf7-acceptance span.wpcf7-list-item label,
.contactform span.wpcf7-form-control.wpcf7-acceptance span.wpcf7-list-item {
  display: flex;
  margin-right: 0;
}

/* Styles du bouton de soumission */
.submit-btn {
  text-align: right;
}

.submit-btn input[type="submit"] {
  padding: 12px 32px;
  font-size: 16px;
  border: none !important;
  border-radius: 30px !important;
  background-color: #89ADF7 !important;
  color: #ffffff !important;
  transition: background-color 0.3s, color 0.3s;
}

.submit-btn input[type="submit"]:hover {
  background-color: #000000 !important;
  color: #ffffff !important;
}

/* ==========================================================================
   3. NAVIGATION
   ========================================================================== */
/* Styles du sous-menu principal */

/* Contenu du sous-menu */
.nav__submenu-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 420px;
  box-sizing: border-box;
  overflow: hidden;
  white-space: normal;
  font-family: 'Roboto', sans-serif;
}

/* Icônes et interactions du menu */
.nav__submenu-link:hover i {
  color: #fff !important;
}

.nav__submenu-description {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}

/* Styles des icônes du sous-menu */
.nav__submenu-icon-wrapper {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__submenu-icon-wrapper i {
  scale: 1 !important;
  display: inline-flex !important;
  color: #89adf7 !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Titre et description du sous-menu */
.nav__submenu-title {
  display: block;
  font-weight: 600 !important;
  font-family: 'Roboto', sans-serif;
}

.nav__submenu-description {
  display: block;
  font-size: 0.8rem !important;
  color: var(--nav-description);
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

/* États de survol des liens du sous-menu */
.nav__submenu-link:hover .nav__submenu-description,
.nav__submenu-link:hover .nav__submenu-title {
  color: white !important;
}


.nav__submenu-icon-wrapper {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Menu principal desktop */

/* Styles responsifs du menu */
@media (max-width: 1024px) {

  /* Container dropdown principal */

  /* Active and Focus States */

  /* Ensure Icons Load Correctly - Manquant aussi */

  /* Styles du sous-menu en mobile */

  /* Désactivation des effets de survol sur mobile */

  /* Désactivation des transitions sur mobile */

  /* Menu de premier niveau scrollable */

  /* Éléments de menu de premier niveau */

  /* Styles des liens du sous-menu */

}

/* ==========================================================================
  4. COMPOSANTS FLIP BOX
  ========================================================================== */
/* Base du Flip Box */
.wpr-flip-box {
  position: relative;
  width: 100%;
}

.wpr-flip-box-item {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 0.8s ease;
  backface-visibility: hidden;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(205, 205, 205, 0.5);
}

/* Face avant du Flip Box */
.wpr-flip-box-front {
  background-color: #fff;
  color: #333;
}

/* Face arrière du Flip Box */
.wpr-flip-box-back {
  background-color: #89adf7;
  color: white;
  transform: rotateY(180deg);
}

/* Effets de survol du Flip Box */
.wpr-flip-box:hover .wpr-flip-box-front {
  transform: rotateY(180deg);
}

.wpr-flip-box:hover .wpr-flip-box-back {
  transform: rotateY(0);
}

/* Contenu du Flip Box */
.wpr-flip-box-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}

.wpr-flip-box-title {
  font-size: 18px !important;
  font-weight: 600;
  margin: 0 0 5px;
  color: #212121;
  line-height: 1.375 !important;
}

.wpr-flip-box-title.back_title {
  color: #fff;
}

.wpr-flip-box-description {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.wpr-flip-box-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.wpr-flip-box-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}



/* Alignement du contenu du Flip Box */
.wpr-flip-box-content.back {
  align-items: center;
}

.wpr-flip-box-description.back_description,
.wpr-flip-box-title.back_title {
  text-align: center;
}

/* Variations du timing d'animation */

/* ==========================================================================
 5. COMPOSANTS ELEMENTOR PERSONNALISÉS
 ========================================================================== */

/* Boîtes d'icônes personnalisées */

/* Styles des blocs client */

/* Container avec bordure */

/* ==========================================================================
 6. STYLES RESPONSIFS ET UTILITAIRES
 ========================================================================== */
/* Styles spécifiques Mobile */
@media only screen and (max-width: 767px) {
  .submit-btn {
    text-align: center !important;
    margin-top: 40px !important;
  }
}

@media only screen and (max-width: 1024px) {

  /* Navigation Horizontale */

  /* Bouton Mobile */

  /* Flip Box Mobile */
  .wpr-flip-box {
    max-height: 214px;
  }
}

/* Styles spécifiques tablets */
@media screen and (max-width: 768px) {
  .wpr-flip-box {
    max-height: 214px;
  }
}

/* Styles spécifiques mobile */
@media only screen and (max-width: 767px) {
  .submit-btn {
    text-align: center !important;
    margin-top: 40px !important;
  }
}

/* ==========================================================================
 7. GESTION DES FORMULAIRES ET VISIBILITÉ
 ========================================================================== */
/* Gestion de l'affichage des formulaires */
/* Affichage des formulaires */

[class^="form"]:not(.form1) {
  display: none;
}

/* Gestion WP Grid Builder */

/* Masquage des icônes par défaut */
li[class*="icon-"]::before {
  display: none !important;
}

/* ==========================================================================
 8. POLICES ET TYPOGRAPHIE
 ========================================================================== */
@font-face {
  font-family: 'Roboto';
  src: url('https://fonts.gstatic.com/s/roboto/v32/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf') format('woff2');
  font-display: swap;
}

/* ==========================================================================
   9. BOUTONS PERSONNALISÉS
   ========================================================================== */
/* Return to Blog Button */
.custom_button_container {
  display: flex;
  align-items: center;
  width: fit-content;
  background-color: var(--e-global-color-primary);
  font-family: var(--e-global-typography-3de778a-font-family), Sans-serif;
  font-size: var(--e-global-typography-3de778a-font-size);
  font-weight: var(--e-global-typography-3de778a-font-weight);
  line-height: var(--e-global-typography-3de778a-line-height);
  letter-spacing: var(--e-global-typography-3de778a-letter-spacing);
  color: #fff;
  padding: 17px;
  border-radius: 3px;
}

.custom_button_container .elementor-button-icon {
  height: 24px;
  display: flex;
  align-items: center;
}

.custom_button_container .elementor-button-icon svg,
.button.return-blog {
  color: #fff;
  fill: #fff;
}

/* ==========================================================================
   10. ANIMATIONS ET TRANSITIONS
   ========================================================================== */

/* Transitions Header */
.sticky_container {
  transition: all 0.3s ease-in-out;
}

/* Swiper Transitions */

/* ==========================================================================
   11. ÉTATS INTERACTIFS ET HOVER
   ========================================================================== */
/* États des boutons */
button:hover,
button:focus,
[type=submit]:hover,
[type=submit]:focus,
[type=button]:hover,
[type=button]:focus {
  color: #ffffff;
  background-color: var(--nav-hover);
  text-decoration: none;
}

/* États hover des formulaires */
.contactform input[type="text"]:hover,
.contactform input[type="email"]:hover,
.contactform select:hover,
.contactform textarea:hover {
  background: #f3f3f3 !important;
  box-shadow: var(--box-shadow-sm) !important;
}

.contactform input[type="text"]:focus,
.contactform input[type="email"]:focus,
.contactform select:focus,
.contactform textarea:focus {
  border-color: var(--input-border) !important;
  color: black !important;
  outline: none;
}

/* États hover des liens submenu */
.nav__submenu-link:hover i {
  color: #fff !important;
}

/* ==========================================================================
   12. STYLES DE HEADER ET CONTENEURS
   ========================================================================== */
/* Header */
.header-scrolled {
  background-color: #fff !important;
  box-shadow: 0px 10px 60px 0.1px rgba(0, 0, 0, 0.12);
}

/* Container spécifiques */

/* ==========================================================================
   13. NAVIGATION MOBILE ET RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {

  /* Structure principale mobile */

  /* Sous-menu en mobile */

  /* Optimisation du scroll */
}


/* ===================================================
   Variables globales
   =================================================== */
.site-1 :root {
  --nav-hover: #89adf7;
  --transition-time: 0.3s;
}

/* ===================================================
   Styles des sous-menus
   =================================================== */
/* Conteneur du sous-menu */

/* Style des liens du sous-menu */
.site-1 .nav__submenu-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #333;
  /* Spécifique au thème light */
  text-decoration: none;
  transition: background-color var(--transition-time);
  border-radius: 8px;
}

.site-1 .nav__submenu-link:hover {
  background-color: var(--nav-hover);
}

/* Contenu du sous-menu */
.site-1 .nav__submenu-content {
  flex-grow: 1;
}

.site-1 .nav__submenu-description {
  display: block;
  font-size: 0.875em;
  color: #666;
  /* Spécifique au thème light */
}

/* États de survol */
.site-1 .nav__submenu-item:hover .nav__submenu-icon-wrapper i,
.site-1 .nav__submenu-item:hover .nav__submenu-content,
.site-1 .nav__submenu-item:hover .nav__submenu-description,
.site-1 .nav__submenu-link:hover .nav__submenu-description,
.site-1 .nav__submenu-link:hover .nav__submenu-title {
  color: #fff !important;
}

/* ===================================================
   Header et boutons
   =================================================== */
.site-1 .header-scrolled {
  background-color: #fff !important;
  box-shadow: 0px 10px 60px 0.1px rgba(0, 0, 0, 0.12);
}

.switches-container {
  height: 74px;
  width: 384px !important;
  position: relative;
  display: flex;
  padding: 0;
  background: #ffffff;
  line-height: 3rem;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #e7e7e7;
}

.switch div {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  width: 100%;
  text-align: center;
  opacity: 0;
  color: #ffffff;
  transition: opacity .2s cubic-bezier(.77, 0, .175, 1) .125s;
  will-change: opacity;
  position: absolute;
  top: 0;
  left: 0;
}

.switches-container label {
  width: 50%;
  padding: 0;
  margin: 0;
  text-align: center;
  cursor: pointer;
  color: #131313;
  font-size: 1.5rem !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.switches-container input {
  visibility: hidden;
  position: absolute;
  top: 0;
}

.switch-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  padding: 0.15rem;
  z-index: 3;
  transition: transform .5s cubic-bezier(.77, 0, .175, 1);
}

.switch {
  border-radius: 10px;
  background: #89adf7;
  height: 100%;
}

.switches-container input:nth-of-type(1):checked~.switch-wrapper {
  transform: translateX(0%);
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper {
  transform: translateX(100%);
}

.switches-container input:nth-of-type(1):checked~.switch-wrapper .switch div:nth-of-type(1) {
  opacity: 1;
}

.switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
  opacity: 1;
}

.switch div a {
  color: #ffffff;
  text-decoration: none;
}

.switches-container label a {
  color: #131313;
  text-decoration: none;
}

.switch div:nth-child(2) {
  cursor: pointer;
}

.switch div:nth-child(2).active {
  background-color: #E1D3A8;
  border-radius: 10px;
}

@media screen and (max-width:768px) {
  .switches-container {
    height: 42px;
    width: 250px !important;
  }

  .switches-container label {
    font-size: 1rem !important;
  }

  .switch div {
    height: 42px;
    font-size: 1rem;
  }
}

/* ===================================================
   Styles des sous-menus site pro
   =================================================== */
/* Conteneur du sous-menu */

/* Style des liens du sous-menu */
.site-2 .nav__submenu-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  transition: background-color var(--transition-time);
  border-radius: 8px;
}

.site-2 .nav__submenu-link:hover {
  background-color: var(--nav-hover);
}

/* Contenu du sous-menu */
.site-2 .nav__submenu-content {
  flex-grow: 1;
}

.site-2 .nav__submenu-description {
  display: block;
  font-size: 0.875em;
  color: #fff;
}

/* États de survol */
.site-2 .nav__submenu-link:hover .nav__submenu-description,
.site-2 .nav__submenu-link:hover .nav__submenu-title,
.site-2 .nav__submenu-item:hover .nav__submenu-icon-wrapper i,
.site-2 .nav__submenu-item:hover .nav__submenu-content {
  color: #fff !important;
}

/* ===================================================
   Header et boutons
   =================================================== */
.site-2 .header-scrolled {
  background-color: #212121 !important;
  box-shadow: 0px 10px 60px 0.1px rgba(0, 0, 0, 0.12);
}

/* Styles spécifiques pour la version pro du switch */
.site-2 .switches-container {
  background: #333333 !important;
  border: 1px solid #444444 !important;
}

.site-2 .switches-container label {
  color: #ffffff !important;
}

.site-2 .switch {
  background: #E1D3A8 !important;
}

.site-2 .switches-container input:nth-of-type(2):checked~.switch-wrapper .switch div:nth-of-type(2) {
  color: #141414 !important;
}

.site-2 .switch div:nth-child(1) {
  cursor: pointer;
}

.site-2 .switch div:nth-child(1).active {
  background-color: #89adf7;
  border-radius: 10px;
}

/* Bouton burger */
.nav-mobile__toggle {
  position: fixed;
  top: -10px !important;
  right: 20px;
  z-index: 1001;
  background: none !important;
  border: none;
  padding: 12px;
  cursor: pointer;
}

.site-2 .nav-mobile__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: var(--drawer-timing) var(--drawer-easing);
  transform-origin: center;
}

.site-1 .nav-mobile__toggle-bar {
  background: #212121;
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  transition: var(--drawer-timing) var(--drawer-easing);
  transform-origin: center;
}

/* Animation du burger en X */
.nav-mobile-open .nav-mobile__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-mobile-open .nav-mobile__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-mobile-open .nav-mobile__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Overlay */
.nav-mobile__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity var(--drawer-timing) var(--drawer-easing);
  z-index: 999;
  backdrop-filter: blur(4px);
}

.nav-mobile-open .nav-mobile__overlay {
  display: block;
  opacity: 1;
}

/* Navigation principale */
.site-2 .nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  /* Ajustez la largeur selon vos besoins */
  max-width: 100%;
  height: 100vh;
  background: #1d1d1d;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform var(--drawer-timing) var(--drawer-easing);
  overflow-y: auto;
  padding-bottom: 20px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.site-1 .nav-mobile {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  /* Ajustez la largeur selon vos besoins */
  max-width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform var(--drawer-timing) var(--drawer-easing);
  overflow-y: auto;
  padding-bottom: 20px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.nav-mobile-open .nav-mobile {
  transform: translateX(0);
}

/* Header avec logo et fermeture */
.nav-mobile__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;

  position: sticky;
  top: 0;
  z-index: 2;
}

.site-1 .nav-mobile__content,
.site-1 .nav-mobile__tabs,
.site-1 .nav-mobile__header {
  background: #fff;
}

.site-2 .nav-mobile__content,
.site-2 .nav-mobile__tabs,
.site-2 .nav-mobile__header {
  background: #1d1d1d;
}

.nav-mobile__brand {
  font-weight: 500;
  color: #333;
  text-decoration: none;
}

.nav-mobile__close {
  font-size: 24px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* Tabs de navigation */
.nav-mobile__tabs {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 12px;
  background: #1d1d1d;
  position: sticky;
  top: 64px;
  z-index: 1;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.nav-mobile__tabs::-webkit-scrollbar {
  height: 5px;
}

.nav-mobile__tabs::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.nav-mobile__tab {
  flex: 1;
  padding: 8px;
  font-size: 14px;
  text-align: center;
  background: none;
  border: none;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.site-1 .nav-mobile__tab {
  color: #212121;
}

.site-2 .nav-mobile__tab {
  color: #fff;
}

.site-2 .nav-mobile__tab.active {
  color: #212121;
}

.nav-mobile__tab.active {
  background: white;
  color: #333 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Zone de contenu */
.nav-mobile__content {
  padding: 16px;
  background: #1d1d1d;
}

.nav-mobile__pane {
  display: none;
}

.nav-mobile__pane.active {
  display: block;
}

/* Éléments de menu */
.nav__submenu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__submenu-item {
  margin-bottom: 8px;
}

.nav__submenu-link {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s;
  border-radius: 8px;
}

.nav__submenu-link.active {
  background-color: var(--nav-hover);
}

.nav__submenu-link:hover {
  background-color: var(--nav-hover);
}

.nav__submenu-icon-wrapper {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__submenu-icon-wrapper i {
  transform: scale(2);
  /* Utiliser transform au lieu de scale */
  color: var(--nav-hover);
}

.nav__submenu-content {
  flex-grow: 1;
}

.nav__submenu-description {
  display: block;
  font-size: 0.875em;
  color: #fff;
}

/* Masquer en desktop */
@media screen and (min-width: 1024px) {

  .nav-mobile,
  .nav-mobile__toggle,
  .nav-mobile__overlay {
    display: none;
  }
}


/*accordion items*/



h3,
p,
li {
  font-family: "roboto" !important;
}

h1 {
  font-family: "archivo black" !important;
}

/* Correction du fond blanc dans le sous-menu */
.nav__submenu > ul,
ul.sub-menu {
  background-color: #1d1d1d !important; /* Même couleur que le body */
}

 .logos-grid,
  .logo-sizes,
  .buttons-grid,
  .colors-grid,
  .app-colors-grid,
  .typography-grid,
  .illustrations-grid,
  .offers-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  /* Centrage des cartes */
  .logo-card,
  .logo-size-card,
  .button-card,
  .color-card,
  .app-color-card,
  .font-family-card,
  .illustration-card,
  .offer-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  section.section {
    margin-top: 100px;
  }

/* Grille avec taille fixe et responsive */
.colors-grid, .app-colors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

/* Carte de couleur */
.color-card, .app-color-card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.04);
  transition: transform 0.3s;
  height: 260px; /* Hauteur uniforme pour toutes les cartes */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Sample de couleur */
.color-sample, .app-color-sample {
  width: 100%;
  height: 100px;
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px solid #e5e7eb;
  flex-shrink: 0;
}

/* Textes */
.color-name {
  font-weight: 600;
  margin-bottom: 8px;
  color: #1e293b;
}

.color-values {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 10px;
}

.color-note {
  font-size: 0.8rem;
  font-style: italic;
  color: #9ca3af;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.logo-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.logo-card:hover {
  transform: translateY(-4px);
}

.logo-preview {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 12px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.logo-preview img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.logo-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 4px;
}

.logo-formats {
  font-size: 0.9rem;
  color: #6b7280;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.offer-card {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: transform 0.2s ease;
}

.offer-card:hover {
    transform: translateY(-4px);
}

.offer-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.offer-title {
    font-family: 'Quicksand', 'Avenir Next', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.offer-description {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 20px;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.offer-features li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #334155;
    position: relative;
    padding-left: 1.2em;
}

.offer-features li::before {
    content: "✔";
    color: #89ADF7;
    position: absolute;
    left: 0;
}

:root {
  --e-global-color-text: #1D1D1D
  --e-global-color-secondary: #1D1D1D;  /* Couleur du footer */
  --e-global-color-primary: #89ADF7;
  --e-global-color-accent: #E1D3A8;
}
/* Masque les boutons sticky qui causent le doublon visuel tout en haut */
.elementor-sticky--effects {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Dès qu'on scroll, Elementor ajoute cette classe aussi : on rend visible */
.elementor-sticky--active.elementor-sticky--effects {
    opacity: 1;
    pointer-events: auto;
}

  @import url('https://fonts.googleapis.com/css2?family=Roboto&amp;display=swap');

  body {
    margin: 0;
    padding: 0 10px;
    font-family: 'Roboto', sans-serif;
    background: #fff;
  }

  .trust-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 15px;
    padding: 20px 0;
    color: #a8aeb5;
  }

  .trust-item {
    flex: 1 1 130px;
    max-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .icon-circle {
    background-color: #DBE6FC;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .icon-circle img {
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
  }

  .trust-text-bold {
    font-weight: 700;
    color: #a8aeb5;
    font-size: 14px;
    user-select: none;
  }

  .trust-text-small {
    font-weight: 400;
    font-size: 13px;
    color: #a8aeb5;
    user-select: none;
  }

  .stars {
    color: #7a8cc7;
    font-weight: 700;
    font-size: 14px;
    user-select: none;
  }
/*en dessous des notes*/
      body {
      font-family: 'Roboto', sans-serif;
      margin: 0;
      padding: 0;
    }
    .feature-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 1240px;
      margin: 40px auto;
      color: #ADB2B1;
    }
    .feature {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      background: #DBE6FC;
      border-radius: 12px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .feature-icon img {
      width: 28px;
      height: 28px;
    }
    .feature-text {
      display: flex;
      flex-direction: column;
      font-size: 20px;
    }
    .feature-text strong {
      color: #ADB2B1;
    }
    .stars {
      color: #89ADF7;
      font-size: 20px;
      letter-spacing: 2px;
      line-height: 1;
    }
