/* ------------------- */
/* RESET ET BASE GÉNÉRALE */
/* ------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #e5dfd5;
  color: #333;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ------------------- */
/* CONTAINER */
/* ------------------- */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* ------------------- */
/* HEADER */
/* ------------------- */

.site-header {
  background-color: #dcd7cf;
  padding: 5px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 120px;
  width: auto;
  display: block;
}


/* ------------------- */
/* FOOTER */
/* ------------------- */

.site-footer {
  background-color: #dcd7cf;
  color: #444;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: #222;
}

.footer-section a {
  color: #222;                   /* Gris très foncé, bonne lisibilité */
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #000;                   /* Noir au survol */
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #aaa;
}

/* ------------------- */
/* TITRES GÉNÉRAUX */
/* ------------------- */

h1, h2, h3 {
  margin-bottom: 20px;
  font-weight: 600;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.8rem;
}

/* ------------------- */
/* BOUTONS */
/* ------------------- */

.btn {
  display: inline-block;
  background-color: #333;
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn:hover {
  background-color: gold;
  color: #111;
}

/* ------------------- */
/* RESPONSIVE */
/* ------------------- */

@media (max-width: 768px) {
  .header-content,
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }
}

/* ------------------- */
/* PAGE ACCUEIL */
/* ------------------- */
.accueil .hero {
  padding: 80px 0;
  text-align: center;
}

.accueil .hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #111;
}

.accueil .hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.accueil .cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}


/* ------------------- */
/* HEADER – NAVIGATION PRINCIPALE */
/* ------------------- */

.site-nav ul {
  list-style: none;
  display: flex;             /* Liens côte à côte */
  gap: 25px;                 /* Espacement entre chaque lien */
  margin: 0;
  padding: 0;
}

.site-nav li {
  display: inline-block;
}

.site-nav a {
  color: #333;                   /* Gris doux */
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.site-nav a:hover {
  color: #000;                   /* Noir au survol */
}

.site-nav a:visited {
  color: #333;
}

/* ------------------- */
/* FORMULAIRE DE CONTACT */
/* ------------------- */
.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-form .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #e0e0e0; /* Gris très clair */
  font-size: 1rem;
}

.contact-form input:hover,
.contact-form textarea:hover {
  background-color: #d5d5d5;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  margin-top: 20px;
  padding: 12px 25px;
  font-size: 1rem;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form .btn:hover {
  background-color: #000;
}

/* ------------------- */
/* NOTE FORMULAIRE CONTACT */
/* ------------------- */
.form-note {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  text-align: left;
}

/* ------------------- */
/* PAGE DE CONFIRMATION DE CONTACT */
/* ------------------- */
.contact-confirmation {
  text-align: center;
  padding: 60px 20px;
}

.contact-confirmation .confirmation-message {
  font-size: 1.2rem;
  color: #444;
  margin-top: 20px;
  line-height: 1.6;
}

/* ------------------- */
/* SECTION SERVICE (services.php) */
/* ------------------- */
.service-box {
  background-color: #d5d5d5;
  padding: 30px;
  margin: 40px auto;
  border-radius: 12px;
  max-width: 800px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-title {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 15px;
  font-weight: 600;
  text-align: center;
}

.service-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #444;
  text-align: center;
}

/* ------------------- */
/* FOOTER : réorganisation mobile */
/* ------------------- */
.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section {
  flex: 1 1 250px;
  min-width: 220px;
}

/* Ordre mobile : contact en premier */
@media screen and (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    order: unset;
  }

  .footer-contact {
    order: -1; /* Contact tout en haut */
  }

  .footer-links {
    order: 0;
  }

  .footer-slogan {
    order: 1;
  }
}

/* ------------------- */
/* Image dans la section hero (Index.php) */
/* ------------------- */
.hero-image {
  width: 100%;
  height: auto;                /* conserve les proportions d'origine */
  border-radius: 10px;
  margin: 20px 0;
  display: block;
}








