/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #fafafa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

.container-centre {
  max-width: 1100px;
  align-items: center;
  text-align: center;
  margin: auto;
  padding: 0 15px;
}

.image-img {
  max-width: 1100px;
  align-items: center;
  text-align: center;
  margin:auto;
  padding: 0 15px;
}



/* HERO */
.hero {
  background: url('/assets/img/hero-bg.jpg') center/cover no-repeat;
  color: #2a7f62;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero h2 {
  font-size: 1.75rem;
}
.hero p {
  font-size: 1.1rem;
}

.hero p2 {
  font-size: 1.5rem;
}

.hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #4b5563;
}

/* ===== BOUTONS ===== */
.cta {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: #10b981;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: #059669;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #10b981;
  color: #10b981;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-secondary:hover {
  background-color: #10b981;
  color: white;
}

/* SECTIONS */
.section {
  padding: 55px 0;
}

.section h1 {
  color: #2a7f62;
  margin-bottom: 15px;
  text-align: center;
}

.section h2 {
  color: #2a7f62;
  margin-bottom: 15px;
}

.section h3 {
  color: #CC3399;
  margin-bottom: 15px;
}

.section h4 {
  color: #e6009a;
  margin-bottom: 15px;
}


.section p {
  margin-bottom: 15px;
}

/* ===== WHO ===== */
.who ul {
  list-style: none;
  max-width: 600px;
  margin: auto;
}

