/* ======= HEADER LAYOUT GLOBAL ======= */
header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 90px;
  padding: 0 40px;
  background-color: #6B3E26;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;

}

header nav{
  margin-left: 250px;
  justify-self:start ;
}

.logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
}


nav {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  position:relative;
  margin-left: 40px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.nav-links li a:hover {
  text-decoration: underline;
}

/* ====== MENU DÉROULANT ====== */
.nav-links li {
  position: relative;
}

.nav-links li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #6B3E26;
  padding: 10px 0;
  min-width: 180px;
  z-index: 999;
}

.nav-links li:hover ul {
  display: block;
}

.nav-links li ul li {
  padding: 8px 16px;
  white-space: nowrap;
}

.nav-links li ul li a {
  color: #fff;
  text-decoration: none;
}

/* ====== MENU HAMBURGER ====== */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
 
}

/* ===== FOOTER LAYOUT GLOBAL===== */
footer {
  background-color: #3C1E13;   /* votre brun foncé */
  color: #f3e9e1;                  /* crème clair */
  padding: 4rem 1rem;          /* haut/bas, gauche/droite */
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 2. Container centré en grid */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 2fr) repeat(3, minmax(200px, 1fr));
  gap: 2rem 4rem;
  justify-items: start;
  text-align: left;
  align-items: start;
}

/* 3. Titres de section */
.footer-section{
  text-align: left;
  padding: 0;
  margin: 0;
}
.footer-section h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #E07A5F;              /* accent terracotta */
  text-align: left !important;
}


/* 4. Listes sans puce */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* 5. Liens utiles */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li + li {
  margin-top: 0.5rem;
}
.footer-links a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #E07A5F;
}

/* 6. Réseaux sociaux en ligne */
.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a:hover img {
  transform: scale(1.1);
}

/* 7. Contact */
.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: #E07A5F;
}

/* 8. Séparateur */
footer hr {
  border: none;
  border-top: 1px solid #E5CFC1;
  margin: 3rem auto 2rem;
  max-width: 1200px;
}

/* 9. Bas de page */
.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

/*=====================================================
  1) BASE
  - Variables CSS (couleurs, typographie, espacements)
  - Reset & Normalize
  - Typographie globale (body, h1–h6, p, a)
=====================================================*/

  :root {
  /* Textes */
  --color-text:     #4a2e1b;
  --color-text-dark:#2c1b0f;

  /* Fonds */
  --color-bg-light: #f9ede6;
  --color-bg-cream: #ffe6ce;
  --color-bg-sand:  #ffcb8b;

  /* Accent & CTA */
 --color-primary:   #8F3E1A;
 --color-secondary: #A15B18;

  /* Typographie */
  --font-base: 'Poppins', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  /* Espacements */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 32px;
  --spacing-xl: 64px;
}

/* Reset minimaliste */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover,
a:focus {
  color: var(--color-secondary);
}

h1, h2, h3 {
  font-weight: 600;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: 32px;
  animation: fadeIn 1s ease-in-out;
}

h2 {
  font-size: 26px;
}

p {
  margin-bottom: var(--spacing-md);
}



@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/*=====================================================
  2) LAYOUT
=====================================================*/
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.logo 
.header, .nav, .footer {
  width: 100%;
}
.grid {
  display: grid;
  gap: var(--spacing-lg);
}
.flex {
  display: flex;
  gap: var(--spacing-md);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto;
}

/*=====================================================
  3) UTILITAIRES
=====================================================*/

/* === INTERACTIONS : Effets de survol (hover) === */
.card:hover,
.breeder-photo:hover,
.gallery img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: scale(1.03);
  transition: background 0.4s, transform 0.3s ease;
}

img {
  transition: all 0.3s ease-in-out;
}


/* === INTERACTIONS : Apparition au scroll === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.text-center { text-align: center; }
.hidden { display: none !important; }
.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.p-1  { padding: var(--spacing-sm); }
.p-2  { padding: var(--spacing-md); }

/*=====================================================
  4) COMPOSANTS
=====================================================*/
.btn-primary {
  background-color: #E07A5F;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 20px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  border: none;
  border-radius: 30px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.4s;
}
.btn:hover {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: white;
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.form-group {
  margin-bottom: var(--spacing-md);
}
.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  outline: none;
}
/*=====================================================
 5- Sections
=======================================================*/
 
