/* === LOGO === */
.img-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover; /* pour bien garder le ratio */
}



/* === HEADER AVEC LOGO À GAUCHE === */

header {
  position: fixed;      /* Fixe la barre en haut */
  top: 0;
  left: 0;
  width: 100%;          /* Barre pleine largeur */
  background-color: #fff0f5;  
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 1000;        /* Pour être au-dessus des autres éléments */
  padding: 7px 20px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.logo h1 {
  font-size: 24px;
  color: #b85c8e;
  margin: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #b85c8e;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

/* === GALERIE === */
#galerie {
  background-color: #fdf4f7;
  padding: 50px 20px;
  text-align: center;
}

#galerie h2 {
  font-size: 32px;
  color: #b85c8e;
  margin-bottom: 10px;
}

.galerie-intro {
  color: #555;
  margin-bottom: 30px;
  font-size: 16px;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.galerie-grid img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galerie-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* === À PROPOS avec titre centré et image ronde === */
#a-propos {
  background-color: #fff5f9;
  padding: 60px 20px;
  text-align: center;
}

#a-propos h2 {
  font-size: 32px;
  color: #b85c8e;
  margin-bottom: 40px;
}

.a-propos-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: auto;
  text-align: left; /* pour aligner le texte à gauche */
}

.a-propos-texte {
  flex: 1;
  min-width: 280px;
}

.a-propos-texte p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.a-propos-photo {
  flex: 1;
  min-width: 200px;
  display: flex;
  justify-content: center;
}

.a-propos-photo img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%; /* rend la photo circulaire */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* === SERVICES === */

#services {
  background-color: #fff5f9; /* même que À propos et Galerie */
  padding: 60px 20px;
  text-align: center;
}

#services h2 {
  font-size: 32px;
  color: #b85c8e;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.service {
  background-color: #fff0f6;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-5px);
}

.service i {
  font-size: 40px;
  color: #b85c8e;
  margin-bottom: 15px;
}

.service h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.service p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}


/* === CONTACT === */
#contact {
  background-color: #fff5f9;
  padding: 60px 20px;
  text-align: center;
}

#contact h2 {
  font-size: 32px;
  color: #b85c8e;
  margin-bottom: 20px;
}

.contact-content {
  max-width: 600px;
  margin: auto;
}

.contact-content p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.wsp-btn {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 14px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-bottom: 30px;
}

.wsp-btn:hover {
  background-color: #1ebe57;
}

.wsp-btn i {
  margin-right: 10px;
  font-size: 20px;
}

.social-links p {
  font-size: 16px;
  color: #444;
  margin-bottom: 10px;
}

.social-links a {
  margin: 0 10px;
  font-size: 26px;
  color: #b85c8e;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #8e3c6a;
}
/* === FOOTER === */

footer {
  background-color: #f0f4f7; /* gris froid clair */
  color: #5a6270;            /* gris froid moyen pour le texte */
  padding: 12px 20px;        /* padding réduit */
  text-align: center;
  box-shadow: 0 -1px 3px rgba(0,0,0,0.03); /* ombre plus légère */
  font-family: 'Arial', sans-serif;
}

footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

footer h2 {
  margin-bottom: 6px;        /* moins d’espace en dessous */
  font-weight: 700;
  font-size: 1.3em;          /* taille réduite */
  color: #b85c8e;            /* rose assorti */
}

footer p {
  margin-bottom: 8px;        /* moins d’espace */
  font-size: 1em;            /* taille plus petite */
  font-weight: 500;
  color: #5a6270;
}

footer small {
  display: block;
  margin-top: 6px;
  font-size: 0.8em;          /* plus petit */
  color: #77838f;
}

footer p:hover {
  color: #b85c8e;
  transition: color 0.3s ease;
}