.who li {
  background: white;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ===== WHY ===== */
.why .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.why .grid div {
  background: rgba(42, 127, 98, 0.1);
  border: 2px solid #2a7f62;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ===== PROCESS ===== */
.process ol {
  max-width: 600px;
  margin: auto;
  padding-left: 20px;
}

.process li {
  margin-bottom: 15px;
}

/* ===== LOCATION ===== */
.location p {
  max-width: 700px;
  margin: auto;
  text-align: center;
  color: #4b5563;
}

/* ===== REVIEWS ===== */
.reviews {
  margin-bottom: 40px;
}

.reviews blockquote {
  max-width: 700px;
  margin: 20px auto;
  font-style: italic;
  background: white;
  padding: 20px;
  border-left: 5px solid #10b981;
  border-radius: 10px;
}

/* ===== CTA FINAL ===== */
.cta-final {
  background: #10b981;
  color: white;
  text-align: center;
}

.cta-final h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-final .btn-primary {
  background: white;
  color: #10b981;
}

.cta-final .btn-primary:hover {
  background: #f3f4f6;
}

/* GRID 3 */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width:768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* GRID 2 */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media(min-width:768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===========================
   SCHEMAS
=========================== */

.schema{
  max-width: 800px;   /* largeur maximale du schéma */
  margin: 40px auto;  /* centre horizontalement */
  padding: 0 15px;    /* petite marge sur mobile */
}

.schema img {
  width: 100%;
  height: auto;
  display: block;
}

.schema_500{
  max-width: 500px;   /* largeur maximale du schéma */
  margin: 40px auto;  /* centre horizontalement */
  padding: 0 15px;    /* petite marge sur mobile */
}

.schema_500 img {
  width: 100%;
  height: auto;
  display: block;
}

.arrow{
stroke:#555;
stroke-width:3;
stroke-linecap:round;
opacity:0.8;
marker-end:url(#arrowModern);
}

/* ===========================
   PHOTO PROFILS
=========================== */

.photo-profil {
  display: flex;
  justify-content: center;   /* centre horizontalement */
  margin-bottom: 20px;
}

.photo-profil img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%; /* optionnel */
}

/* MOBILE */
@media (max-width: 900px) {
  .photo-profil img {
    width: 120px;
    height: 120px;
  }
}


/* ===========================
   CARD
=========================== */
.card {
  background: #fff;
  padding: 20px;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card h3 {
  color: #2a7f62;
  margin-bottom: 8px;
}

/* LIST CHECK */
.list-check {
  list-style-type: none;
  padding-left: 0;
}

.list-check li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.list-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2a7f62;
}


/* ===========================
   CARD AVEC FOND
=========================== */
.card-fond {
  background: rgba(42, 127, 98, 0.1);
  padding: 20px;
  border: 2px solid #2a7f62;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.card-fond:hover {
  transform: scale(1.03);
}

.card-fond h3 {
  color: #2a7f62;
  margin-bottom: 8px;
}

/* LIST CHECK */
.list-check {
  list-style-type: none;
  padding-left: 0;
}

.list-check li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.list-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2a7f62;
}

/* ===========================
   CARD AVEC IMAGE
=========================== */
.card-avec-image {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 2px solid #2a7f62;
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden; /* pour que l’image respecte le radius */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* IMAGE : PREND TOUTE LA HAUTEUR */
.card-img {
  flex: 0 0 180px;   /* largeur fixe de l’image */
}

.card-img img {
  width: 100%;
  height: 100%;     /* PREND TOUTE LA HAUTEUR */
  object-fit: cover;
  display: block;
}

/* CONTENU */
.card-content {
  flex: 1;
  padding: 20px;
}

.card-content h3 {
  margin-bottom: 10px;
  color: #2a7f62;
}

.card-content p {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* ===========================
   CARD AVEC IMAGE ET FOND
=========================== */
.card-avec-image-fond {
  display: flex;
  align-items: stretch;
  background: rgba(42, 127, 98, 0.1);
  border: 2px solid #2a7f62;
  border-radius: 8px;
  margin-bottom: 30px;
  overflow: hidden; /* pour que l’image respecte le radius */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

@media (max-width: 900px) {
  .card-avec-image-fond {
    flex-direction: column;
  }
}

/* IMAGE : PREND TOUTE LA HAUTEUR */
.card-avec-image-fond-img {
  flex: 0 0 180px;   /* largeur fixe de l’image */
}

@media (max-width: 900px) {
    .card-avec-image-fond-img {
	display: flex;
	flex: none;
    height: auto;
    max-height: 120px;
    justify-content: center;    /* centre horizontal */
    align-items: center;        /* centre vertical */
    text-align: center;
    padding: 10px;
	min-height: 100px;
  }
}

.card-avec-image-fond-img img {
  width: 100%;
  height: 100%;     /* PREND TOUTE LA HAUTEUR */
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {  
   .card-avec-image-fond-img img {
    width: auto !important;
    max-width: 100%;
    height: auto !important;
    max-height: 100px;
    object-fit: contain;
	display: block;
    margin: 0 auto;
	border-radius: 6px;
  }
}

/* CONTENU */
.card-avec-image-fond-content {
  flex: 1;
  padding: 20px;
}

@media (max-width: 900px) {  
	.card-avec-image-fond-content {
    padding: 15px;
  }
}

.card-avec-image-fond-content h3 {
  margin-bottom: 10px;
  color: #2a7f62;
}

.card-avec-image-fond-content p {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* FORM */
form {
  background: #fff;
  padding: 25px;
  border: 1px solid #e2e2e2;
  border-radius: 7px;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 12px;
  border-radius: 5px;
}

form button {
  background: #2a7f62;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

form button:hover {
  background: #246844;
}

/* ===========================
   TARIFS
=========================== */
.tarifs {
  text-align: center;
}

/* GRILLE 2 COLONNES */
.tarifs-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.tarif-col {
  background: #eaf2ee;
  border: 2px solid #2a7f62;
  border-radius: 10px;
  padding: 30px 20px;
}

/* COLONNE */
.tarif-col h2 {
  color: #e6009a; /* rose */
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.tarif-col small {
  font-size: 0.9rem;
  font-weight: normal;
}

/* LIGNE */
.tarif-col hr {
  width: 70%;
  margin: 10px auto 25px;
  border: none;
  border-top: 2px solid #e6009a;
}

/* TEXTE */
.tarif-col p {
  color: #0033cc; /* bleu */
  font-size: 1.05rem;
  margin-bottom: 22px;
  line-height: 1.4;
}

/* PRIX */
.tarif-col .prix {
  display: block;
  margin-top: 5px;
  font-weight: bold;
  color: #ff0000; /* rouge */
  font-size: 1.2rem;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {

  .tarifs-grid {
    grid-template-columns: 1fr;
  }

  .tarif-col hr {
    width: 100%;
  }
}

/* ===========================
   BLOG
=========================== */

/* CONTENEUR */
.blog-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-top: 40px;
}

@media(min-width:768px) {
  .blog-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CARTE BLOG = BASE SUR .card */
.blog-card {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* HOVER cohérent avec ton site */
.blog-card:hover {
  transform: scale(1.03);
}

/* LIEN */
.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

/* IMAGE (optionnelle) */
.blog-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENU */
.blog-card-content {
  padding: 20px;
}

/* TITRE (reprend ton vert) */
.blog-card-title {
  color: #2a7f62;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* TEXTE */
.blog-card-excerpt {
  margin-bottom: 12px;
  color: #333;
}

/* DATE */
.blog-card-date {
  font-size: 0.85rem;
  color: #666;
}

/* ===========================
   ARTICLE BLOG
=========================== */

.article-header h1 {
  font-size: 2.3rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.article-content h2 {
  margin-top: 50px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e6efe9;
}

.article-content ul {
  list-style: none;
  padding-left: 0;
}

.article-content li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.article-content li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2c7a4b;
  font-weight: bold;
}

.article-content p strong {
  color: #2c7a4b;
}

.info-box {
  background: #f0f7f3;
  border-left: 4px solid #2c7a4b;
  padding: 12px 15px;
  margin: 20px 0;
  border-radius: 6px;
}

.highlight-box {
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
  padding: 15px;
  margin: 25px 0;
  border-radius: 8px;
  font-size: 0.95rem;
}

.intro {
  font-size: 1.15rem;
  background: #f8f9fb;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 25px;
}

.blog-article {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* ===========================
   FIL D'ARIANE
=========================== */
/* WRAPPER */
.breadcrumb-wrapper {
  background: #f8faf9;
  border-bottom: 1px solid #e5e5e5;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.breadcrumb-wrapper .container {
  padding-top: 5px;
  padding-bottom: 5px;
}

/* FIL D’ARIANE */
.breadcrumb {
  font-size: 0.9rem;
  padding: 12px 0;
  color: #777;
}

/* LIENS */
.breadcrumb a {
  color: #2a7f62;
  text-decoration: none;
  font-weight: 500;
}

/* SÉPARATEUR PLUS PRO */
.breadcrumb a::after {
  content: "›";
  margin: 0 8px;
  color: #bbb;
}

/* PAGE ACTUELLE */
.breadcrumb span {
  color: #333;
  font-weight: 500;
}



/* BOUTON RETOUR */
.btn-retour {
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 14px;
  background: #2a7f62;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.btn-retour:hover {
  background: #246844;
}

/* ===========================
   LIENS
=========================== */
p a,
li a {
  color: #2a7ae2;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

p a::after,
li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #2a7ae2;
  transition: width 0.3s ease;
}

p a:hover::after,
li a:hover::after {
  width: 100%;
}

/* ===========================
   CONTACT
=========================== */
.contact-section {
  padding: 60px 20px;
  background: #f9fafb;
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.contact-text h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.contact-text p {
  margin-bottom: 15px;
}

.contact-text .intro {
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-cards {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-3px);
}

.contact-card .icon {
  font-size: 1.5rem;
}

.contact-card .label {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 5px;
}

.contact-card a {
  font-weight: bold;
  color: #2c7a7b;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-image img {
  width: 100%;
  max-width: 350px;
  display: block;
  margin: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-cards {
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 350px;
  }
}