.section-sand {  
  background: var(--color-bg-sand);
  padding: 3rem 1rem;
  text-align: center;
}

.section-cream { 
 background: var(--color-bg-cream);
  padding: 3rem 1rem;
  text-align: center;
}

.section-light { 
  background: var(--color-bg-light);
  padding: 3rem 1rem;
  text-align: center;
}

.section-divider {
  width: 60px;
  height: 4px;
  background-color: #a45a2a;
  margin: 0.5rem auto 2rem;
  border-radius: 2px;
}
section h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}
/* ==== Section CTA centrée ==== */
.contacte-section {
  max-width: 800px;
  margin: var(--spacing-lg) auto;
  padding: var(--spacing-lg) var(--spacing-md);
  background-color: var(--color-bg-cream);
  border-radius: 1rem;
  text-align: center;
}

/* Titres et paragraphes empilés */
.contacte-section h2 {
  margin-bottom: var(--spacing-sm);
  font-size: 2rem;
}
.contacte-section p {
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
  color: var(--color-text-dark);
}

/* Bouton centré dans ce contexte */
.contacte-section .btn {
  display: inline-block;
  margin: 0 auto;
  padding: var(--spacing-sm) var(--spacing-lg);
}


/*===================================================
  6) PAGES SPÉCIFIQUES
=====================================================*/

/* PAGE : index.html */
.banner {
  background: url('images/banniere.webp') center/cover no-repeat;
  height: auto;
  max-height: 450px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.banner img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 50px;
}
.banner h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-size: 38px;
}
.intro {
  padding: var(--spacing-lg) 0;
  background-color: #ffffff;
  text-align: center;
}
.intro p {
  max-width: 800px;
  margin: 0 auto;
}
.intro-text {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #5a3b2a;
  font-weight: 500;
  max-width: 800px;
  margin: 0 auto;
}

.intro-section {
  padding: 4rem 1rem;
  text-align: center;
}

.intro-container {
  max-width: 800px;
  margin: 0 auto;
}

.intro-container h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.intro-container p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/*Pourquoi nous choisir*/
.why-choose-us {
  max-width: 1200px;
  margin: var(--spacing-lg) auto;
  padding: var(--spacing-md);
  text-align: center;
}
.why-choose-us h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #7b3e1d;
  font-family: 'Lora', serif;
}

