/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', system-ui, sans-serif;
}

body {
  background: #fff1f1;
  color: #fff;
}

/* ================= HERO ================= */


@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@700;800&display=swap');

h1, h2, h3, .cta-box h2, .video-header h2, .trust-text h2 {
    font-family: 'Lexend', sans-serif !important;
    font-weight: 800;
    letter-spacing: -0.02em !important;
}









    /* 4. On s'assure que les icônes retrouvent leur propre police */
i, .fa, .fas, .fab, .far {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", "FontAwesome" !important;

}

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(16px, 4vw, 60px);
  overflow: hidden;
}


.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.hero-bg.active {
  opacity: 1;
}

/* overlay sombre (optionnel mais recommandé) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* contenu au-dessus */
.hero > * {
  position: relative;
  z-index: 2;
}


.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: clamp(36px, 5vw, 60px);
}

.menu-btn {
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 22px;
  cursor: pointer;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-left h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
}

.hero-left p {
  font-size: clamp(16px, 2.5vw, 22px);
  margin-top: 10px;
  opacity: 0.9;
}

.hero::after {
  background: rgba(0, 0, 0, 0.10); /* avant : 0.45 */
}





@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero-left h1 {
  margin-bottom: 5px; /* réduit l’espace sous le titre */
}

.hero-left p {
  margin-top: 0; /* enlève l’espace au-dessus du paragraphe */
}
.hero-left h1 {
  line-height: 1.05; /* valeur plus petite = lignes plus rapprochées */
}



/* ================= HAMBURGER ================= */

