/* ============================================================
    VARIABLE & BASE
============================================================ */
   :root {
    --primary: #0047ff;
    --shadow : 1px 1px 1px rgba(0, 0, 0, 0.199);
    --nav-h  : 64px;
    --max-w  : 1400px;
    --radius-btn : 30px;
    --radius : 9px;
  
    /* Footer palette */
    --footer-bg  : #040505;
    --footer-text: #f3f4f6;
    --footer-link: #cbd5e1;
  }
  
  *, *::before, *::after { box-sizing:border-box; }
  
  body{
    margin:0;
    font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
    color:#000;
    background:#f9fafb;
  }

  .primary-section {padding:4rem 1rem;}
  
  /* Helper container (optional for new sections) */
  .container{max-width:var(--max-w);margin:0 auto;padding:0 1rem;}
  
  .container-legales { max-width:var(--max-w); margin: 50px auto;padding:5px 1rem; }
 
 
  /* Skip-link 
  .skip-link{
    position:absolute;top:-40px;left:0;z-index:100;
    background:#fff;color:#000;padding:8px 12px;
    transition:top .2s ease;
  }
  .skip-link:focus{top:0;}*/




/* BOUTONS */


  .btn-primary {
    margin:25px 0;
    display:inline-block;padding:0.7rem 1rem;
    background:var(--primary);color:#fff;border-radius:var(--radius-btn);font-weight:600;
    text-decoration:none;transition:opacity .2s; border:2px solid var(--primary);
  }


  .btn-primary:hover,.cta-btn:hover{ background:#1521ffcb}
  .btn-primary.small{padding:.5rem 1rem;}
  .btn-outline{
    display:inline-block;padding:0.7rem 1rem; border:2px solid var(--primary);
    border-radius:var(--radius-btn);color:var(--primary);font-weight:600;text-decoration:none;
    transition:background .2s,color .2s;
  }
  .btn-outline:hover{background:var(--primary);color:#fff;}



 p {
   /* justification propre */
  line-height:1.6;
  /* césure automatique des mots */
  hyphens: auto;           /* standard */
  -webkit-hyphens: auto;   /* Safari/Chrome */
  -ms-hyphens: auto;       /* IE/Edge */

  /* gestion des mots trop longs */
  overflow-wrap: break-word;
  word-wrap: break-word;   /* ancien nom */
  word-break: break-word;   /* meilleure compatibilité pour couper */
}

/* pour les navigateurs plus anciens qui n'ont pas hyphens */
@supports not (hyphens: auto) {
  .paragraphes {
    /* couper les mots et ajouter "…" si nécessaire */
    word-break: break-all;
  }
}


/* ============================================================
     TEXT DECORATION
============================================================ */
  
.div_title_text { padding: 10px 5px;}

.div_title_text p {color:var(--primary); font-weight: bold;
}

.div_title_text h2 {
 margin: -5px 5px 20px 0;font-size:1.75rem;font-weight:700;
}

  .section-eyebrow { color:var(--primary); font-weight: bold;
 }


  .adv-item{border-left:2px solid #e5e7eb;padding:.75rem 0 .75rem 1.25rem;}
  .adv-item + .adv-item{margin-top:.5rem;}
  .adv-item h3{margin:0;font-size:1rem;font-weight:600;}
  
  .adv-item.active{border-color:var(--primary);}
  .adv-item.active h3{color:var(--primary);}

  
  @media(max-width:768px){
    .adv-illustration img{width:280px;height:280px;}
  }


/* ============================================================
     ZONE ICON
============================================================ */

.iconbox_line {
margin-top:25px;
}
.iconbox_list {
  display: flex;
  flex: 1 1 100%;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  margin: 0;
}

.iconbox_item {
  display: flex;
  align-items: flex-start;
  max-width: 45%;
  text-align: left;
}

.iconbox_icon {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  flex-shrink: 0;
}

.iconbox_content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.iconbox__content strong {
  font-weight: 700;
}


/* Responsive */
@media (max-width: 768px) {
  .iconbox__list {
    flex-direction: column;
    align-items: center;
  }
  .iconbox__item {
    margin-bottom: 1.5rem;
    max-width: none;
  }
}


/* ============================================================
     MENU PRINCIPAL NAVIGATION
============================================================ */

#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  background: #f9fafb;
  box-shadow: var(--shadow);
  z-index: 50;
}
.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  padding: 2vh;
  width: 25vh;
  height: auto;
  border: 3px solid white;
  border-radius: 200px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger .bar {
  width: 25px;
  height: 35px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  padding: 1rem;
}
#mobile-menu.mobile-menu.active {
  display: flex !important;
}


@media (max-width: 768px) {
  #desktop-menu { display: none; }
  .hamburger { display: flex; }
}

@media (min-width: 769px) {
  #mobile-menu {
    display: none !important;
  }
}