.choose-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
  margin-top: 2rem;
}
.icon-box {
  background-color: #fff7f2;
  padding: 2rem;
  border-radius: 12px;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.icon-box:hover {
  transform: translateY(-5px);
   box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.icon-box h3 {
  font-size: 1.4rem;
  color: #a45a2a;
  margin-bottom: 1rem;
}

.icon-box p {
  font-size: 1rem;
  color: #5a3b2a;
  line-height: 1.6;
}
.icon-box img {
  max-width: 80px;
  height: auto;
  margin-bottom: var(--spacing-sm);
}


.three-columns {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-lg);
  flex-wrap: wrap;
  max-width: 1200px;
  margin: var(--spacing-lg) auto;
}

.column {
  flex: 1 1 30%;
  min-width: 250px;
  max-width: 350px;
  background: #fff;
  padding: var(--spacing-md);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.column img {
  max-width: 80px;
  margin-bottom: var(--spacing-sm);
  height: auto;
}

 /* Gallery interactive index */
.photo-slider {
  padding: 2rem 0;
}
.photo-slider img {
  max-height: 400px;
  object-fit: cover;
}


.photo-slider h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-family: 'Lora', serif;
}

.swiper {
  width: 100%;
  max-width: 600px; /* Réduction de la largeur maximale */
  margin: 0 auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Centrer l'image */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

/* Animation au scroll - effet "fade in" */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Image hover */
.gallery img:hover {
  transform: scale(1.03);
  transition: transform 0.3s ease;
}

/* Partie ACTUALITE MARIAGE */
.news-section {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: space-between;
  flex-wrap: wrap;
  margin: var(--spacing-lg) auto;
  padding: var(--spacing-md);
}

.news-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}


.news-column,
.weddings-column {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: var(--spacing-md);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  
}

.mariage-photo {
  max-width: 300px;
  height: auto;
  display: block;
  margin: var(--spacing-sm) auto;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Conteneur pour centrer et limiter la largeur */
.video-local-wrapper {
  width: 100%;
  max-width: 800px;     /* ajustez selon votre design */
  margin: 0 auto 40px;  /* centré + marge en bas */
}

/* Vidéo qui prend toute la largeur de son conteneur */
.video-local {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}


/* PAGE : adoption.html */

.adoption-accordion {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.adoption-accordion h1 {
  text-align: center;
  color: #a45a2a;
  margin-bottom: 2rem;
}

.adoption-accordion details {
  margin-bottom: 1.5rem;
  border: 1px solid #e3ded7;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fffdf9;
  padding: 0.5rem 1rem;
}

.adoption-accordion summary {
  font-weight: bold;
  font-size: 1.1rem;
  color: #5a3b2a;
  cursor: pointer;
  padding: 0.8rem 0;
}

.adoption-accordion p,
.adoption-accordion ul {
  padding-left: 1rem;
  margin: 0.5rem 0 1rem 0;
  color: #4a3b2a;
  line-height: 1.6;
}
.faq-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
  padding-left: 1rem;
  opacity: 0;
}

details[open] .faq-content {
  max-height: 500px; /* Assez grand pour contenir tout le contenu */
  opacity: 1;
  transition: max-height 0.5s ease, opacity 0.3s ease-in;
}

.faq-section {
  padding: 3rem 1rem;
  text-align: center;
}

.faq-section h2 {
  color: #7b3e1d;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  margin: 1rem auto;
  padding: 0;
  max-width: 700px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: #5c2c12;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 1rem;
}

/* PAGE : elevage.html */
.about-section {
  padding: var(--spacing-lg) var(--spacing-md);
  
}

.about-content {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: var(--spacing-lg);
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto var(--spacing-lg);
}

.about-content.reverse {
  flex-direction: row-reverse;
 
}
.about-image,
.about-text {
  flex: 1 1 50%;
}

.about-image img {
  max-width: 100%;
  max-height: 300px;
  width: auto;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.about-text h1,
.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
/* Timeline frise horizontale */
.timeline-section {
  padding: 4rem 1rem;
  background-color: var(--color-bg-light);
}
/* Le titre de la frise */
.timeline-section h2 {
  max-width: 1200px;
  margin: 0 auto 2rem;
  text-align: center;
  padding: 0 1rem;
}

/* Container de la frise */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  list-style: none;
  padding: 0;
}
/* La ligne centrale */
.timeline::before {
  content: "";
  position: absolute;
  top: 1.5rem;     /* milieu des points */
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--color-bg-light);
  z-index: 1;
}
/* Chaque jalon */
.timeline li {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 1.5rem;  /* espace pour le point */
}
/* Le “point” de chaque date */
.timeline li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid var(--color-cream);
}
/* Le label date */
.timeline-date {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}
.timeline li p {
  margin: 0;
  font-size: 0.9rem;
}
.page-header {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  text-align: center;
}
.page-header h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  color: var(--color-primary);
  text-align: center;
}
/* trait décoratif sous le H1 */
.page-header h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-accent);
  margin-top: 0.5rem;
  border-radius: 2px;
}

/* PAGE : chatterie.html */
.british-intro {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.british-intro h2 {
  color: #7b3e1d;
  text-align: center;
  margin-bottom: 2rem;
}

.british-intro p {
  margin-bottom: 1.5rem;
}

/* Style quiz */
.quiz-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 1rem;
}
.quiz-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: var(--color-text);
}
.quiz-form select {
  margin-top: 0.5rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
}
.quiz-result {
  display: none;
  max-width: 600px;
  margin: 2rem auto 0;
  padding: 1.5rem;
  background-color: var(--color-cream);
  border: 2px solid var(--color-accent);
  border-radius: 1rem;
  line-height: 1.5;
}
.quiz-result.visible {
  display: block;
}

/* ——— 5) Section d’appel ——— */
.british-call {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--color-bg-light);
  border-radius: 1rem;
}
.british-call .btn {
  margin-top: 1rem;
}

