/* style.css */

/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typographie et couleurs globales */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}

/* Conteneur principal */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

/* En-tête */
header {
  text-align: center;
  padding: 3rem 1rem;
  background: #4a90e2;
  color: white;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.2rem;
}

/* Sections */
section {
  padding: 3rem 1rem;
  border-bottom: 1px solid #ddd;
}

section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #4a90e2;
}

/* Coordonnées */
.contact-info {
  text-align: center;
  font-size: 1.1rem;
}

.contact-info p {
  margin: 0.5rem 0;
}

/* Carte */
.map {
  text-align: center;
}

.map iframe {
  width: 100%;
  max-width: 600px;
  height: 350px;
  border: none;
  border-radius: 8px;
}

/* Bouton rendez-vous */
.btn {
  display: inline-block;
  background: #4a90e2;
  color: white;
  padding: 0.8rem 1.5rem;
  margin-top: 1rem;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #357ab8;
}

/* Pied de page */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #eee;
  font-size: 0.9rem;
}

/* Responsivité */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  section {
    padding: 2rem 1rem;
  }

  .map iframe {
    height: 250px;
  }
}