/* GENERAL A LA PAGE */
html, body {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

/* ===========================
   ANIMATION POUR TOUTES LES SECTIONS
   =========================== */

/* État initial : invisible et légèrement décalé vers le bas */
section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* État visible : complètement visible et à sa position normale */
section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER */

/* CONTENU DU HEADER */
#Logo {
    text-align: center;
    width: 50% ;
    min-width: 150;
    max-width: 500;
}

.navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0.8rem 1.5rem;
  /* margin: auto; */
  background-color: #f5f5f5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.menu {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-left: 2rem;
}

.menu a {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 800;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: #1fcfac;
}

/* Menu burger */
.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

/* Responsive */
@media (max-width: 979px) {
  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f5f5f5;
    position: relative;
    left: 0;
    padding: 1rem 0;
  }
  .menu li {
    text-align: center;
    margin: 1rem 0;
  }
  #menu-toggle:checked + .menu-icon + .menu {
    display: flex;
  }
  .menu-icon {
    display: block;
  }
}

/* Style du HERO */

/* =========================
   HERO - La Tribu Canine
   ========================= */

/* Variables couleurs (modifie ici pour adapter ton thème) */
:root{
  --bg-dark: #000000;         /* hero si fond uni sombre */
  --text-light: #ffffff;
  --accent: #2a7f62;          /* couleur action (vert confiance) */
  --accent-dark: #1a5f48;
  --muted: #6b6b6b;
  --card-bg: rgba(255,255,255,0.95);
  --max-width: 1200px;
  --container-padding: 20px;
  --radius: 8px;
}

/* HERO wrapper (plein écran / section visible tout de suite) */
.hero{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-align: center;
  padding: 60px var(--container-padding);
  box-sizing: border-box;
  overflow: hidden;
  min-height: 40vh;             /* ajuste si tu veux plus/moins de hauteur */
  max-height: 1100px;
  overflow: hidden;         /* important : pour que le background respecte les arrondis */
  background-color: var(--bg-dark); /* fallback si pas d'image */
}


