/* ===== Reset et base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f7f7f7;
  color: #111;
}

/* ===== Header ===== */
header {
  background-color: #131921; /* bleu très foncé Amazon-like */
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  height: 100px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #f0c14b; /* jaune Amazon */
}

/* ===== Hero ===== */
.hero {
  background-color: #232f3e;
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #f0c14b;
  color: #111;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #ddb347;
}

/* ===== Sections principales ===== */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h1, h2, h3 {
  margin-bottom: 1rem;
}

/* ===== Cartes ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.card {
  background-color: white;
  flex: 1 1 280px;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card h2, .card h3 {
  color: #131921;
}

/* ===== About / highlight sections ===== */
.highlight, .about, .assistance-section {
  text-align: center;
  margin: 2rem 0;
}

/* ===== FAQ et liste ===== */
.faq ul, .prepare ol {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

/* ===== Formulaire ===== */
.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}

.contact-form form label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: bold;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-info {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
}



.social {
    margin: 40px 0;
    text-align: center;          /* centre le texte du titre */
}

.social h2 {
    margin-bottom: 20px;         /* espace sous le titre */
}

.facebook-buttons {
    display: flex;               /* flex pour aligner les boutons */
    justify-content: center;     /* centre horizontalement les boutons */
    gap: 10px;                   /* espace entre les boutons */
    align-items: center;         /* centre verticalement si besoin */
    margin: 0 auto;              /* centre le conteneur lui-même */
}


/* ===== Footer ===== */
footer {
  background-color: #232f3e;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

footer a {
  color: #f0c14b;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    gap: 0.8rem;
  }

  .card-container {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
