/* Reset */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Boutons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #8da9c5;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #728b9f;
}

/* HEADER */
.site-header {
  background: #fff;
  padding: 15px 5%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
}

.sophro-text {
  font-size: 1.2em;
  font-weight: bold;
  margin-left: 10px;
}

.navigation a {
  margin-left: 20px;
  font-weight: bold;
}

/* HERO */
.hero {
  background: #a8bed2;
  padding: 60px 5%;
}

.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.hero-text p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
}

.hero-image {
  flex: 1;
  min-width: 280px;
}

.hero-image img {
  max-width: 100%;
  border-radius: 8px;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 colonnes égales */
  gap: 40px; /* espace entre les colonnes */
  text-align: center;
  padding: 60px 5%;
  background: #f5f8fa;
}

.service {
  flex: 1;
  min-width: 220px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.services .service:last-child h3 {
  text-align: center; /* garde le titre centré */
}

.services .service:last-child ul {
  text-align: left;   /* liste alignée à gauche */
  list-style-type: disc;
  padding-left: 20px;
}

.services .service:last-child ul li {
  margin-bottom: 5px;
}

.icon {
  font-size: 2em;
  background: #a8bed2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* SECTION SOPHROLOGIE */
.sophro-section {
  padding: 60px 5%;
  background: #f9f9f9;
}

.sophro-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.sophro-left {
  flex: 1;
  min-width: 280px;
}

.sophro-left h4 {
  font-size: 0.9em;
  font-weight: bold;
  color: #444;
  margin-bottom: 10px;
}

.sophro-left h2 {
  font-size: 2em;
  line-height: 1.3;
}

.sophro-right {
  flex: 1;
  min-width: 280px;
}

.sophro-right p {
  margin-bottom: 1em;
}

/* SECTION À PROPOS */
.about-me-section {
  padding: 60px 5%;
  background: #fff;
}

.about-me-content {
  display: flex;
  flex-direction: row;   
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image img {
  max-width: 350px;         
  width: 100%;
  border-radius: 12px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);     
}

.about-text-container {
  flex: 1;
  min-width: 280px;
}



/* FOOTER */
footer {
  background-color: #333333 !important;
  color: #FFFFFF;
  padding: 50px 10%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 30px;
}

.contact-info, .address-info, .schedule-info {
  flex: 1;
  min-width: 200px;
}

.contact-info p, .address-info p, .schedule-info p {
  margin: 0;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    text-align: center;
  }

  .navigation {
    margin-top: 15px;
  }

  .navigation a {
    margin: 0 10px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }
   .logo img {
    height: 60px; /* Ajuste selon ce que tu veux */
    width: auto; 
}
  .services {
    grid-template-columns: 1fr; 
    gap: 20px;                  
    text-align: center;         
  }

  .services .service {
    width: 100%;                 
  }

  .service-item {
    width: 80%;
  }

  .about-me-content {
    flex-direction: column;
  }

  .about-image {
    order: -1;
    margin-bottom: 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