/* Contenu centré et limité en largeur */
.hero .hero-inner{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Texte principal */
.hero h1{
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.05;
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-family: 'Lugrasimo', cursive;
}

.hero h2{
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1.0;
  margin: 0 0 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Sous-titre / accroche */
.hero p.lead{
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin: 0 0 24px;
  line-height: 1.5;
}

/* CTA buttons container */
.hero .cta-row{
  display:flex;
  gap: 12px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 8px;
}

/* Boutons principaux */
.btn{
  display:inline-block;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration:none;
  font-weight:700;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  border: none;
  color: var(--text-light);
}

/* Bouton primaire (appel à l'action) */
.btn--primary{
  background: linear-gradient(180deg,var(--accent),var(--accent-dark));
  box-shadow: 0 6px 18px rgba(42,127,98,0.18);
}

/* Bouton secondaire (mail / info) */
.btn--secondary{
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(4px);
}

/* Hover / active */
.btn--primary:hover{ transform: translateY(-3px); box-shadow: 0 10px 24px rgba(42,127,98,0.22); }
.btn--secondary:hover{ transform: translateY(-2px); background: rgba(255,255,255,0.04); }

/* Focus visible (accessibilité) */
.btn:focus{
  outline: 3px solid rgba(42,127,98,0.24);
  outline-offset: 3px;
}

/* Petite ligne d'info sous le CTA (tel / mail) */
.hero .contact-meta{
  margin-top:14px;
  font-size:0.95rem;
  color: rgba(255,255,255,0.85);
}

/* Card blanche optionnelle (si tu veux un encadré clair sur le hero) */
.hero .card{
  background: var(--card-bg);
  color: #111;
  padding: 18px;
  border-radius: var(--radius);
  display:inline-block;
  text-align:left;
  box-shadow: 0 6px 20px rgba(6,10,15,0.06);
}

/* Responsive : réduire les paddings et empiler */
@media (max-width: 900px){
  .hero{ padding: 56px 18px; min-height: 52vh; }
  .hero h1{ font-size: clamp(1.5rem, 6.5vw, 2.1rem); }
  .hero p.lead{ font-size: 1rem; }
  .btn{ padding: 10px 16px; font-size: 0.975rem; }
}

/* Mobile small : mettre CTA vertical */
@media (max-width: 480px){
  .hero .cta-row{ flex-direction: column; align-items: center; }
  .hero { padding: 40px 14px; }
}

/* Réduire les animations si l'utilisateur préfère */
@media (prefers-reduced-motion: reduce){
  .btn, .btn--primary, .btn--secondary { transition: none; transform: none; }
}

/* Alternatives : variante claire (si tu veux hero clair sur fond blanc) */
.hero--light{
  background: #ffffff;
  color: #111;
}
.hero--light::before{ background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0.9)); }
.hero--light .btn--primary{ color: #fff; }



/* style du cta */
.cta-promo {
  background: linear-gradient(135deg, #ffcc70, #ff9966);
  color: #2b2b2b;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin: 3rem auto;
  max-width: 800px;
  font-family: "Poppins", sans-serif;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cta-subtext {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.cta-button {
  display: inline-block;
  background-color: #2b2b2b;
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: #444;
  transform: scale(1.05);
}

/* ---- Responsive Design ---- */
.cta-promo {
  background: linear-gradient(135deg, #ffcc70, #ff9966);
  color: #2b2b2b;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin: 3rem auto;
  max-width: 800px;
  font-family: "Poppins", sans-serif;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.cta-subtext {
  font-size: 1rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #2b2b2b;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  line-height: 1.3;
  word-break: break-word;
  text-align: center;
  box-sizing: border-box;
}

.cta-button strong {
  font-size: 1.2rem;
  margin-top: 0.3rem;
}

.cta-button:hover {
  background-color: #444;
  transform: scale(1.05);
}

/* ---- Responsive Design ---- */
@media (max-width: 768px) {
  .cta-promo {
    padding: 3rem 1.5rem;
    margin: 2rem 1rem;
  }

  .cta-title {
    font-size: 1.6rem;
  }

  .cta-text {
    font-size: 1rem;
  }

  .cta-subtext {
    font-size: 0.95rem;
  }

  .cta-button {
    display: flex;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 40px;
  }

  .cta-button strong {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .cta-title {
    font-size: 1.4rem;
  }

  .cta-text {
    font-size: 0.95rem;
  }

  .cta-subtext {
    font-size: 0.9rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 0.9rem;
    max-width: 280px;
  }

  .cta-button strong {
    font-size: 1rem;
  }
}



/* zone de css concernant les cours canin sur l'accueil */

.section-cours-savoie h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
}

.section-cours-savoie h2::after {
    content: "";
    display: block;
    width: 200px;
    height: 4px;
    background-color: #D4AF37; /* doré */
    margin: 0.6rem auto 0 auto;
    border-radius: 2px;
}


.section-cours-savoie ul {
    list-style: none;              /* On enlève les puces par défaut */
    padding-left: 0;               /* On enlève le retrait de base */
    margin: 0 auto;                /* Centrer le bloc */
    max-width: 1200px;              /* Largeur lisible */
    text-align: left;              /* Le texte reste naturel */
}

.section-cours-savoie ul li {
    position: relative;            /* Permet d'ajouter une icône avant */
    padding-left: 28px;            /* Décalage du texte à droite de l’étoile */
    margin-bottom: 1.2rem;
    line-height: 1.6;
    text-align: justify;           /* Texte justifié */
    font-size: 1.2em;
}

.section-cours-savoie ul li::before {
    content: "✦";                  /* Petite étoile */
    position: absolute;
    left: 0;                       /* Position à gauche */
    top: 0;
    color: #c59d5f;                /* Or doux (tu peux changer la couleur) */
    font-size: 1.1rem;
    line-height: 1.4;
}


/* zone de css concernant les services */

.section-services h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    position: relative;
}

.section-services h2::after {
    content: "";
    display: block;
    width: 200px;
    height: 4px;
    background-color: #D4AF37; /* doré */
    margin: 0.6rem auto 0 auto;
    border-radius: 2px;
}

.section-services {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
    text-align: center;
}
/* Container des services en grid */
.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colonnes de largeur égale */
    gap: 2rem;                             /* espace entre les cartes */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Carte individuelle */
.service-card {
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}
.service-icon {
    display: block;
    margin: 0 auto 1rem auto; /* centre et espace en bas */
    width: 85%;  /* taille adaptée, tu peux ajuster */
    height: auto; /* conserve les proportions */
    border-radius: 20%;
}
.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center; /* centre le titre */

}

.service-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Boutons spécifiques aux services */
.service-card .btn-service {
    width: auto;             
    padding: 0.8rem 1.6rem;
    margin-bottom: 0.5rem;
    display: inline-block;   
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    background: linear-gradient(180deg, #D4AF37, #c59d5f); /* doré */
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card .btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Responsive : empilement sur tablettes / mobiles */
@media (max-width: 979px) {
    .services-container {
        grid-template-columns: 1fr; /* 1 carte par ligne */
        gap: 1.5rem;
    }
    .service-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* formation et expertise */
.section-formation {
    max-width: 1200px;             /* largeur similaire à Cours canins en Savoie */
    margin: 3rem auto;             /* centrage vertical et horizontal */
    padding: 40px 20px;            /* espacement intérieur */
    text-align: center;             /* texte centré globalement */
}

.section-formation h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 1.2rem;
    position: relative;
}

.section-formation h2::after {
    content: "";
    display: block;
    width: 200px;                   /* ligne dorée comme Cours canins */
    height: 4px;
    background-color: #D4AF37;
    margin: 0.6rem auto 0 auto;
    border-radius: 2px;
}

.section-formation p {
    font-size: 1.2em;               /* un peu plus grand pour la lisibilité */
    line-height: 1.6;
    text-align: justify;            /* texte justifié */
    margin: 0 auto;
    max-width: 900px;               /* limite la largeur du texte */
}


/* SECTION ZONE D'ACTIVITE */
.section-zone-activite {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.zone-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap; /* pour mobile */
}

.zone-villes {
    flex: 1 1 300px;
    min-width: 250px;
}

.zone-villes h2 {
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.zone-villes h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background-color: #D4AF37; /* doré */
    margin: 0.5rem 0 1rem 0;
    border-radius: 2px;
}

.zone-villes p {
    text-align: justify;
    font-size: 1.1em;
    line-height: 1.6;
}

/* SECTION ZONE D'ACTIVITE */
.section-zone-activite {
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

/* Titre centré au-dessus */
.section-zone-activite h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.section-zone-activite h2::after {
    content: "";
    display: block;
    width: 200px;
    height: 4px;
    background-color: #D4AF37; /* doré */
    margin: 0.5rem auto 1.5rem auto;
    border-radius: 2px;
}

.zone-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap; /* pour mobile */
    align-items: center; /* centre verticalement texte et image */

}

.zone-villes {
    flex: 1 1 300px;
    min-width: 250px;
    align-items: center; /* centre verticalement texte et image */
}

.zone-villes p {
    align-items: center; /* centre verticalement texte et image */

    text-align: justify;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Carte */
.zone-carte {
    flex: 1 1 400px;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.zone-carte img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .zone-container {
        flex-direction: column;
    }

    .zone-villes, .zone-carte {
        width: 100%;
        text-align: center;
    }
}



/* =======================
   🌟 STYLE SECTION FAQ
   ======================= */

/* Conteneur général */
.faq-section {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

/* Titre centré */
.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    position: relative;
}

/* Liseré doré sous le titre */
.faq-section h2::after {
    content: "";
    width: 200px;
    height: 4px;
    background-color: #D4AF37;
    display: block;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

/* Chaque bloc FAQ */
.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}

/* Bouton question */
.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    font-size: 1.1rem;
    background: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: background 0.3s ease;
}

/* Icône + ou - via pseudo-élément */
.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 1.3rem;
}

/* Affichage du - quand ouvert */
.faq-question.active::after {
    content: "-";
}

/* Effet hover */
.faq-question:hover {
    background: #f0f0f0;
}

/* Réponse cachée par défaut */
.faq-answer {
    max-height: 0;
    text-align: justify;       /* ← pour être sûr qu’il reste justifié */
    overflow: hidden;
    padding: 0 20px;
    background: #fafafa;
    transition: max-height 0.4s ease;
}

/* Style du texte */
.faq-answer p {
    padding: 15px 0;
    line-height: 1.6;
}

/* 🌟 Étoiles devant les sous-titres dans les paragraphes FAQ */
.faq-answer p strong::before {
    content: "★";           /* Etoile */
    color: #D4AF37;         /* Couleur dorée */
    margin-right: 8px;      /* Espace entre l'étoile et le texte */
    font-size: 1em;         /* Taille identique au texte */
    vertical-align: middle; /* Alignement vertical */
}

*/* =========================
   🌟 FINAL HERO
   ========================= */
.final-hero {
    background-color: #fff;
    color: #2a7f62;
    padding: 60px 20px;
    text-align: center;
    border-radius: 15px;
    border: 2px solid #2a7f62;
    margin: 3rem auto;
    max-width: 900px;
    box-shadow: 0 8px 20px rgba(42,127,98,0.15);
}

.final-hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.final-hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn-final {
    display: inline-block;
    padding: 12px 25px;
    background-color: #D4AF37;
    color: #2a2a2a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-final:hover {
    background-color: #b6932c;
    color: #fff;
    transform: scale(1.05);
}

/* =========================
   🌟 FOOTER
   ========================= */
.footer {
    background-color: #2a7f62;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px 15px 0 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    position: relative;
}

.footer-title::after {
    content: "";
    display: block;
    width: 200px;
    height: 4px;
    background-color: #D4AF37;
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.2s, color 0.2s;
}

.footer-contact:hover {
    transform: translateY(-3px);
    color: #D4AF37;
}

.footer-icon {

    height: 50px;
}

/* Footer partenaires */
.footer-partners p {
    margin: 10px 0 5px 0;
    font-weight: bold;
}

.footer-partners a {
    color: #D4AF37;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s, text-decoration 0.2s;
}

.footer-partners a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-contacts {
        flex-direction: column;
        gap: 15px;
    }

    .btn-final {
        width: 80%;
        max-width: 280px;
    }
}



/* 
=======================================================================
=======================================================================
=======================================================================
==========================EDUCATEUR CANIN==============================
=======================================================================
=======================================================================
======================================================================= */

.section-education {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
    text-align: center;
}

.section-education h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
}

.section-education h2::after {
    content: "";
    display: block;
    width: 200px;
    height: 4px;
    background-color: #D4AF37;
    margin: 0.6rem auto 2rem auto;
    border-radius: 2px;
}

/* Container cartes */
.education-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.education-card {
    background-color: #f8f8f8;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;                 /* <-- Flexbox */
    flex-direction: column;        /* Vertical */
    justify-content: space-between; /* Texte en haut, bouton en bas */
    text-align: left;
    min-height: 280px;             /* Ajuste la hauteur selon besoin */
}


.education-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #2a2a2a;
}

.education-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

.education-card .btn-service {
    display: inline-block;
    background: linear-gradient(180deg, #D4AF37, #c59d5f);
    color: #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.education-card .btn-service:hover {
    transform: translateY(-2px);
}

/* Texte explicatif */
.education-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
    line-height: 1.6;
}

.education-text h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2a2a2a;
}

/* Responsive */
@media (max-width: 979px) {
    .education-container {
        grid-template-columns: 1fr;
    }
}

.chiot-explications {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem 20px;
    background-color: #fdf9f2; /* léger fond doux */
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: justify;
}

.chiot-explications h2 {
    font-size: 2rem;
    text-align: center;
    color: #2a7f62;
    margin-bottom: 1.5rem;
    position: relative;
}

.chiot-explications h2::after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background-color: #D4AF37;
    margin: 0.5rem auto 1rem auto;
    border-radius: 2px;
}