.menu-toggle {
  position: fixed;
  top: 50px;
  right: 100px;
  z-index: 10001;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 26px;
  color: white;
  background: transparent;
  cursor: pointer;
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #f58260;

  display: flex;
  justify-content: flex-start; /* 🔥 À GAUCHE */
  align-items: center;

  padding-left: 6vw;

  opacity: 0;
  visibility: hidden;
  transform: translateX(-40px);
  transition: all 0.4s ease;

  z-index: 10000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* CONTAINER */
.menu-container {
  width: 100%;
  max-width: 520px;
  display: flex;
  justify-content: flex-start;
}

/* MENU */
.menu-left {
  width: 100%;
  text-align: left;
}

.menu-left ul {
  list-style: none;
}

.menu-left li {
  font-size: clamp(24px, 4vw, 42px);
  margin-bottom: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.menu-left li:hover {
  transform: translateX(6px);
  opacity: 0.7;
}

.menu-left li span {
  opacity: 0.5;
  margin-right: 12px;
}

/* FOOTER */
.agency-footer {
  margin-top: 50px;
  color: white;
}

.socials {
  display: flex;
  gap: 18px;
  font-size: 22px;
  margin-bottom: 10px;
  justify-content: flex-start;
}

/* RESPONSIVE MENU */
@media (max-width: 768px) {
  .menu-overlay {
    justify-content: center;
    padding: 20px;
  }

  .menu-container {
    max-width: 100%;
    justify-content: center;
  }

  .menu-left {
    text-align: center;
  }

  .socials {
    justify-content: center;
  }
}
.menu-container {
  margin-left: 8vw; /* ajuste toi-même : 2vw → 5vw → 10vw */
}
.menu-toggle {
  font-weight: 800; /* plus le chiffre est grand, plus c’est gras */
}

.menu-toggle {
  border: none;
  outline: none;
  box-shadow: none;
}

/* INTRODUCTION DE HOIS */

/* ================= SECTION TEXTE ================= */

.about-section {
  width: 100%;
  padding: clamp(60px, 12vw, 160px) 20px;
  background: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-container {
  max-width: 1000px;
  text-align: center;
}

.about-container h2 {
   font-size: clamp(18px, 2.5vw, 35px);

  font-weight: 400;
  line-height: 1.5;
  color: #333;
}

/* mot en couleur */
.about-container .highlight {
  color: #333; /* orange comme sur l’image */
  font-weight: 600;
}

/* mot en gras */
.about-container .bold {
  font-weight: 800;
  color: #4A4A4A;
}

.agency-line {
  display: flex;
  align-items: center;   /* aligne parfaitement verticalement */
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;        /* 🔥 empêche le texte de descendre */
}

.socials {
  display: flex;
  align-items: center;  /* 🔥 aligne aussi les icônes */
  gap: 12px;
}

.socials i {
  font-size: 18px;
  line-height: 1;       /* 🔥 important */
  display: flex;
  align-items: center;
}
.agency-name {
  position: relative;
  top: -5px; /* mets -1px ou -2px si tu veux ajuster ultra fin */
}


/* ================= CHEZ NOUS, ================= */

/* Importation d'une police proche du visuel */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

.hero-section {
    background-color: #f7f7f7; /* Couleur exacte du fond */
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* Pour le mobile */
}

/* Style de l'image et du badge */
.image-container {
    flex: 1;
    min-width: 350px;
    position: relative;
}

.main-image img {
    width: 100%;
    border-radius: 20px; /* Coins arrondis du modèle */
    display: block;
}

.badge {
    position: absolute;
    bottom: 20px;
    right: -10px;
    background: #632d79;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.badge .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
}

.badge .sub {
    font-size: 0.8rem;
    color: #ffffff;
}

/* Style du texte */
.text-container {
    flex: 1.2;
    min-width: 350px;
}

.text-container h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.text-container p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

.text-container strong {
    font-weight: 700;
    color: #4A4A4A;
}

/* Responsive pour tablettes et téléphones */
@media (max-width: 768px) {
    .container { flex-direction: column; text-align: center; }
    .text-container h1 { font-size: 2.5rem; }
    .badge { position: static; margin-top: 20px; justify-content: center; }
}

.text-container h1 {
    color: #2e2d2f; /* Changez cette valeur par la couleur souhaitée */
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-section {
    margin-top: -65px; /* Remonte la section vers le haut */
    position: relative;
    z-index: 10; /* Assure que la section reste au-dessus si elle chevauche */
}


/* ================= NOS SERVICES ================= */


/* Style global de la section */
.services-section {
    background-color: #ffffff; /* Fond rose pâle comme l'image */
    padding: 100px 20px;
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Titre "NOS SERVICES" centré */
.main-title {
    text-align: center;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 60px;
    color: #2e2d2f;
    letter-spacing: -1px;
}

/* Grille de 3 colonnes */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Style des cartes de service */
.service-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}




/* Icônes */
.icon-box {
    font-size: 2.5rem;
    color: #4A4A4A;
    margin-bottom: 25px;
}

/* Titres des cartes */
.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #4a4a4a;
}

/* Texte des cartes */
.service-card p {
    color: #666; /* Gris pro comme demandé */
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Lien "READ MORE" */
.read-more {
    display: inline-block;
    font-weight: 700;
    font-size: 0.85rem;
    color: #000;
    text-decoration: none;
    letter-spacing: 1px;
}

.read-more:hover {
    text-decoration: underline;
}

/* Responsive : 1 colonne sur mobile, 2 sur tablette */
@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .services-grid { grid-template-columns: 1fr; }
    .main-title { font-size: 2.2rem; }
}

/* 1. État normal de la carte */
.service-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    /* On prépare une bordure invisible pour éviter que la carte ne saute au survol */
    border: 2px solid transparent; 
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* 2. État au survol (Le curseur est dessus) */
.service-card:hover {
    /* On supprime le transform (plus de zoom/montée) */
  
    /* On ajoute la bordure de couleur (ex: un bleu Hoïs ou noir) */
    border: 5px solid #f58260; 
    
    /* On garde une ombre légère sans bouger la carte */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.read-more {
    display: inline-block;
    font-weight: 700;
    font-size: 0.85rem;
    color: #000;
    /* --- LA LIGNE CI-DESSOUS RETIRE LE SOULIGNEMENT --- */
    text-decoration: none; 
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Pour s'assurer qu'il ne s'affiche pas non plus au survol */
.read-more:hover {
    text-decoration: none;
    color: #4A4A4A; /* Optionnel : change juste un peu la couleur au survol pour le côté pro */
}


.about-section {
  padding-top: 60px;
  padding-bottom: 60px;
}


.main-title {
  margin-top: 150px;
}


.services-section {
  padding-top: 10px;   /* diminue ici encore si c’est trop */
  padding-bottom: 40px;
}
.card {
  height: 260px;              /* même hauteur pour toutes */
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centre le contenu verticalement */
  align-items: center;
}


.mission-section {
    background-color: #632d79; /* Orange de l'image ccc.JPG */

    padding: 180px 20px; 
    text-align: center;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.mission-container {
    max-width: 1100px; 
    margin: 0 auto;
}

.mission-section h2 {

    font-size: 4.1rem; 
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.mission-section h2 span, 
.mission-section h2 strong {
    font-weight: 900; /* Ultra-gras pour "OMENKART" ou "HOIS" */
    text-transform: uppercase;
}

.mission-description {
    /* Augmentation de la taille de la description */
    font-size: 1.4rem; 
    line-height: 1.6;
    max-width: 850px;
    margin: 0 auto;
    opacity: 0.95;
}


.service-card:hover {
    border-color: #f58260; 
}




.btn-devis {
    display: inline-block;
    margin-top: 40px; 
    padding: 18px 45px;
    background-color: #ffffff; 
    color: #632d79; 
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px; 
    text-transform: uppercase;
    letter-spacing: 1px;
   
    box-shadow: 0 10px 20px rgba(212, 212, 212, 0.1);
}

/* Effet au survol du bouton */
.btn-devis:hover {
    background-color: #e6e6e6; 
 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}







.portfolio-container {
    max-width: 1100px; /* Réduit pour que la grille ne soit pas trop large */
    margin: 0 auto;
    padding: 0 20px;
}

.portfolio-section {
    padding: 60px 0;
    text-align: center;
    background-color: #f7f7f7;
}

/* Grille : 4 colonnes de taille égale */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px; /* Espacement serré entre les cartes */
    margin-top: 30px;
}

.project-card {
    position: relative;
    width: 100%;
    height: 200px; /* Hauteur courte pour des cartes compactes */
    overflow: hidden;
    background: #f2f2f2;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* L'image s'adapte sans se déformer */
    transition: transform 0.4s ease;
}

/* Overlay Couleur au survol */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F18763; /* Ton Orange d'origine */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bouton Noir Minimaliste */
.btn-view-all {
    display: inline-block;
    margin-top: 40px;
    padding: 12px 30px;
    background-color: #632d79;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: background 0.3s;
}

.btn-view-all:hover {
    background-color: #4A4A4A;
}

/* Adaptation pour écrans moyens (tablettes) */
@media (max-width: 992px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Adaptation pour mobiles */
@media (max-width: 500px) {
    .projects-grid { grid-template-columns: 1fr; }
}

/* 1. Changer la couleur du titre principal */
.portfolio-title {
    color: #2e2d2f; /* Remplace par ta couleur (ex: Orange) */
}

/* 2. Changer la couleur des éléments du menu (Inactifs) */
.filter-item {
    color: #333333; /* Gris foncé par défaut */
}

/* 3. Changer la couleur de l'élément sélectionné (Actif) */
.filter-item.active {
    color: #F18763; /* La couleur quand on clique dessus */
}

/* 4. Changer la couleur lorsqu'on passe la souris sur le menu */
.filter-item:hover {
    color: #000000; /* Devient noir au survol */
}


.portfolio-title {
    font-size: 3.5rem;      /* Augmente ce chiffre pour agrandir encore plus */
    font-weight: 1000;    /* Pour le rendre plus gras/épais */
    letter-spacing: 2px; /* Pour espacer légèrement les lettres (plus pro) */
    margin-bottom: 50px; /* Pour laisser de la place avant les boutons de filtre */
    text-transform: uppercase; /* Pour forcer les majuscules */
}

.filter-menu {
    margin-top: -20px; /* Une valeur négative permet de "remonter" l'élément */
    margin-bottom: 30px; /* Espace entre le menu et les cartes */
    display: flex;
    justify-content: center;
    gap: 25px;
}

.portfolio-title {
    margin-bottom: 20px; /* Réduis cette valeur pour coller le titre au menu */
}


/* L'overlay (le voile qui apparaît au survol) */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Couleur Orange avec transparence (0.6 = 60% d'opacité) */
    /* L'image restera visible derrière ce voile */
    background-color: rgba(230, 81, 0, 0.6); 
    
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Invisible par défaut */
    transition: all 0.4s ease-in-out;
}

/* Affichage au survol */
.project-card:hover .project-overlay {
    opacity: 1; /* Le voile transparent devient visible */
}

/* Optionnel : zoom de l'image pour un effet pro */
.project-card img {
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1); /* L'image s'agrandit légèrement sous le voile */
}

/* Style du texte à l'intérieur de l'overlay */
.project-name {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.2); /* Ombre légère pour la lisibilité */
}


.project-name {
    color: #ffffff;
    font-weight: 700;
    
    /* Réduis cette valeur pour diminuer la taille du texte */
    font-size: 0.8rem; /* Tu peux essayer 0.7rem ou 12px pour que ce soit encore plus petit */
    
    text-transform: uppercase;
    letter-spacing: 1px; /* Garde un petit espacement pour la lisibilité */
    text-align: center;
    padding: 0 10px; /* Évite que le texte ne touche les bords du rectangle */
}






/* SECTION NOTRE PROCESS */
.process-section {
    padding: 40px 10%;
    background-color: #f7f7f7;
}

.process-container {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.process-left {
    flex: 0.7;
}

.process-main-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #2e2d2f !important;
}

.process-image-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 4px;
    overflow: hidden;
}

.process-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-right {
    flex: 1.3;
}

.accordion-item {
    border-bottom: 1px solid #eeeeee;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
}

.accordion-header span {
    font-weight: 700;
    font-size: 0.9rem;
    color: #000000 !important;
}

.accordion-header .icon {
    font-size: 1.2rem;
    color: #000000 !important;
    transition: transform 0.3s ease;
}

/* L'EFFET DE DESCENTE */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    font-size: 0.85rem;
    color: #555555 !important;
    margin: 0;
    padding-bottom: 15px;
}

/* ÉTAT ACTIF */
.accordion-item.active .accordion-content {
    max-height: 200px; /* Ajuste selon la longueur du texte */
}

.accordion-item.active .icon {
    transform: rotate(45deg);
    color: #f58260 !important;
}

.accordion-item.active .accordion-header span {
    color: #f58260 !important;
}

/* MOBILE */
@media (max-width: 850px) {
    .process-container { flex-direction: column; }
    .process-left { width: 100%; }
}


/* 1. On donne un peu plus d'espace au conteneur global */
.portfolio-container {
    max-width: 1300px; /* Augmenté pour permettre aux cartes de s'étaler */
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. On ajuste la grille */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px; /* Un espacement propre pour ne pas étouffer les grandes cartes */
}

/* 3. On agrandit la carte */
.project-card {
    position: relative;
    width: 100%;
    /* On passe de 180px à 220px pour un agrandissement léger et harmonieux */
    height: 220px; 
    overflow: hidden;
    border-radius: 6px; /* Optionnel : un arrondi légèrement plus marqué */
}

/* 4. On s'assure que l'image suit la nouvelle taille */
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Important : l'image ne sera pas déformée */
}

/* --- RESPONSIVE DESIGN --- */

/* Pour les Tablettes (écran de moins de 1024px) */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes au lieu de 4 */
        gap: 15px;
    }
    
    .portfolio-container {
        padding: 0 30px;
    }
}