/* ============================================================
     BANNIERE CLIENT
============================================================ */
  .banner{
    position:relative;min-height:45rem; 
    display:flex;align-items:center;justify-content:flex-start;padding:0 5%;color:#fff;text-align:left;
  }
  .banner::before{
    content:"";position:absolute;inset:0;
    background:linear-gradient(135deg,rgba(0, 0, 0, 0.781) 0%, rgba(0, 0, 0, 0.384) 100%);z-index:0;
  }
  .banner-content{position:relative;max-width:750px;}
  .banner-content h1 {font-weight:800;margin:0 0 .75rem;}
  .banner-content h2 {font-weight:600;margin:0 0 .75rem;}
  .banner-content p {margin:1rem 0px;line-height:1.5;max-width:660px;}
  
  @media(max-width:640px){
    .banner-content h1{font-size:1rem;}
    .banner-content h2{font-size:3rem;}
  .banner::before{background:linear-gradient(135deg,rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.678) 100%);z-index:0;}
  }
  @media(min-width:768px){
    .banner-content h1{font-size:1.5rem;}
    .banner-content h2{font-size:3.7rem;}

  }
  


/* ============================================================
     SECTION IMAGE / TEXTE
============================================================ */

.imgtext-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.imgtext-text {
  flex: 1 1 320px;
  max-width: 850px;
}

.imgtext-text p {
  
 margin-top:.5rem;line-height:1.6;

}
.imgtext-image {
  position: relative;
  flex: 1 1 320px;
  max-width: 650px;
}
.imgtext-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;

}


@media (max-width: 768px) {
  .imgtext-inner { flex-direction: column; }
  .imgtext-text, .imgtext-image { max-width: 100%; }
}




/* ============================================================
     AUTORITE
============================================================ */

     
.features-final{
  padding:4rem 1rem;
  background:#ffffff;
  text-align:center;
}
.features-final .features-title{
  font-size:2rem;
  font-weight:700;
  margin-bottom:2rem;
}

.features-wrap{
  max-width:var(--max-w);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem;
}

/* --- Empile les cartes quand l’écran devient étroit --- */
@media(max-width:640px){
  .features-wrap{grid-template-columns:1fr;}
}

.feature-card{
  text-align:center;
  display:flex;
  flex-direction:column;
  transition:transform .25s;
}
.feature-card:hover{transform:translateY(-4px);}

.thumb{
  display:flex;
  align-items:center;
  justify-content:center;
}

.thumb img{
  width:40%;
  height:100%;
  object-fit:contain;
  border-radius:8px;
}

.feature-card h3{
  font-size:1.125rem;
  font-weight:700;
}

.feature-card a{color:var(--primary);text-decoration:none;}
.feature-card a:hover{text-decoration:underline;}

.features-cta{margin-top:2rem;}

.text-confiance{padding:10px;}

  

/* ============================================================
     REALISATIONS
============================================================ */


.works-section h2{
  margin:0 0 2rem;
  font-size:2rem;
  font-weight:700;
}
.works-grid{
  max-width:var(--max-w);        
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(400px,1fr));
  gap:1rem;
}
.work-card{
  display:block;
  border-radius:12px;
  overflow:hidden;
  text-decoration:none;
  color:#000;
  transition:transform .3s ease;
}
.work-card:hover{transform:scale(1.05);}

.work-card .thumb{
  aspect-ratio:16/9;               /* miniature horizontale */
  background-size:cover;
  background-position:center;
  transition:transform .3s ease;
  border-radius: 8px  8px 0px 0px;
}

.work-card .thumb
.work-info {

  margin:20px 0px;
}

.work-info h3{
  margin:.25rem 0 .5rem;
  font-size:1.125rem;
  font-weight:700;
}
.work-info p{
  margin:10px;
  font-size:.9rem;
  line-height:1.5;
}