.chiot-explications h3 {
    color: #2a2a2a;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.chiot-explications p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.chiot-explications ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.chiot-explications ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.chiot-explications .contact-cta {
    text-align: center;
    margin-top: 2rem;
}

.chiot-explications .btn-service {
    font-size: 1rem;
    padding: 0.8rem 1.8rem;
}


/* 
=======================================================================
=======================================================================
=======================================================================
==========================comportenmentatliste==============================
=======================================================================
=======================================================================
======================================================================= */
/* SECTION COMPORTEMENT */
/* Liste des troubles canins */
#troubles {
    list-style: none; /* supprime les puces classiques */
    padding: 0;
    max-width: 600px;
    margin: 30px auto;
    font-family: var(--font-text, 'Montserrat', sans-serif);
    line-height: 1.8;
    font-size: 1.5em;
    font-weight: 700;
}

#troubles li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
}

/* Ajout d'une puce personnalisée */
#troubles li::before {
    content: "🐾"; /* petite patte comme puce */
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    color: var(--color-primary, #b34a2f);
}


/* Container de la section */
.behavior-section {
    max-width: 1000px; /* limite la largeur pour le confort de lecture */
    margin: 50px auto; /* centré horizontalement avec un espace au-dessus et dessous */
    padding: 20px;
    background-color: #f9f9f9; /* léger fond gris pour détacher la section */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
}

