/* ===========================
   BASE GÉNÉRALE
   =========================== */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

header {
  background: #356494;
  color: white;
  padding: 20px;
}

nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav a:hover,
nav a:focus {
  color: #00bcd4;
  outline: none;
}

footer {
  background: #f1f1f1;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
  color: #555;
}

main {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ===========================
   TITRES
   =========================== */
h2, h3 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  color: #007bff;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.8rem;
}

/* ===========================
   BOUTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s, transform 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn:hover,
.btn:focus {
  background-color: #0056b3;
  transform: scale(1.05);
  outline: none;
}

/* Bouton WhatsApp */
.btn-whatsapp {
  background-color: #25D366;
  color: white;
  margin-left: 10px;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background-color: #1DA851;
  color: white;
  text-decoration: none;
  outline: none;
}

/* ===========================
   HERO (exemple d'utilisation)
   =========================== */
.hero {
  background: linear-gradient(120deg, #007bff, #00bcd4);
  color: white;
  text-align: center;
  padding: 80px 20px;
  border-radius: 0 0 40px 40px;
}

.hero h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* ===========================
   AVANTAGES
   =========================== */
.avantages {
  max-width: 1000px;
  margin: auto;
}

.avantages h3 {
  margin-bottom: 30px;
}

.avantages ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 1.1em;
}

.avantages li {
  background-color: #f3f5f7;
  padding: 15px 20px;
  border-left: 5px solid #007bff;
  border-radius: 6px;
  transition: transform 0.2s ease;
}

.avantages li:hover {
  transform: translateX(5px);
}

/* ===========================
   TÉMOIGNAGES
   =========================== */
.temoignages blockquote {
  background: #f9fafb;
  border-left: 4px solid #00bcd4;
  margin: 20px auto;
  padding: 20px 30px;
  font-style: italic;
  max-width: 800px;
  border-radius: 6px;
  position: relative;
}

.temoignages blockquote::before {
  content: "“";
  font-size: 4em;
  position: absolute;
  left: 10px;
  top: -10px;
  color: #00bcd4;
  opacity: 0.2;
}

/* ===========================
   CTA (Call to Action)
   =========================== */
.cta {
  background-color: #f0f8ff;
  text-align: center;
  padding: 40px;
  margin-top: 40px;
  border-radius: 16px;
}

.cta h3 {
  font-size: 1.8em;
}

.cta p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

/* ===========================
   SERVICES (si page dédiée)
   =========================== */
.services-section {
  padding: 60px 20px;
  background-color: #f7f9fc;
  text-align: center;
}

.services-section h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
}

.services-section .intro {
  font-size: 1.1em;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.service-card {
  background: white;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card ul {
  text-align: left;
  margin: 20px auto;
  display: inline-block;
  padding-left: 20px;
}

.service-card ul li {
  margin-bottom: 10px;
}

/* ===========================
   SECTION À PROPOS
   =========================== */
main section {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
  color: #333;
  font-size: 1.1rem;
}

main section h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: center;
  color: #007bff;
}

main section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

main section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #222;
}

main section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #007bff;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
}

main section p {
  line-height: 1.6;
  margin-bottom: 25px;
}

/* ===========================
   SECTION ÉQUIPE
   =========================== */
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.team-member {
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.07);
  padding: 1.5rem 1.2rem 2rem;
  max-width: 260px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgb(0 0 0 / 0.15);
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #007bff;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member h4 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  color: #004080;
}

.team-member p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.team-member p a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  margin: 4px 0;
  transition: text-decoration 0.3s ease;
}

.team-member p a:hover,
.team-member p a:focus {
  text-decoration: underline;
  outline: none;
}

.team-member p a:focus {
  outline: 2px dashed #007bff;
  outline-offset: 3px;
}

/* ===========================
   SECTION CONTACT
   =========================== */
.contact-section {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #f9fafc;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.05);
}

.contact-section h2 {
  font-size: 2em;
  margin-bottom: 30px;
  text-align: center;
  color: #007bff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form label {
  font-weight: 600;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  outline: none;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  main {
    padding: 30px 15px;
  }

  .hero {
    padding: 60px 15px;
  }
}

@media (max-width: 720px) {
  .team-container {
    flex-direction: column;
    align-items: center;
  }

  .team-member {
    max-width: 100%;
    width: 280px;
  }

  nav a {
    margin: 0 8px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      nav {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #007BFF;
        display: none;
        padding: 10px 0;
      }

      nav.show {
        display: flex;
      }
    }
	
	
	
	
/*==footer==#2c3e50*/
footer {
  background-color: #2c3e50;
  color: white;
  padding: 30px 20px 10px;
  margin-top: 40px;
  font-size: 14px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 20px;
  min-width: 200px;
}

.footer-section h3, .footer-section h4 {
  margin-bottom: 8px;
  color: #a2ffb1;
}

.footer-section p, .footer-section a {
  color: #ecf0f1;
  margin: 4px 0;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #ccc;
  padding-top: 10px;
  font-size: 13px;
  color: #bbb;
}

/* Responsive */
@media (max-width: 720px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  
  }
  .footer-section {
    max-width: 100%;
  }
}
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #007BFF;
      padding: 10px 20px;
      color: white;
      position: relative;
      z-index: 1000;
    }

    .logo a {
      color: white;
      font-size: 1.5em;
      text-decoration: none;
    }

    nav {
      display: flex;
      gap: 15px;
      align-items: center;
    }

    nav a {
      color: white;
      text-decoration: none;
      padding: 8px 10px;
      border-radius: 5px;
    }

    nav a:hover {
      background-color: rgba(255, 255, 255, 0.2);
    }

    .menu-toggle {
      display: none;
      font-size: 1.8em;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }

      nav {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #007BFF;
        display: none;
        padding: 10px 0;
      }

      nav.show {
        display: flex;
      }
    }
	@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
:root {
  --primary: #007bff;
  --secondary: #00bcd4;
  --dark-blue: #003366;
  --light-bg: #f9fafc;
}
nav a:focus-visible {
  outline: 2px solid #00bcd4;
}
nav a:focus-visible {
  outline: 2px solid #00bcd4;
}
.btn-whatsapp {
  background-color: #25D366;
  color: white;
}
.btn-whatsapp:hover {
  background-color: #1ebe57;
}

	html {
  scroll-behavior: smooth;
}