/* PAGE : nos-reproducteurs.html */
.reproducteur-profil {
  padding: 3rem 1rem;
  text-align: center;
}

.reproducteur-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 2rem;
}

.reproducteur-card img {
  max-width: 320px;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.reproducteur-details {
  flex: 1;
  text-align: left;
}

.reproducteur-details h1 {
  font-size: 1.8rem;
  color: #a45a2a;
  margin-bottom: 1rem;
}

.reproducteur-details ul {
  list-style: none;
  padding: 0;
  line-height: 1.8;
  font-size: 1.05rem;
}

.reproducteur-details li {
  margin-bottom: 0.5rem;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.reproSwiper {
  width: 100%;
  max-width: 500px;
  margin: 2rem auto;
  position: relative;
  height: 320px; /* ✅ Ajout essentiel */
}

.reproSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}


.reproSwiper .swiper-wrapper {
  display: flex;
}

.reproSwiper .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
}

.swiper-button-prev,
.swiper-button-next {
  color: #a45a2a;
}

.reproducteur-details .swiper {
  margin-top: 2rem;
  max-width: 100%;
  border-radius: 10px;
}


/* PAGE : chatons.html */
.chatons-noscript {
  background: #ffeedd;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  margin: 2rem auto;
}
html.js-enabled .chatons-noscript {
  display: none;
}