/* Pour les Mobiles (écran de moins de 600px) */
@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr; /* 1 seule colonne : les cartes prennent toute la largeur */
        gap: 20px;
    }

    .project-card {
        height: 250px; /* On augmente un peu la hauteur sur mobile pour un look plus "Instagram" */
    }

    .portfolio-title {
        font-size: 2rem; /* On réduit la taille du titre pour qu'il ne prenne pas tout l'écran */
        text-align: center;
    }

    .filter-menu {
        flex-wrap: wrap; /* Les catégories du menu passent à la ligne si besoin */
        justify-content: center;
        gap: 10px;
    }
}


.process-main-title {
    /* Augmentez cette valeur pour la taille (ex: 3rem, 4rem ou 50px) */
    font-size: 3.5rem; 
    
    /* Épaisseur du texte (900 est le maximum) */
    font-weight: 900; 
    
    /* Pour rendre le titre encore plus imposant */
    text-transform: uppercase; 
    
    /* Ajuste l'espace entre les lettres si c'est trop large */
    letter-spacing: -1px; 
    
    /* Couleur noire pure */
    color: #2e2d2f !important;
    
    /* Marge sous le titre pour ne pas coller à l'image */
    margin-bottom: 25px;
    
    /* Optionnel : force une ligne plus haute pour éviter que les lettres se touchent */
    line-height: 1.1;
}

