/* ============================================
   DAVINA BLUM — style.css
   ============================================ */

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --teal: #63C0B7;
  --red: #E30B1D;
  --dark: #2F2D2D;
  --light: #F7F5F2;
  --mid: #444;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Bellota Text", sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  font-style: normal;
  background: var(--light);
  color: var(--dark);
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: var(--dark);
  border-bottom: 2px solid var(--teal);
  font-weight: 500;
  word-break: break-all;
}
a:hover,a:focus {
  border-bottom: none;
}
a:active{
  color: var(--mid);
}
:focus-visible {
  outline: 2px dotted currentColor;
  outline-offset: 3px;
  border-radius: 2px;
}
.color-primary {
  color: var(--teal);
  fill: var(--teal);
}
.color-secondary {
  color: var(--red);
  fill: var(--red);
}
.color-text {
  color: var(--dark);
}
.color-mid {
  color: var(--mid);
  fill: var(--mid);
}
.text-left{
  text-align: left;
}
h2.section-title {  
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.3;
  margin-bottom: 50px;
}
h3.section-title {
  font-family: "Mitr", sans-serif;  
  font-weight: 400; 
  margin-top: 15px;
  line-height: 1.2;
}
.divider {
  width: 40px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 48px;
  animation: fadeIn 0.6s ease 0.35s both;
}
.highlight {
  background: linear-gradient(var(--teal));
  padding: 0 4px; 
}
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 50px;
}
ul > li{
  list-style: none;
}
.mb-0{
  margin-bottom: 0;
}

.section-label{
  font-family: "Mitr", sans-serif; 
  text-transform: uppercase;
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.7px;
  background-color: #fff;
  display: inline-flex;
  padding: 0 4px;
}


/* ANIMATION */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label, .hero-intro, .contact-intro, .divider {
  animation: fadeUp 0.6s ease both;
}

.hero-intro, .contact-intro { animation-delay: 0.2s; font-size: 1.3rem; line-height: 1.2; padding: 30px 0;}
.divider { animation-delay: 0.3s; }
/* ============================================
   FONTS
   ============================================ */