/* Titre principal */
.behavior-section h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Texte descriptif */
.behavior-section p {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 15px;
}

/* Bouton "En savoir plus" */
.behavior-section .btn-learn-more {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.behavior-section .btn-learn-more:hover {
    background-color: #ff4b4b;
}

/* Responsive */
@media (max-width: 768px) {
    .behavior-section {
        padding: 15px;
    }
    
    .behavior-section h2 {
        font-size: 1.6rem;
    }
    
    .behavior-section p {
        font-size: 0.95rem;
    }
}
/* 
=======================================================================
=======================================================================
=======================================================================
==========================nos methodes==============================
=======================================================================
=======================================================================
======================================================================= */

/* ========================
   Sections Méthode d'éducation
   ======================== */
.method-intro,
.our-method,
.positive-edu {
    padding: 50px 20px;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--color-text);
    font-family: var(--font-text);
}

.method-intro {
    background-color: var(--color-bg-light);
    text-align: center;
}

.our-method,
.positive-edu {
    background-color: var(--color-bg-white);
}

/* Titres */
.method-intro h1,
.our-method h2,
.positive-edu h2 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.method-intro h2,
.positive-edu h3 {
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

/* Paragraphes */
.method-intro p,
.our-method p,
.positive-edu p {
    font-size: 1rem;
    margin-bottom: 15px;
}

.prestations {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.prestations h2 {
    font-family: 'Lugrasimo', cursive;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

/* Conteneur cartes */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Cartes individuelles */
.card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 25px;
    flex: 1 1 300px;
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}

.card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Animation au survol */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        max-width: 90%;
    }
}