/* Version Responsive : On réduit la taille sur mobile pour éviter qu'il déborde */
@media (max-width: 768px) {
    .process-main-title {
        font-size: 2.2rem;
    }
}


.accordion-header span {
    /* Augmentation de la taille (on passe de 0.9rem à 1.1rem ou 1.2rem) */
    font-size: 1rem !important; 
    
    /* On garde le gras maximal pour l'impact */
    font-weight: 900 !important; 
    
    /* Espacement des lettres pour plus de clarté */
    letter-spacing: 0.5px;
    
    /* Couleur noire profonde */
    color: #4a4a4a !important;
    
    /* Transition fluide si la couleur change au clic */
    transition: color 0.3s ease;
}

/* On ajuste aussi la taille de l'icône + pour qu'elle soit proportionnelle */
.accordion-header .icon {
    font-size: 1.4rem !important;
    font-weight: 900 !important;
}









/* --- SECTION TEAM --- */
.team-section {
    padding: 80px 5%;
    background-color: #ffffff; /* Couleur beige clair du fond de ton image */
    text-align: center;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: right; /* Aligné à droite comme sur l'image */
    margin-bottom: 50px;
    color: #2e2d2f;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 colonnes sur PC */
    gap: 20px;
    margin-bottom: 50px;
}

/* CARTE MEMBRE */
.team-card {
    text-align: center;
}

.image-box {
    position: relative;
    background-color: #6a2a8c; /* Ton violet de charte */
    aspect-ratio: 1 / 1; /* Force le carré */
    overflow: hidden;
    margin-bottom: 20px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Rectangle Orange sur l'image */
.name-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff8a65; /* Ton orange de charte */
    color: white;
    padding: 8px 15px;
    font-weight: bold;
    font-size: 0.75rem;
    white-space: nowrap;
    border: 2px solid white;
}

/* Infos sous l'image */
.member-info h3 {
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 5px;
    color: #000;
}

.member-info p {
    font-size: 0.8rem;
    color: #555;
    margin: 0;
}

/* BOUTON */
.btn-team {
    display: inline-block;
    padding: 12px 40px;
    border: 1.5px solid #000;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.btn-team:hover {
    background-color: #6f348b;
    color: #fff;
}

/* --- RESPONSIVE --- */

/* Tablettes */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colonnes */
    }
    .team-title {
        font-size: 2.5rem;
        text-align: center;
    }
}

/* Mobiles */
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr; /* 1 seule colonne */
    }
    .team-title {
        font-size: 2rem;
    }
}




/* RESET : Élimine la bande blanche en bas de page */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.footer {
    background-color: #632d79; /* Ton violet exact */
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    text-align: center;
    width: 100%;
    padding: 75px 0 40px 0; /* Hauteur équilibrée */
    display: block;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOGO */
.footer-logo img {
    max-width: 120px;
    margin-bottom: 30px;
}

/* DESCRIPTION */
.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400; /* Pas trop de gras pour le confort de lecture */
}

/* CONTACTS */
.footer-contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 0.85rem;
    font-weight: 600; /* Gras moyen pour la visibilité */
    margin-bottom: 35px;
}

.footer-contact-info a {
    color: #ffffff;
    text-decoration: none;
}

/* NAVIGATION */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ff8a65;
}

/* LE TRAIT DE SÉPARATION */
.footer-divider {
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2); /* Trait blanc discret */
    margin-bottom: 30px;
}