.bellota-text-light {
  font-family: "Bellota Text", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.bellota-text-regular {
  font-family: "Bellota Text", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bellota-text-bold {
  font-family: "Bellota Text", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.bellota-text-light-italic {
  font-family: "Bellota Text", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.bellota-text-regular-italic {
  font-family: "Bellota Text", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.bellota-text-bold-italic {
  font-family: "Bellota Text", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.mitr-extralight {
  font-family: "Mitr", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.mitr-light {
  font-family: "Mitr", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.mitr-regular {
  font-family: "Mitr", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.mitr-medium {
  font-family: "Mitr", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.mitr-semibold {
  font-family: "Mitr", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.mitr-bold {
  font-family: "Mitr", sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* ============================================
   HEADER
   ============================================ */

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 72px;
  background: var(--light);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

/* Logo / Nom */
a.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1;
  display: flex;
  align-items: center;
  border-bottom: none;
}


/* Nav droite */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Lien Contactez-moi */
a.btn-contact {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    color: var(--dark);
    text-decoration: none;
    display: inline-block;
     transition: color 0.4s ease, padding 0.4s ease;
    z-index: 0;
    padding: 4px 0;
    border-bottom: none;
}

.btn-contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5%;
    background-color: var(--red);
    transition: height 0.4s ease;
    z-index: -1;
}

.btn-contact:hover {
    color: #ffffff;
     padding: 1px 11px 5px;
}

.btn-contact:hover::before {
    height: 100%;
}


/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 7px;
  transition: background 0.2s;
  position: relative;
}

.burger:hover {
  background: rgba(0,0,0,0.05);
}


.burger span {
  display: block;
  height: 2px;
  background: var(--red);
  border-radius: 2px;  
  transform-origin: center;
}

.burger span:nth-child(1) { width: 22px; }
.burger span:nth-child(2) { width: 16px; }
.burger span:nth-child(3) { width: 22px; }

.btn-close-menu{
  position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    color: var(--red);
    box-shadow: none;
    font-size: 3rem;
    border: none;

}

/* ── MENU OVERLAY ── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 2.5rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.35s cubic-bezier(.77,0,.18,1), transform 0.35s cubic-bezier(.77,0,.18,1);
}

.menu-overlay.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.menu-overlay nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.menu-overlay nav a {
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  line-height: 1.5;
  letter-spacing: -0.02em;
  position: relative;
  opacity: 0;
  display: flex;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, color 0.2s;
}

.menu-overlay.open nav a {
  opacity: 1;
  transform: translateY(0);
  border: none;
}

.menu-overlay.open nav a:nth-child(1) { transition-delay: 0.05s; }
.menu-overlay.open nav a:nth-child(2) { transition-delay: 0.10s; }
.menu-overlay.open nav a:nth-child(3) { transition-delay: 0.15s; }
.menu-overlay.open nav a:nth-child(4) { transition-delay: 0.20s; }
.menu-overlay.open nav a:nth-child(5) { transition-delay: 0.25s; }

.menu-overlay nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 0; height: 3px;
  background: var(--teal);
  transition: width 0.3s cubic-bezier(.77,0,.18,1);
}

.menu-overlay nav a:hover{
  color: var(--teal);
}

.menu-overlay nav a:hover::after {
  width: 100%;
}

/* Ligne déco dans le menu */
.menu-footer {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  right: 2.5rem;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}

.menu-footer p {
  font-size: 0.78rem;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-footer .accent-line {
  width: 40px;
  height: 2px;
  background: var(--red);
}

/* ============================================
   CONTENU PRINCIPAL
   ============================================ */

main {
  padding-top: 72px; /* compensation header fixe */
}

/* ── LAYOUT GLOBAL ── */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}
main h1.page-title{
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem 2.5rem;
  background: var(--dark);
  color: #fff;
  display: inline-flex;
  padding: 3px 10px 2px 10px;

}
svg.bg_site{
  opacity: 0.1;
  position: absolute;
  top: 100px;
  left: -224px;
  z-index: -1;
}


/* ── FIL D ARIANE ── */
nav.nav-breadcrumbs{
  margin-left: 2.5rem;
}
.B_crumbBox {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.B_crumbBox li {
    display: flex;
    align-items: center;
}
.B_crumbBox li::after{
  content: ' >';
  margin-left: 10px;

}
.B_crumbBox li:last-child::after{
 content: '';
}

.B_crumbBox a {
    color: var(--dark, #1a1a1a);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: none;
}

.B_crumbBox a:hover {
    color: var(--teal, #63C0B7);
}

/* Page courante */
.B_lastCrumb a {
    color: var(--dark, #1a1a1a);
    pointer-events: none;
}


/* ============================================
   PAGE ACCUEIL
   ============================================ */
.hero {
  height: calc(88vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.5rem;
  padding-left: 300px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  pointer-events: none;
  content: '';
  position: absolute;
  bottom: -181px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(101,192,183,0.12) 0%, transparent 70%);
}

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--dark);
  color: #fff;
  padding: 3px 10px 2px 10px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 4.5rem;
}

.hero p {
  margin-bottom: 3rem;
  margin-top: 1.5rem;
}


.cta-group {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-cta {
  position: relative;
  overflow: hidden;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid;
  padding: 4px 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  transition: color 0.4s ease, padding 0.4s ease;
  z-index: 0;
}

.hero-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5%;
  transition: height 0.4s ease;
  z-index: -1;
}

.hero-cta:hover {
  color: #ffffff;
  padding: 8px 20px;
}

.hero-cta:hover::before {
  height: 100%;
}
/* CTA 1 - rouge */
.hero-cta--web {
  color: var(--red);
  border-color: var(--red);
}
.hero-cta--web::before {
  background-color: var(--red);
}
/* CTA 2 - teal */
.hero-cta--qualite {
  color: var(--teal);
  border-color: var(--teal);
  background: #2F2D2D;
  padding: 0 8px;
}
.hero-cta--qualite::before {
  background-color: var(--teal);
}

/* ============================================
   PAGE ABOUT
   ============================================ */

.apropos-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}


.apropos-text p {
  font-size: 1.4rem;
  color: var(--mid);
  margin-bottom: 24px;
  line-height: 1.5;
}

.apropos-text strong {
  font-family: "Mitr", sans-serif;
  font-weight: 500;
  color: var(--dark);
}
.wrapper_about img{
  max-height: 350px;
  margin-right: 15px;
}
.wrapper_about {
 display: flex;
 align-items: center;
}
 /* Compétences pills */
  .skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2.25rem;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.5s forwards;
  }

  .skill-pill {
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.45rem 1rem;
    border-radius: 100px;
    border: 1.5px solid;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
    cursor: default;
  }

  .skill-pill:hover {
    transform: translateY(-2px);
  }

.skill-pill.teal {
  border-color: var(--teal);
  background: transparent;
}

.skill-pill.teal:hover {
  background: var(--teal);
}

.skill-pill.red {
  border-color: var(--red);
  color: var(--red);
  background: #fff;
}

.skill-pill.red:hover {
  background: #fce8ea;
}

.skill-pill.dark {
  border-color: #ccc;
  color: var(--mid);
  background: transparent;
}

.skill-pill.dark:hover {
  border-color: var(--dark);
  color: var(--dark);
}
 

.reseaux {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.reseaux-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  white-space: nowrap;
}

.reseaux-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
}

.reseaux-links a {
  display: flex;
  align-items: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.reseaux-links a:hover {
  opacity: 1;
}
/* ============================================
   PAGE RGAA
   ============================================ */

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5px;
}

.service-item {
  background-color: #fff;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.service-item::before {
  content: '';
  display: block;
  min-width: 4px;
  height: 100%;
  background: var(--teal);
  align-self: stretch;
}

.service-item p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.5;
}

  /* LIVRABLES */

.livrables-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
  margin-left: 0;
}

.livrables-list li {
  background: var(--teal);
  padding: 20px 24px;
  border-left: 3px solid var(--red);
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  display: flex;
  align-items: center;
  font-weight: 600;
}

  /* TARIF */

  /* CTA SECTION */
  .cta-section {
    background: var(--dark);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 3px solid var(--light);
    color: var(--light);
  }

  .cta-section p {
    font-size: 16px;
    color: var(--light);
    margin-bottom: 40px;
    line-height: 1.7;
  }

  .hero-cta:hover {
    color: #fff;
    padding: 8px 20px;
  }

  .hero-cta:hover::before { height: 100%; }

  .hero-cta--contact {
    color: var(--teal);
    border-color: var(--teal);
  }

  .hero-cta--contact::before { background-color: var(--teal); }
/* ============================================
   PAGE WEB
   ============================================ */

   /* ── OFFRE ── */
    .offre-block {
      background: var(--white);
      border-left: 3px solid var(--teal);
      padding: 2.5rem 2.5rem 2.5rem 2.8rem;
      margin-bottom: 4rem;
      border-radius: 0 8px 8px 0;
      box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    }
 
    .offre-block p {     
      color: var(--mid);
      line-height: 1.8;
      margin-bottom: 1rem;
    }
 
    /* ── SERVICES GRID ── */
    .services-section { margin-bottom: 4rem; }

    .service-icon {
      width: 32px; height: 32px;
      border-radius: 6px;
      background: var(--teal);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }
 
    .service-icon svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

 
    .service-item p em {
      font-style: normal;
      font-size: 0.78rem;
      color: var(--teal-dark);
      display: block;
      margin-top: 2px;
    }
 
    /* ── MODALITÉS ── */
    .modalites-section { margin-bottom: 4rem; }
 
    .modalites-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-top: 2rem;
    }
 
    @media (max-width: 640px) {
      .modalites-cards { grid-template-columns: 1fr; }
    }
 
    .modalite-card {
      background: var(--white);
      border-radius: 10px;
      padding: 2.2rem;
      box-shadow: 0 2px 20px rgba(0,0,0,0.05);
      position: relative;
      overflow: hidden;
    }
 
    .modalite-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
    }
 
    .modalite-card.complete::before { background: var(--teal); }
    .modalite-card.integration::before { background: var(--red); }
 
 
    .modalite-card p {
      font-size: 0.9rem;
      color: var(--mid);
      line-height: 1.7;
    }
 
    .modalite-tag {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 0.2rem 0.6rem;
      border-radius: 3px;
      margin-bottom: 1rem;
    }
 
    .complete .modalite-tag { 
      background: #e8f8f7; 
      color: var(--teal-dark); 
    }
    .integration .modalite-tag { 
      background: #fce8ea; 
      color: var(--dark); 
    }
 
    /* ── AVANTAGES ── */
    .avantages-section { margin-bottom: 4rem; }
 
    .avantages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }
 
    .avantage-card { 
      padding: 2rem 1.8rem;
      border-radius: 10px;
    }
    .avantage-card:nth-child(1) { background: var(--dark); color: #fff; }
    .avantage-card:nth-child(2) { background: #fff; }
    .avantage-card:nth-child(3) { background: var(--teal); }
    .avantage-card:nth-child(4) { background: var(--red); color: #fff; }
 
    .avantage-icon {
      font-size: 1.5rem;
      margin-bottom: 0.8rem;
      min-height: 60px;
    }
 
    .avantage-card h3 {    
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }
 
    .avantage-card p {
      font-size: 1.1rem;     
      line-height: 1.4;
    }
 
    /* ── PROCESSUS ── */
    .processus-section { margin-bottom: 2rem; }
 
    .processus-steps {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0;
      position: relative;
    }
 
    .step {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
      position: relative;
    }
 
    .step-left {
      display: flex;
      flex-direction: column;
      align-items: center;
      flex-shrink: 0;
      width: 48px;
    }
 
    .step-number {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--teal);
      color: var(--white);
      font-size: 1.2rem;
      display: flex; align-items: center; justify-content: center;
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }
 
    .step:last-child .step-number { background: var(--red); color: #fff; }
 
    .step-line {
      width: 2px;
      flex: 1;
      background: #e0e0da;
      min-height: 40px;
    }
 
    .step:last-child .step-line { display: none; }
 
    .step-content {
      background: var(--white);
      padding: 1.5rem 2rem;
      border-radius: 8px;
      margin-bottom: 1rem;
      flex: 1;
      box-shadow: 0 1px 10px rgba(0,0,0,0.04);
    }
 
    .step-content h3 {
      font-weight: 600;
      font-size: 1rem;
      color: var(--dark);
      margin-bottom: 0.4rem;
    }
 
    .step-content p {
      font-size: 0.88rem;
      color: var(--mid);
      line-height: 1.6;
    }


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

/* ── Erreur globale ── */
.form-error {
  background: rgba(227, 11, 29, 0.07);
  border-left: 3px solid var(--red);
  font-size: 0.88rem;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
}

/* ── Groupes de champs ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}


/* ── Inputs & Textarea ── */
.form-group input,
.form-group textarea {
    background: #ffffff66;
    border-bottom: 2px solid var(--teal);
    padding: 0.75rem 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--red);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 11, 29, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
}

/* ── État erreur par champ ── */
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--red);
  background: rgba(227, 11, 29, 0.03);
}

.form-group.has-error input:focus,
.form-group.has-error textarea:focus {
  box-shadow: 0 0 0 3px rgba(227, 11, 29, 0.15);
}

.field-error {
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 400;
}

/* ── Bouton submit ── */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  background: var(--dark);
  border: none;
  border-radius: 2px;
  padding: 0.85rem 1.8rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.btn-submit:focus {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.btn-submit svg {
  transition: transform 0.2s;
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

/* ── Message succès ── */

.merci-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.merci-icon {
  width: 64px;
  height: 64px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: fadeIn 0.6s ease forwards;
}

.merci-icon svg {
  stroke: var(--teal);
}

.merci-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  animation: fadeIn 0.6s ease 0.1s both;
}

.merci-text {
  color: var(--grey);
  margin-bottom: 48px;
  animation: fadeIn 0.6s ease 0.3s both;
}



.services-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
  animation: fadeIn 0.6s ease 0.4s both;
}


.back-home {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s ease;
  animation: fadeIn 0.6s ease 0.6s both;
}

.back-home:hover { color: var(--light); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}



/* ============================================
   PAGE PLAN DU SITE
   ============================================ */


.sitemap li {
    border-bottom: 1px solid #e8e8e8;
}

.sitemap a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    color: var(--dark, #1a1a1a);
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.sitemap a::before {
    content: '›';
    color: var(--teal, #63C0B7);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.sitemap a:hover {
    color: var(--teal, #63C0B7);
    padding-left: 8px;
}

/* Page courante */
.sitemap .active a {
    color: var(--red, #E30B1D);
    pointer-events: none;
}

.sitemap .active a::before {
    color: var(--red, #E30B1D);
}

/* Premier et dernier */
.sitemap .first a {
    font-weight: bold;
}

/* ============================================
   FOOTER
   ============================================ */

#site-footer {
  background: var(--dark);
  color: var(--light);
  height: 12vh;
  padding: 0 2.5rem;
  margin-top: 0;
  display: flex;
  align-items: center;
}

.footer-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr;
  gap: 0 3rem;
  align-items: center;
}

.footer-copy {
  grid-column: auto;
  padding-top: 0;
  border-top: none;
  border-left: 1px solid rgba(247, 245, 242, 0.1);
  padding-left: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--light);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer-baseline {
  font-size: 0.78rem;
  color:var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 2rem;
}

.footer-nav ul li a {
  font-size: 0.85rem;
  color: rgba(247, 245, 242, 0.65);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 300;
}

.footer-nav ul li a:hover {
  color: var(--teal);
}


.footer-a11y {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.a11y-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}
.footer-copy p {
  font-size: 0.75rem;
  color: var(--light);
  letter-spacing: 0.04em;
}



/* ── Responsive ── */
/* Small — ≥ 768px */
@media (min-width: 768px) {
  .container { width: 750px; }
}

/* Medium — ≥ 992px */
@media (min-width: 992px) {
  .container { width: 970px; }
}

/* Large — ≥ 1200px */
@media (min-width: 1200px) {
  .container { width: 1100px; }
}


@media (max-width: 768px) {
  header {
    padding: 0 1.2rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .hero {
    padding: 0 1.2rem 3rem;
    height: auto;
  }
  .hero h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
  a.btn-contact{
    display: none;
  }
  .menu-overlay {
    padding: 0 1.2rem;
  }

  .menu-footer {
    left: 1.2rem;
    right: 1.2rem;
  }
  .wrapper_about img{    
    margin-right: 0;
    margin-bottom: 20px;
    height: 200px;
  }
  .wrapper_about {
    flex-direction: column;
    align-items: flex-start;
  }
  #site-footer {
    padding: 0 1.2rem;
    height: auto;
    padding: 1.5rem 1.2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
  }

  .footer-copy {
    border-left: none;
    border-top: 1px solid rgba(247, 245, 242, 0.1);
    padding-left: 0;
    padding-top: 1rem;
  }
}