/* 
=======================================================================
=======================================================================
=======================================================================
==========================contact==============================
=======================================================================
=======================================================================
======================================================================= */

/* ============================= */
/* General Contact Section Styles */
/* ============================= */
.contact-intro,
.contact-coords,
.contact-hours,
.contact-zone,
.contact-socials {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 12px;
    background-color: #fdfdfd;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: 'Montserrat', sans-serif;
}

/* Section Headings */
.contact-intro h2,
.contact-coords h3,
.contact-hours h3,
.contact-zone h3,
.contact-socials h3 {
    font-family: 'Lugrasimo', cursive;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

/* Paragraphs */
.contact-intro p,
.contact-zone p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* ============================= */
/* Contact Buttons (Phone & Email) */
/* ============================= */

.contact-buttons {
    display: flex;
    gap: 15px;           /* espace entre les boutons */
    flex-wrap: wrap;      /* permet de passer à la ligne sur petit écran */
    margin: 15px 0;
}

.btn-contact {
    display: inline-block;
    padding: 12px 25px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.btn-contact:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

/* ============================= */
/* Horaires List Style */
/* ============================= */
.contact-hours ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-hours li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #555;
}

/* ============================= */
/* Social Links Style */
/* ============================= */
.contact-socials .social-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4267B2; /* Facebook color */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-socials .social-link:hover {
    background-color: #334d91;
    transform: translateY(-2px);
}

/* ============================= */
/* Responsive */
/* Flex pour image à gauche et texte à droite */
.contact-zone .zone-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-top: 15px;
}

.contact-zone .zone-content img {
    width: 200px; /* Ajuste selon ton image */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-shrink: 0; /* Empêche l'image de rétrécir */
}

.contact-zone .zone-content p {
    flex: 1; /* Texte prend tout l'espace restant */
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Responsive : image au-dessus du texte sur mobile */
@media (max-width: 600px) {
    .contact-zone .zone-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-zone .zone-content img {
        width: 100%;
        max-width: 300px;
    }

    .contact-zone .zone-content p {
        text-align: center;
    }
}


.btn-contact {
    display: inline-block;
    text-align: center;
    padding: 12px 20px;
    background-color: #ff8c42; /* couleur des boutons */
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-contact:hover {
    background-color: #e5772a; /* couleur au survol */
    transform: translateY(-2px); /* petit effet de “hover” */
}

/* Responsive : sur petit écran les boutons passent à la ligne */
@media (max-width: 500px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-contact {
        width: 100%;
        text-align: center;
    }
}