/* COPYRIGHT ET RÉSEAUX (Centrés) */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.8;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.footer-socials a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: opacity 0.3s;
}

.footer-socials a:hover {
    color: #ff8a65 !important;
}

/* SÉPARATEUR ORANGE */
.sep {
    color: #ff8a65; /* Ton orange signature */
    font-weight: bold;
    margin: 0 4px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer { padding: 50px 0 30px 0; }
    .footer-nav { gap: 20px; }
    .footer-contact-info { flex-direction: column; gap: 15px; }
    .footer-description br { display: none; }
}


.footer-contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    
    /* Correction du gras ici */
    font-weight: 400; /* Poids normal, beaucoup plus léger */
    font-size: 0.8rem;
    letter-spacing: 0.5px; /* Un peu d'espacement pour la clarté */
    opacity: 0.9; /* Pour adoucir le blanc pur */
}

.footer-contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400; /* On s'assure que les liens ne sont pas gras non plus */
}


.footer {
    background-color: #632d79;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    text-align: center;
    width: 100%;
    
    /* On augmente légèrement ici : de 60px/30px à 85px/45px */
    padding: 150px 0 45px 0; 
    
    display: block;
}

/* On peut aussi augmenter un peu l'espace avant le trait de séparation */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 55px; /* Un peu plus d'air avant la ligne */
}

/* Et l'espace sous le trait */
.footer-divider {
    height: 1px;
    width: 100%;
    max-width: 1100px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 0 auto 35px auto; /* 35px d'espace vers le copyright */
}




.footer {
    padding:80px 0 80px 0; 
}




/* --- BOUTON DE CONVERSATION --- */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #f18763; /* Ton orange */
    color: rgb(254, 255, 254);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999; /* Toujours au-dessus de tout */
    transition: all 0.3s ease;
    text-decoration: none;
}

.chat-button:hover {
    transform: scale(1.1); /* Grossit légèrement au survol */
    background-color: #5ac06b; /* Devient violet au survol */
}