.sitetype {
  text-transform: capitalize;
  background: rgba(0, 0, 0, 0.11);
  padding: 5px 10px;
  border-radius: var(--radius-btn);
  margin-bottom:25rem;
 
}
/* Mobile : carte pleine largeur */
@media(max-width:480px){
  .works-grid{grid-template-columns:1fr;}
}


  /* ============================================================
     TÉMOIGNAGES
     ============================================================ */
  .testimonials-section{padding:4rem 1rem;background:#f9fafb;}
  .testimonials-inner{
    max-width:var(--max-w);margin:0 auto;
    display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem;
  }
  .testimonial{
    min-height:220px;display:flex;flex-direction:column;justify-content:space-between;
    padding:1.25rem;border-radius:8px;background:#fff;box-shadow:var(--shadow);
    opacity:0;transform:translateY(15px);transition:opacity .6s ease,transform .6s ease;text-align:left;
  }
  .testimonial.visible{opacity:1;transform:translateY(0);}
  .stars{color:#fdd663;font-size:1.125rem;}
  .testimonial-text{flex:1;}
  .testimonial-author{font-weight:600;;margin-top:.75rem;align-self:flex-end;white-space:nowrap;}

  .testimonial-author::before {
  content: "";
  display: inline-block;
  background-size: 100%;
  margin: 0px 10px -5px 0px;
  width: 20px;
  height: 20px;
  background-image: url(/medias/icons/google.png);
}




/* ============================================================
     BLOC CTA & FOOTER
============================================================ */



/* ===== Bannière SEO avec vidéo (centrée & responsive) */

.seo-banner {
  margin: 2rem auto;
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  min-height: 300px;
  max-width: var(--max-w);
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Vidéo arrière-plan */
.seo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay texte au-dessus */
.seo-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #000;
  padding: 2rem 1rem;
  border-radius: 16px;
}

.seo-overlay h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}
@media (min-width: 640px) {
  .seo-overlay h2 { font-size: 2rem; }
}

/* Bouton CTA */
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: var(--radius-btn);
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.4);
}






  
/* ============================================================
     GRILLE TARIFAIRE
============================================================ */

.pricing-grid {
  display: grid;
  /* une colonne minimum de 280px, et autant de colonnes que possible */
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 20px;
  width: 100%;
  padding: 5px;
}

.options {
  padding: 20px;
}

.pricing-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  flex: 1;
  position: relative;
}
.label-ordinary {
  background-color: #e1e1f1;
  color: #2a2b32;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
}

.pricing-card.popular {
  border: 1px solid var(--primary);
}

.label-popular {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
}


.price {
  color: #2a2b32;
  font-size: 48px;
  font-weight: bold;
  margin: 5px 0;
  text-align:center;
}

.price .ttc {
  font-size: 16px;
  color: #000;
}

.red {
  color: red;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 15px;
}

.prixbarre {
  text-decoration: line-through;
  font-size: 22px;
  margin-bottom: 15px;
}


.btnprice {
  display: block;
  text-align: center;
  background-color: #e1e1f1;
  color: #2a2b32;
  padding: 10px;
  border-radius: var(--radius-btn);
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 15px;
}

.btnprice:hover {
  background-color: var(--primary);
  color: white;
}

.btnprice-popular {
  display: block;
  text-align: center;
  background-color: var(--primary);
  color: white;
  padding: 10px;
  border-radius: var(--radius-btn);
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 15px;
}

.btnprice-popular:hover {
 opacity:.9;}


.features {
  list-style: none;
  padding: 5px;
  font-size: 14px;
}

.features li {
  margin-bottom: 10px;
}


.inclus {
  background: #f7f8fb;
  padding: 10px;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 13px;
}

.green {
  color: #06d656;
  font-weight: bold;
}


  
/* ============================================================
     FAQ
============================================================ */
  
.faq {
  width: 100%;
  max-width: 1270px;
  padding: 2.4rem 1rem;
  margin: 70px auto;
}

.faq-item {
  background-color: #f7f7f8;
  border: 1px solid #ddd;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  text-align: left;
  background-color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
}

.faq-question:hover {
  color: #fff;
  background-color: #151FFF;
  font-weight: 600;
}

.faq-item.active .faq-question {
  color: #fff;
  background-color: var(--primary);
  font-weight: 600;
}


.faq-question::after {
  content: "▼";
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}


.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 7px 20px; /* Padding horizontal constant */
  background-color: white;
}


.faq-answer p {
  margin: 15px 0;
  color: #2a2b32;
  font-size: 16px;

}

.faq-answer a {
  color: #0077ff;
  text-decoration: underline;
}


.faq-item.active .faq-answer {
  padding: 15px 20px;
}



/* ============================================================
     PROCEDURE
============================================================ */