.chatons-container {
  padding: var(--spacing-lg) var(--spacing-md);
  background-color: #fff;
  text-align: center;
}
.chatons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-md);
   justify-items: center;
}
.chaton-card { 
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.chaton-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.chaton-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.chaton-info {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chaton-info h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.chaton-info p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}
.gallery-hint { margin: .5rem auto 0; color: #5a3b2a; }

/* Filtre chatons (couleur & sexe) */
.chatons-filter {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2rem auto 0;
  max-width: 1200px;
  padding: 0 1rem;
}
.chatons-filter label {
  font-size: 0.95rem;
  color: var(--color-text);
}
.chatons-filter select {
  margin-left: 0.5rem;
  padding: 0.3rem 0.6rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
}
/* modal de réservation */
.modal {
  position: fixed;
  top:   0; left: 0;
  width: 100%; height: 100%;
  display: none;               /* caché par défaut */
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}
.modal.show {
  display: flex !important;    /* s’affiche quand on ajoute .show */
}
.modal-content {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.modal-close {
  position: absolute;
  top: 0.5rem; right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.modal-content form div {
  margin-bottom: 1rem;
}
.modal-content label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
}
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.modal-content button[type="submit"] {
  background: #8F3E1A;
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
}
.reserve-btn {
  display: inline-block;
  background: linear-gradient(90deg, #8F3E1A 0%, #C77C46 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 3px 5px rgba(0,0,0,0.1);
  transition: filter 0.2s, transform 0.1s;
}
.reserve-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.reserve-btn:active {
  transform: translateY(0);
  filter: brightness(0.9);
}

    .gallery-carousel2 {
      overflow: hidden;
      width: 100%;
      background: #fff;
      padding: 20px 0;
      box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    }
      .gallery-track {
      display: flex;
      width: max-content;
      animation: scroll 25s linear infinite;
    }

    /* Style des images */
    .gallery-track img {
      height: 180px;
      margin: 0 12px;
      border-radius: 14px;
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .gallery-track img:hover {
      transform: scale(1.1);
    }
  /* Animation défilement infini */
    @keyframes scroll {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

/* PAGE : temoignagne.html */
.testimonial-slider {
  background: none;             
  padding: var(--spacing-md) 0;  /* moins d’espace vertical */
  max-width: 700px;
  margin: 0 auto var(--spacing-lg);
}
.testimonial-slider blockquote {
 
  padding: var(--spacing-lg) var(--spacing-md);
  border-radius: 1rem;
  box-shadow: none;                         /* ou : 0 2px 8px rgba(0,0,0,0.05); */
  position: relative;
}
.testimonial-slider blockquote footer {
  position: absolute;
  right: var(--spacing-md);
  bottom: var(--spacing-md);
  font-style: italic;
  color: var(--color-text-dark);
}
.testimonial-form {
  max-width: 700px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: var(--color-bg-light); 
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-form h2 {
  margin-bottom: 1.5rem;
  color:#2c1b0f;/* #7b3e1d */;
  text-align: center;
}

.testimonial-form label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: bold;
  color:#2c1b0f;/* #5a3b2a;*/
}

.testimonial-form input,
.testimonial-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  min-height: 48px;
}

.testimonial-form .cta-button {
  margin-top: 1.5rem;
  width: 100%;
  min-height: 48px;
}
.testimonial-carousel {
  display: flex;
  gap: 2rem;
  animation: slide 30s linear infinite;
}

@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.temoinSwiper {
  max-width: 700px;
  margin: 3rem auto;
  padding:var(--spacing-md);
   overflow: visible;
 
}
.swiper-wrapper {
  display: flex;
  width: 100%;
   overflow: visible;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  padding: var(--spacing-md)
}
.swiper-slide blockquote {
  font-style: italic;
  background-color: #fff;
  border-left: 5px solid #a45a2a;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: left;
  font-size: 1.1rem;
}

.swiper-slide footer {
  font-weight: bold;
  margin-top: 1rem;
  text-align: right;
  color:#2c1b0f;/* #5a3b2a*/
  background-color: var(--color-bg-cream);
}

/* navigation focus */
/* Flèches de navigation : 48×48 px minimum */
.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  /* Centrage de l’icône à l’intérieur */
  display: flex;
  align-items: center;
  justify-content: center;
  /* Élargir la zone de clic sans changer le visuel */
  padding: 8px;
  box-sizing: content-box;
}
.swiper-button-prev:focus,
.swiper-button-next:focus,
.swiper-pagination-bullet:focus {
  outline: 3px solid var(--color-primary);
}

/* pagination bullets plus visibles */
.swiper-pagination-bullet {
  background-color: transparent !important;
  opacity: 0.5;
  transition: opacity 0.3s;
  position: relative;
  width: 48px !important;
  height: 48px !important;
  margin: 0 4px !important;
}
/* Touch targets Swiper pagination – one shot */
.swiper-pagination-bullet {
  position: relative;
  display: inline-block;
  width: 48px !important;
  height: 48px !important;
  margin: 0 4px !important;
  background: transparent !important;
}
.swiper-pagination-bullet::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  background-color: var(--color-secondary) !important;
  border-radius: 50%;
  opacity: 0.5;
}
.swiper-pagination-bullet-active::after {
  opacity: 1;
}

/* renforcer le contraste des blockquotes */
.temoinSwiper blockquote {
  background-color: var(--color-bg-cream);
  color: var(--color-text-dark);
}


.cta-button {
  background-color: #a45a2a;
  color: #fff8f2;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: auto;
  display: inline-block;
  margin-top: 1rem;
}

.cta-button:hover {
  background-color: #8a4622;
  transform: scale(1.03);
}



/* PAGE : contact.html */
/* === 1. Layout général de la section Contact === */
.contact-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}
/* === 2.1 : Étendre sous les deux cartes et centrer le contenu === */
.contact-container {
  /* Occupe les deux colonnes de .contact-section */
  grid-column: 1 / -1;                  /* :contentReference[oaicite:0]{index=0} */
  display: flex;                        /* Passage en flex pour centrer */
  justify-content: center;              /* Centre horizontalement */
  align-items: flex-start;              /* Aligne en haut de l’espace vertical */
  gap: var(--spacing-lg);               /* Espace entre aside et form */
}
.contact-form-container {
  max-width: 600px;    /* largeur max désirée */
  width: 100%;         /* s’adapte à son max-width */
}

@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}

/* === 2. Bloc infos (cartes) === */
.contact-infos {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}
.contact-infos .contact-card {
  background: #fff;
  border: 1px solid #e2c8b5;
  border-radius: 12px;
  padding: 2rem;
  max-width: 350px;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.contact-infos .contact-card h2 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-md);
}