/* Bulle de texte qui apparaît au survol */
.chat-tooltip {
    position: absolute;
    right: 75px;
    background-color: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.chat-button:hover .chat-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* Animation de pulsation douce au chargement */
@keyframes pulse-chat {
    0% { box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(255, 138, 101, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 138, 101, 0); }
}

.chat-button {
    animation: pulse-chat 2s infinite;
}

/* Ajustement pour mobile */
@media (max-width: 768px) {
    .chat-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .chat-tooltip { display: none; } /* On cache la bulle sur mobile */
}




.btn-top-premium {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    
    /* Style Visuel */
    background: linear-gradient(135deg, #6a2a8c 0%, #4a1d61 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; /* Carré arrondi moderne */
    
    /* Centrage de l'icône */
    display: none; /* Géré par JS */
    align-items: center;
    justify-content: center;
    
    /* Effets */
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-top-premium:hover {
    background: #ff8a65; /* Ton orange au survol */
    transform: translateY(-8px); /* Il "saute" un peu plus haut */
    box-shadow: 0 15px 25px rgba(255, 138, 101, 0.3);
}

/* Animation de l'icône à l'intérieur au survol */
.btn-top-premium:hover svg {
    animation: bounceUp 0.5s infinite alternate;
}

@keyframes bounceUp {
    from { transform: translateY(0); }
    to { transform: translateY(-3px); }
}

.icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon {
  width: 75px;
  height: 75px;
  object-fit: contain;
}


.mission-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

/* Style commun pour le côté arrondi */
.btn-contact-secondary, .btn-devis-primary {
    padding: 14px 30px;
    border-radius: 50px; /* Bords totalement ronds */
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px; /* Espace entre l'icône et le texte */
}

/* Bouton CONTACTEZ-NOUS (Outline) */
.btn-contact-secondary {
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    background: transparent;
}

.btn-contact-secondary:hover {
    border-color: #ff8a65;
    color: #ff8a65;
    background: rgba(255, 138, 101, 0.05);
}

/* Bouton DEMANDER UN DEVIS (Plein Orange) */
.btn-devis-primary {
    background-color: #ff8a65;
    border: 2px solid #ff8a65;
    color: #fff;
    box-shadow: 0 8px 15px rgba(255, 138, 101, 0.2);
}

.btn-devis-primary:hover {
    background-color: #6a2a8b; /* Devient violet au survol */
    border-color: #6a2a8b;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(106, 42, 139, 0.3);
}

/* Style de l'icône */
.icon-whatsapp {
    transition: transform 0.3s ease;
}

.btn-contact-secondary:hover .icon-whatsapp {
    transform: rotate(15deg) scale(1.1);
}

/* Adaptabilité Mobile */
@media (max-width: 600px) {
    .mission-actions {
        flex-direction: column;
        padding: 0 20px;
    }
    .btn-contact-secondary, .btn-devis-primary {
        width: 100%;
        justify-content: center;
    }
}





.cta-testimonial-section {
    padding: 60px 20px;
    background-color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

.cta-testimonial-section .container {
    display: flex;
    max-width: 1100px;
    margin: 0 auto;
    gap: 20px;
    align-items: stretch;
}

/* Bloc de gauche (Orange) */
.cta-box {
    background: linear-gradient(135deg, #632d79 0%, #632d79 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 80%;
}

/* Bouton Prendre RDV */
.btn-rdv {
    background: #f58260;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px; /* Forme pilule comme demandé */
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    transition: transform 0.3s ease;
}

.btn-rdv:hover {
    transform: scale(1.05);
}

/* Bloc Témoignage (Blanc) */
.testimonial-box {
    background: white;
    border: 1px solid #e0e6ed;
    padding: 40px;
    border-radius: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    color: #444;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    font-size: 0.8rem;
    color: #ff8a65;
    letter-spacing: 1px;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(255, 138, 101, 0.1);
    position: absolute;
    top: 10px;
    left: 20px;
}

/* Responsive Mobile */
@media (max-width: 900px) {
    .cta-testimonial-section .container {
        flex-direction: column;
    }
    .cta-box p { max-width: 100%; }
}

.cta-testimonial-section {
    padding: 80px 20px;
    background-color: #ffffff; /* Ta nouvelle couleur de fond */
    font-family: 'Montserrat', sans-serif;
}

.cta-testimonial-section .container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 25px;
    align-items: stretch; /* Pour que les deux blocs aient la même hauteur */
}

/* Bloc de gauche (Ton Orange signature) */
.cta-box {
    background-color: #ff8a65; 
    color: white;
    padding: 50px;
    border-radius: 20px;
    flex: 1.8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Bloc Témoignage (Blanc pur pour trancher avec le gris #eeeeee) */
.testimonial-box {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border: none; /* On enlève la bordure, l'ombre suffit sur le gris */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}




/* 1. SECTION PARENTE : Gère l'image et la position globale */
.newsletter-hero {
    width: 100%;
    height: 100vh; /* Toute la hauteur de l'écran */
    background: url('img/Newsletter.png') no-repeat center center;
    background-size: cover;
    
    display: flex;
    align-items: center; /* Centre verticalement */
    
    /* POSITIONNEMENT HORIZONTAL */
    justify-content: flex-end; /* Envoie tout vers la droite */
    
    /* AJUSTEZ CETTE VALEUR POUR DÉCALER : 0 = bord droit, 100px = décalé */
    padding-right: 350px; 
    
    box-sizing: border-box;
}

/* 2. CONTENEUR : Assure que rien ne bloque le mouvement */
.newsletter-container {
    width: 100%;
    max-width: 700px; /* Longueur de la barre */
    display: flex;
    justify-content: flex-end;
}

/* 3. LA BARRE : Longue, carrée et pro */
.newsletter-bar {
    display: flex;
    background: #ffffff;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-radius: 0; /* Bords droits */
    overflow: hidden;
}

/* 4. CHAMP DE SAISIE */
.newsletter-bar input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 18px 30px; /* Barre haute et pro */
    font-size: 18px;
    outline: none;
    color: #333;
}

/* 5. LE BOUTON VIOLET */
.newsletter-bar button {
    background-color:      #632d79; /* Ton violet */
    color: white;
    border: none;
    padding: 0 60px; /* Bouton large */
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 0;
}

.newsletter-bar button:hover {
    background-color: #ff8a65; /* Ton orange au survol */
}

/* RESPONSIVE : On recentre sur mobile pour que ce soit joli */
@media (max-width: 768px) {
    .newsletter-hero {
        justify-content: center;
        padding-right: 20px;
        padding-left: 20px;
    }
    .newsletter-bar {
        flex-direction: column;
    }
    .newsletter-bar button {
        padding: 20px;
    }
}








/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* SECTION */
.trust-section {
  padding: 70px 20px;
  background: #ffffff
}

/* CONTAINER */
.trust-box {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
   border: 5px solid #f7f7f7; /* <- ajoute cette ligne pour la bordure */

  border-radius: 22px;
  padding: 50px;

    position: relative;
  top: -5px; /* remonte de 30px, tu peux ajuster */
}

/* TEXTE */
.trust-text h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
}

.trust-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 680px;
}

.trust-question {
  margin-top: 28px;
  font-weight: 600;
  color: #666;
}

/* LOGOS */
.trust-logos {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 35px;
}

.trust-logos img {
  width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* TABLETTE */
@media (max-width: 992px) {
  .trust-box {
    padding: 35px 25px;
  }

  .trust-text h2 {
    font-size: 30px;
  }

  .trust-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .trust-logos img {
    max-height: 55px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .trust-box {
    padding: 30px 20px;
  }

  .trust-text h2 {
    font-size: 24px;
  }

  .trust-text p {
    font-size: 15px;
  }

  .trust-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .trust-logos img {
    max-height: 45px;
  }
}


.trust-section {
  padding-top: 5px;
}

.trust-box {
  margin-top: 5px;
}


.cta-testimonial-section {
    width: 100%;
    background-color: #ffffff; /* Ou la couleur de ton choix */
    
    /* LE SECRET POUR MONTER : Marge négative en haut */
    margin-top: -2px; 
    
    /* On ajoute du padding pour que le contenu ne soit pas écrasé */
    padding: 50px 0;
    
    position: relative;
    z-index: 10; /* Pour passer au-dessus ou juste en dessous proprement */
}

/* Si tu veux que le rectangle de confiance et cette section se touchent presque */
.trust-section {
    padding-bottom: 0 !important; /* On enlève l'espace sous le rectangle orange */
}


.trust-logos img {
  max-height: 70px;   /* avant : 60px */
}



.newsletter-hero {
    position: relative; /* nécessaire pour que le texte absolu se place par rapport à ce conteneur */
}

.newsletter-hero button {
    padding: 12px 24px; /* ton style actuel du bouton */
    font-size: 16px;
}

.newsletter-hero::before {
    content: "NEWSLETTER";        /* texte au-dessus */
    position: absolute;
    top: -20px;                   /* distance au-dessus du bouton */
    left: 0;                       /* aligné à gauche du bouton */
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.newsletter-hero {
    position: relative;
}

.newsletter-hero .newsletter-title {
    display: block;       /* s’assure qu’il est sur sa propre ligne */
    position: relative;   /* pour pouvoir le déplacer */
    top: -85px;           /* remonte légèrement le texte */
    font-size: 100px;      /* agrandit le texte */
    font-weight: 700;     /* gras */
    color: #ffffff;
    margin-bottom: 5px;   /* petit espace avant le bouton */
        left: 500px;          /* change cette valeur pour déplacer le texte vers la droite */
    
}


@media (max-width: 600px) {
  .newsletter-hero {
    display: flex;
    flex-direction: column; /* empile verticalement */
    align-items: center;    /* centre horizontalement */
    text-align: center;     /* centre le texte */
    padding: 20px;          /* évite que ça touche les bords */
  }

  .newsletter-title {
    display: block;          /* s’assure qu’il reste visible */
    margin-bottom: 15px;     /* espace sous le titre */
    font-size: 1.5rem;       /* adapte la taille au mobile */
    font-weight: 800;        /* garde le gras */
    color: #000;             /* ou la couleur que tu veux */
  }

  .newsletter-bar {
    width: 100%;              /* prend toute la largeur disponible */
    max-width: 400px;         /* limite la largeur pour que ça ne déborde pas */
  }

  .newsletter-bar input {
    width: 100%;              /* le champ prend toute la largeur */
    padding: 12px 15px;       /* un peu de padding pour respirer */
    font-size: 1rem;          /* texte lisible sur mobile */
  }

  .newsletter-bar button {
    width: 100%;              /* bouton sous le champ, pleine largeur */
    margin-top: 10px;         /* espace entre le champ et le bouton */
    padding: 12px 0;
    font-size: 1rem;
  }
}



.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transform: translateY(-75px); /* <- remonte la grille de 30px */
}


.service-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    border: 5px solid transparent; /* Bordure fixe dès le départ */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    transform: none; /* Pas de mouvement */
}

.service-card:hover {
    border-color: #f58260; /* Change seulement la couleur, pas la taille */
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Même ombre ou légèrement accentuée */
    transform: none; /* Toujours aucune transformation */
}


/* Responsive Tablette */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px; /* espace plus petit pour mieux coller */
    }
}

/* Responsive Mobile */
@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 colonne */
        gap: 15px; /* espace réduit */
    }

    .service-card {
        margin: 0 auto; /* centre la carte */
    }
}




