/* Reset rapide */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: "Georgia", serif;
  color: #26403D;
  line-height: 1.6;
  background: linear-gradient(
    to bottom,
    #d8cfe6 0%,   /* violet plus marqué */
    #95c9a9 60%,  /* vert pastel foncé */
    #9bb48a 100%  /* vert soutenu plus foncé */
  );
}

/* ========================= */
/* Section Hero */
.hero {
  text-align: center;
  padding: 4rem 2rem 6rem;
}

.hero h1 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  background: #D68B7B;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #b97064;
}

/* ========================= */
/* Sections générales */
.content {
  background: #faf7f4;
  border-radius: 40px;
  padding: 3rem 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  max-width: 1200px; /* Augmenté de 900px à 1200px */
  margin: 2.5rem auto; /* espace vertical entre les sections */
}

/* Présentation */
.presentation {
  display: flex;
  align-items: center;
  text-align: justify;
  gap: 1.5rem;
  margin-bottom: 1rem;
  justify-content: center;
}

.illustration {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

.presentation h2 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

/* Accompagnements */
.accomp-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

/* Cards container */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center; /* Centre toutes les cartes */
  max-width: 100%;
}

/* Card en <a> */
.card {
  display: block;
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 280px; /* Largeur fixe pour toutes les cartes */
  flex-shrink: 0; /* Empêche les cartes de se réduire */

  /* Neutraliser l'effet lien */
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #26403D;
}

.card p {
  color: #26403D;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

/* ========================= */
/* Section CTA */
.cta {
  text-align: center;
  margin: 3rem 0;
}

.btn-cta {
  font-size: 1.2rem;
  padding: 1rem 2rem;
  background: #b97064;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.btn-cta:hover {
  background: #a15f54;
}

/* ========================= */
/* Responsive */
@media (max-width: 768px) {
  .presentation {
    flex-direction: column;
    text-align: center;
  }

  .illustration {
    margin-bottom: 1rem;
  }

  .content {
    border-radius: 30px;
    padding: 2rem 1.5rem;
    max-width: 95%; /* Ajusté pour mobile */
  }
}

/* ========================= */
/* Footer */
.footer {
  background: #26403D;
  color: #faf7f4;
  padding: 2rem 1rem 1rem;
  margin-top: 3rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 2rem;
  align-items: flex-start;
}

/* Logo */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  width: 180px;
  height: auto;
  margin-bottom: 0.8rem;
}

.footer-logo h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}

/* Liens */
.footer h4 {
  margin-bottom: 1rem;
  color: #fff;
}

.footer p, .footer a {
  color: #faf7f4;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

/* Bas du footer */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo img {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    width: 120px;
  }
}


/* Page coaching */