/* === 3. Formulaire === */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
/* Centre le bloc formulaire dans sa cellule de grille */
.contact-form-container {
  justify-self: center;   /* centre horizontalement */
  max-width: 600px;       /* limite sa largeur pour ne pas être trop large */
  width: 100%;            /* prend 100% de cette max-width */
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
  color: var(--color-text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(224,122,95,0.2);
}

/* === 4. Pied de formulaire === */
.form-footer {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}
.form-note {
  font-size: 0.85rem;
  color: #666;
}
.btn-primary {
  align-self: flex-start;
}

/* === 5. Carte Google Maps === */
.map-container {
  grid-column: 1 / -1;       
  position: relative;        
  width: 100%;                
  padding-top: 56.25%;        
  margin-top: var(--spacing-lg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.map-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;  
  height: 100%;
  border: none;
}


/* PAGE : mentions-legales.html */
.legal-page {
  max-width: 800px;
  margin: var(--spacing-lg) auto;
  padding: var(--spacing-lg) var(--spacing-md);
  background-color: var(--color-bg-sand);
  border-radius: 1rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  line-height: var(--line-height-base);
}

.legal-page h1 {
  text-align: center;
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
}

.legal-toc {
  background: var(--color-bg-light);
  border-left: 0.25rem solid var(--color-primary);
  padding: var(--spacing-sm) var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  border-radius: 0.5rem;
}

.legal-toc h2 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: var(--spacing-md);
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-toc li + li {
  margin-top: var(--spacing-xs);
}

.legal-toc a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.legal-toc a:hover,
.legal-toc a:focus {
  color: var(--color-primary);
}

.legal-page > section {
  margin-bottom: var(--spacing-lg);
}

.legal-page > section h2 {
  font-size: 1.5rem;
  color: var(--color-text-dark);
  margin-bottom: var(--spacing-sm);
}

.legal-page > section p {
  margin-bottom: var(--spacing-md);
}

/* Optionnel : fond léger sur sections paires */
.legal-page > section:nth-of-type(even) {
  background: var(--color-bg-light);
  padding: var(--spacing-md);
  border-radius: 0.5rem;
}


/*=====================================================
  7) RESPONSIVE
=====================================================*/
/* ========== MENU MOBILE sous 768px ========== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: fixed;      /* reste visible pendant le scroll */
    top: 1rem;
    right: 1rem;
    padding: 0.75rem;
    font-size: 2rem;
    background: none;
    border: none;
    z-index: 1002;
  }

  /* overlay qui recouvre tout l’écran */
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(107, 62, 38, 0.95); /* brun semi‑opaque */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 1001;
  }
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 1rem 0;
  }
  .nav-links a {
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: background 0.2s;
  }
  .nav-links a:hover {
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
  }
}
   /* Styles du bouton flottant WhatsApp (en bas à droite) */
    .wa-floating {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 56px;
      height: 56px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #25D366;
      color: white;
      border-radius: 50%;
      box-shadow: 0 8px 20px rgba(0,0,0,.2);
      text-decoration: none;
      z-index: 9999;
      transition: transform .15s ease, box-shadow .15s ease, opacity .2s ease;
    }
    .wa-floating:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.25); }
    /* Décale un peu si le badge Messenger est visible */
    .fb_dialog.fb_dialog_mobile, .fb_customer_chat_bubble_animated_no_badge { bottom: 84px !important; }


/* ========== DESKTOP au‑dessus de 768px ========== */
@media (min-width: 769px) {
  .menu-toggle { display: none; }
  .nav-links   { display: flex !important; flex-direction: row; gap: 2rem; }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .flex {
    flex-direction: column;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .three-columns {
    flex-direction: column;
  }
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .intro-text {
    font-size: 1.2rem;
    padding: 0 1rem;
  }

  .choose-grid {
    flex-direction: column;
    align-items: center;
  }

  .icon-box {
    width: 90%;
    max-width: 100%;
  }

  .contact-section {
    padding: 2rem 1rem;
  }

  .contact-btn {
    width: 80%;
    max-width: 300px;
  }

  .photoSwiper .swiper-slide img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .about-content,
  .about-content.reverse {
    flex-direction: column;
  }

  .about-image,
  .about-text {
    flex: 1 1 100%;
  }

  .about-image img {
    max-height: 300px;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 3rem 1rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-contact li,
  .footer-links li {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: flex-start;
    max-width: none;
  }
  .timeline::before {
    top: auto;
    left: 2rem;
    bottom: 5%;
    width: 2px;
    height: 90%;
  }
  .timeline li {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    width: auto;
  }
  .timeline-date {
    margin-right: 1rem;
  }
}