/* ================= SECTION VIDEO ================= */

.video-presentation {
    width: 100%;
    padding: 80px 0;
    background-color: #eee;
    text-align: center;
}

.video-header h2 {
    font-size: 3rem;
    font-weight: 1000;
    text-transform: uppercase;
    color: #2e2d2f;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.video-header h2 span {
    color: #512264;
}

.video-container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    height: 650px;
    border-radius: 25px;
    overflow: hidden;
    /* Ombre supprimée ici */
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-play-btn {
    width: 90px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.youtube-play-btn:hover {
    transform: scale(1.1);
}

.youtube-play-btn svg path.ytp-large-play-button-bg {
    transition: fill 0.3s ease;
    fill: #FF0000; /* Rouge YouTube par défaut */
}

.youtube-play-btn:hover svg path.ytp-large-play-button-bg {
    fill: #ff8a65; /* Ton orange au survol */
}

@media (max-width: 768px) {
    .video-header h2 { font-size: 1.8rem; }
    .video-container { height: 350px; }
    .youtube-play-btn { width: 70px; }
}


/* Style pour l'écran noir après le clic */
.video-container.error-state {
    background-color: #000 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ccc;
    font-family: sans-serif;
    text-align: center;
    padding: 20px;
}

.video-container.error-state .video-placeholder {
    display: none; /* Cache l'image de fond */
}

.error-message {
    display: none; /* Caché par défaut */
}

.video-container.error-state .error-message {
    display: block;
}

.error-message i {
    font-size: 50px;
    margin-bottom: 20px;
    display: block;
}



/* ================= SECTION CTA RESPONSIVE ================= */

.cta-banner-section {
    padding: clamp(40px, 8vw, 80px) 20px;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
}

.cta-purple-card {
    background-color: #632d79;
    width: 100%;
    max-width: 1200px;
    border-radius: clamp(20px, 4vw, 40px);
    padding: clamp(30px, 6vw, 80px);
    display: flex;
    flex-direction: column;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.cta-text {
    flex: 1;
    color: #ffffff;
    text-align: left;
}

.cta-text h3 {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-text p {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.5;
    opacity: 0.9;
    max-width: 550px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-end;
}

.btn-rdv, .btn-tarifs {
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-rdv {
    background-color: #ff8a65;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-tarifs {
    background-color: #ffffff;
    color: #ff8a65;
}

/* --- ADAPTATION TABLETTE (992px) --- */
@media (max-width: 992px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-text {
        text-align: center;
    }

    .cta-text p {
        margin: 0 auto;
    }

    .cta-buttons {
        justify-content: center;
        width: 100%;
    }
}

/* --- ADAPTATION MOBILE (600px) --- */
@media (max-width: 600px) {
    .cta-purple-card {
        padding: 40px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-rdv, .btn-tarifs {
        width: 100%; /* Les boutons prennent toute la largeur sur petit mobile */
        justify-content: center;
    }
    
    .cta-text h3 {
        font-size: 20px;
    }
}



.filter-item {
    color: #333333; /* Ta couleur par défaut */
    cursor: pointer;
    transition: all 0.3s ease;
    
    /* AJOUT DU GRAS ICI */
    font-weight: 700; 

}



/* --- GRILLE DES PROJETS --- */
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 15px;
}

/* --- LA CARTE --- */
.project-card {
    position: relative;
    flex: 0 1 calc(33.33% - 10px); 
    height: 320px;
    overflow: hidden;
    background-color: #222;
    cursor: pointer;
}

/* --- L'IMAGE (Zoom) --- */
.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Zoom fluide */
}

/* --- L'OVERLAY (Changement de couleur) --- */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Voile noir transparent par défaut */
    background: rgba(0, 0, 0, 0.5); 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease; /* Transition pour la couleur */
    z-index: 2;
}

/* --- EFFETS AU SURVOL (HOVER) --- */

/* 1. L'image zoom */
.project-card:hover img {
    transform: scale(1.15); /* Zoom un peu plus marqué */
}

/* 2. L'overlay passe au orange #ff8a65 */
.project-card:hover .project-overlay {
    /* On utilise ta couleur avec une opacité de 0.85 pour voir encore un peu l'image derrière */
    background: rgba(255, 138, 101, 0.85); 
}

/* 3. Le texte peut grossir un peu aussi */
.project-name {
    color: #ffffff;
    font-family: 'Lexend Zetta', sans-serif !important;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    line-height: 1.4;
    transition: transform 0.4s ease;
}

.project-card:hover .project-name {
    transform: scale(1.05); /* Le texte ressort un peu plus */
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .project-card { flex: 0 1 calc(50% - 10px); height: 300px; }
}
@media (max-width: 600px) {
    .project-card { flex: 0 1 100%; height: 250px; }
}





.marque-design {
  position: relative;
  display: inline-block; /* Important pour que le trait suive le mot */
  z-index: 1;
}

.marque-design::after {
  content: "";
  position: absolute;
  left: -2%;        /* Déborde légèrement à gauche */
  bottom: 0%;       /* Ajusté pour être sous le texte */
  width: 105%;      /* Un peu plus large que le mot */
  height: 0.4em;    /* L'épaisseur s'adapte à la taille du texte (0.4 de la hauteur) */
  background-color: #f18763; /* Jaune designer */
  z-index: -1;      /* Passe derrière les lettres */
  transform: rotate(-1.5deg); /* L'effet "fait main" */
  border-radius: 3px;
  bottom: -13%

}

/* Ce code descend tout le bloc (titre + trait) en même temps */
.hero-left h1 {
    transform: translateY(150px); /* Augmente ce chiffre (ex: 40px) pour descendre plus bas */
}

/* Le trait reste attaché au mot et descend avec lui */
.marque-design {
    position: relative;
    display: inline-block;
}

.marque-design::after {
    content: "";
    position: absolute;
    left: -2%;
    bottom: -15%; /* Position du trait sous les lettres */
    width: 104%;
    height: 0.35em;
    background-color: #f18763;
    z-index: -1;
    transform: rotate(-1.5deg);
    border-radius: 2px;
}



#scroll-progress {
  position: fixed;
  top: 0;        /* 👈 en haut */
  left: 0;
  bottom: auto; /* 👈 enlève le bas */
  width: 0%;
  height: 7px;
  background: #f18763;
  z-index: 999999;
}






/* On maitrise */

.maitrise-section {
  position: relative;
  height: 45vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
}

/* VIDEO BACKGROUND */

.maitrise-section video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}




/* OVERLAY */

.maitrise-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
}

/* CONTENT */

.maitrise-content {
  position: relative;
  max-width: 750px;
  padding: 0 20px;
}

.maitrise-content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 10px;
}

.accent {
  display: block;
  font-size: 52px;
  font-weight: 700;
  color: #f18763;
  font-family: 'Comic Sans MS', cursive;
  margin-bottom: 20px;
}

.maitrise-content p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .maitrise-content h2 {
    font-size: 34px;
  }

  .accent {
    font-size: 38px;
  }
}