.levels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.level-card{background:#f9fafb;border-radius:8px;padding:1rem;box-shadow:var(--shadow); display:flex;flex-direction:column;align-items:center;min-height:220px;}

.level-icon{width:48px;height:48px;border-radius:50%;background:var(--primary);color:#fff;font-weight:700; display:flex;align-items:center;justify-content:center;margin-bottom:.75rem;}
  


/* empilement sous 768px */
@media (max-width: 768px) {
  .levels-grid {
    grid-template-columns: 1fr;
  }
}

       
  


/* ============================================================
     PAGE BLOG
============================================================ */


/* ==== A LA UNE */

.blog-page {
  padding: 4rem 1rem;

}

.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.blog-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.blog-post {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.blog-post:hover {
  transform: translateY(-4px);
}
.post-thumb {
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}
.post-content {
  padding: 1.25rem;
}
.post-content h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.meta {
  font-size: 0.85rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}
.excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.read-more {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.read-more:hover {
  text-decoration: underline;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sidebar-box {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 9px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.sidebar-box.highlight {
  background: var(--primary);
  color: #fff;
  text-align: center;
}
.sidebar-box.highlight .btn-secondary {
  margin-top: 1rem;
}
.sidebar-box h4,
.sidebar-box h5 {
  margin-top: 0;
}
.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-list li {
  margin-bottom: 0.5rem;
}
.sidebar-list a {
  text-decoration: none;
  color: var(--primary);
}
.sidebar-list a:hover {
  text-decoration: underline;
}
.tag {
  background: rgba(255, 255, 255, 0.2);
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  font-weight: 600;
}

/* Responsive : sidebar passe sous le contenu */
@media (max-width: 768px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    order: -1; /* sidebar passe en dessous */
  }
}





/* ==== ARTICLES */
.blog-section{
  padding:4rem 1rem;
  background:#f9fafb;
  text-align:center;
}
.blog-section h2{
  margin:0 0 2rem;
  font-size:2rem;
  font-weight:700;
}

.blog-grid{
  max-width:var(--max-w);
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
  gap:2rem;
}

.blog-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  box-shadow:var(--shadow);
  text-decoration:none;
  color:#000;
  transition:transform .3s ease;
}
.blog-card:hover{transform:translateY(-4px);}

.blog-card .thumb{
  aspect-ratio:16/9;
  background-size:cover;
  background-position:center;
  transition:transform .3s ease;
}
.blog-card:hover .thumb{transform:scale(1.05);}

.blog-info{padding:1.25rem;text-align:left;}
.blog-info h3{
  margin:.25rem 0 .5rem;
  font-size:1.25rem;
  font-weight:700;
}
.blog-info .meta{
  margin:0 0 .75rem;
  font-size:.8rem;
  color:#6b7280;               /* gris neutre */
}
.blog-info .excerpt{
  margin:0 0 1rem;
  line-height:1.6;
  font-size:.9rem;
}
.read-more{
  font-weight:600;
  color:var(--primary);
  font-size:.9rem;
}
.read-more:hover{text-decoration:underline;}

/* Mobile : une colonne */
@media(max-width:480px){
  .blog-grid{grid-template-columns:1fr;}
}


/* ============================================================
     ARTICLE
============================================================ */

    .page {
      background: #fff;
      max-width: 1000px;
      margin: auto;
      padding: 40px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      position: relative;
    }

.img-article {
 width:100%;
 height:100%;
}

    .hero {
      width: 100%;
      height: auto;
      display: block;
      margin-bottom: 1.5em;
    }
   .paragraphes {
  column-count: 2;
  column-gap: 40px;
  text-align: justify;
  line-height: 1.6;
  /* éviter qu’une pull-quote soit coupée sur deux colonnes */
  break-inside: avoid-column;
}

.pull-quote {
  border-left: 4px solid #ccc;
  margin: 1em 0;
  padding-left: 16px;
  font-size: 1.1em;
  font-style: italic;
  /* idem : ne pas scinder la citation sur deux colonnes */
  break-inside: avoid-column;
}

/* First letter styling */
.paragraphes p:first-of-type::first-letter {
  float: left;
  font-size: 3em;
  line-height: 1;
  margin-right: 8px;
  font-family: 'Times New Roman', serif;
}

/* Passage à une seule colonne en dessous de 768px */
@media (max-width: 768px) {
  .paragraphes {
    column-count: 1;
    column-gap: 20px;      /* on réduit l’écart pour les petits écrans */
  }
}

  

  

/* ============================================================
     CONTACT 
============================================================ */

    /*CONTACT */

    .hero h1{
    font-size:clamp(2.4rem,5vw,3.5rem);
    font-weight:800;
    margin-bottom:1rem;
}
.hero p{font-size:1.2rem;margin-bottom:2rem;}
.btn{
    background:var(--primary);color:#fff;border:none;
    padding:1rem 2rem;border-radius:999px;font-weight:600;
    cursor:pointer;transition:background .25s;box-shadow:0 4px 8px rgb(0 0 0 / .15);
}
.btn:hover{background:#049b8c}
.section{
    padding:5rem 2rem;max-width:1100px;margin:0 auto;
}
.section h2{font-size:2.2rem;font-weight:700;margin-bottom:1.5rem;text-align:center;}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:2rem;margin-top:2rem;}
.card{
    background:#fff;border-radius:var(--radius);box-shadow:0 4px 14px rgb(0 0 0 / .08);
    overflow:hidden;display:flex;flex-direction:column;transition:transform .25s;
}
.card:hover{transform:translateY(-6px)}
.card img{width:100%;height:170px;object-fit:cover;}
.card .content{padding:1.2rem;flex:1}
.card .content h3{font-size:1.3rem;margin-bottom:.6rem;}

.alert-success,
.alert-error{
  margin-top:1.5rem;padding:1rem;border-radius:var(--radius);
  font-weight:600;text-align:center;
}
.alert-success {background:#e6fffa;color:#047857;}
.alert-error  {background:#fee2e2;color:#b91c1c;}


/* style.css */

/* bloc commun à toutes les alertes */
#responseMessage {
  padding: 1rem;
  border-radius: var(--radius, .5rem);
  margin-top: 1rem;
  font-weight: 500;
}

/* succès */
.success {
  background: #dff0d8;
  color: #2e6e35;
  border: 1px solid #c8e0c1;
}

/* erreur */
.error {
  background: #f8d7da;
  color: #842029;
  border: 1px solid #f5c2c7;
}


.btn-whatsapp {
  display: inline-block;
  text-decoration: none;
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1rem;
  margin-left:10px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s ease;
}

.btn-whatsapp:hover {
  background: #1ebe57;
}

.btn-whatsapp-text::before {
  content: "";
  display: inline-block;
  background-size: 100%;
  margin: 0px 10px -5px 0px;
  width: 25px;
  height: 25px;
  background-image: url(/medias/icons/whatsapp.png);
}


/* ===== FOOTER */

  .site-footer{background:var(--footer-bg);color:var(--footer-text);padding:3rem 1rem 2rem; min-height: 300px;;}
  .footer-inner{
    max-width:var(--max-w);margin:0 auto;
    display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1rem;
  }

  .footer-col h3{margin:0 0 .75rem;font-size:1.125rem;color:#fff;}
  .footer-col ul,.footer-col address{margin:0;padding:0;list-style:none;line-height:1.8;font-style:normal;}
  .footer-col a{color:var(--footer-link);text-decoration:none;transition:color .2s;}
  .footer-col a:hover{color:#fff;}
  .about p{line-height:1.6;margin:0;max-width:340px;}
  .footer-bottom{
    margin-top:2rem;text-align:center;font-size:.875rem;
    border-top:1px solid rgba(255,255,255,.1);padding-top:1rem;
  }
  @media(max-width:600px){
    .footer-inner{text-align:left;}
   ;}
  
 

/*FOOTER */

  footer {
      background: #12121e;
      color: #fff;
      font-family: sans-serif;
      padding: 2rem 1rem;
    }

    /* 1ère ligne : social + app stores */
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .social-icons a {
      margin-right: 1rem;
      font-size: 1.25rem;
      color: #fff;
      text-decoration: none;
    }
    .app-buttons a {
      display: inline-block;
      margin-left: 1rem;
      color:white
    }
    .iconfooter {
      width:40px;
      height: 40px;
    }

    /* séparateur fin */
    .footer-divider {
      height: 1px;
      background: #333;
      margin: 2rem 0;
    }

    /* 2ème ligne : 4 colonnes */
    .footer-nav {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
    .footer-nav h4 {
      margin-bottom: 0.75rem;
      font-size: 1rem;
      font-weight: bold;
    }
    .footer-nav li + li {
      margin-top: 0.5rem;
    }
    .footer-nav a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-nav a:hover {
      color: #fff;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        text-align: center;
      }
      .social-icons {
        margin-bottom: 1rem;
      }
      .app-buttons {
        margin-bottom: 1rem;
      }

      .footer-nav {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }