/* Style pour le header et la barre de recherche - identique à map.css */
.header {
  position: relative; /* Pour pouvoir positionner la barre de recherche par rapport à l'en-tête */
}

.search-wrapper {
  display: flex;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: auto; /* Positionné à droite */
  position: absolute;
  bottom: -25px; /* Pour déborder sur le main */
  left: 15rem; /* Distance depuis la gauche */
  z-index: 15; /* Plus élevé que l'en-tête */
}

main {
  margin-top: 10px; /* Espace pour permettre à la barre de recherche de déborder */
}

/* Styles spécifiques à la page à propos */
.about-container {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 3rem 2rem;
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3rem;
  gap: 2rem;
}

.about-section.reversed {
  flex-direction: row-reverse;
}

.about-image {
  flex: 1;
  min-width: 350px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-content {
  flex: 2;
  min-width: 300px;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.about-subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #777;
  font-weight: 500;
  line-height: 1.4;
}

.about-text {
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .about-section, .about-section.reversed {
    flex-direction: column;
  }
  
  .about-image {
    margin-bottom: 1rem;
  }
}