body { font-family: Arial, sans-serif; margin: 0; padding: 0; }
header, footer { background: #f5f5f5; padding: 20px; text-align: center; }
main { max-width: 1200px; margin: auto; padding: 20px; }
.center { text-align: center; }
.rounded { border-radius: 10px; }
.services   { display: flex; justify-content: center; gap: 40px; margin: 40px 0; }
.services div, .tarifs div { text-align: center; }
.highlight { background: #edeaeddb; padding: 40px;  } /*margin: 40px 0;*/
.accroche {
  font-family: 'Parisienne', cursive;
  font-size: 2.2em;
  color: #a52417;
}
.slogan {
  font-family: 'Times New Roman', 'Georgia', Times, serif;
  font-size: 2em;
  margin-bottom: 20px;
  text-emphasis: center;
}
.icone {
  width: auto;
  height: 96px;
  }
button, a.button {
  display: inline-block;
  background: #000000;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
}

.center .button {
  margin: 20px auto 0 auto;
  text-align: center;
}

ul { list-style: none; padding: 0; }

h1 {
  font-family: 'Imperial Script', cursive;
  /*  font-family: 'Times New Roman', 'Georgia', Times, serif; */
  text-align: center;
  font-size: 2.5em;
}

h2 {
  font-family: 'Arial', cursive;
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}

.services ul li::before{
  content: "✔";
  color: #2e7d32;   /* vert, à adapter */
  font-weight: bold;
  margin-right: 0.6em;
  flex-shrink: 0;   /* empêche le check de passer à la ligne */
}

/* Chaque ligne devient un conteneur flex */
.services ul li {
  display: flex;
  align-items: flex-start; /* aligne bien le check en haut */
  margin-bottom: 0.5em;
}

/* Listes sans puces + retrait */
.services ul {
  list-style: none;
  margin: 0;
  padding-left: 1.5em; /* ajuste ici pour décaler le texte à droite */
}

.tarifs-intro {
  margin-left: 1.5em;  
  padding: 40px 0 0 0; 
}

.tarifs-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-logo {
  height: 48px;
  width: auto;
}

.site-title {
  flex: 1;
  text-align: center;
  margin: 0;
  font-size: 2em;
  line-height: 1.1;
}

/* Force the site title to render on two lines (large screens) */
.site-title-line1,
.site-title-line2 {
  display: block;
}

.site-nav {
  display: flex;
  gap: 20px;
}

.site-nav a {
  color: #a52417;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s;
}

.site-nav a:hover {
  background: #edeaeddb;
}

.site-title-short {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6em;
  cursor: pointer;
  color: #a52417;
}

  /* --- Responsive design --- */
@media (max-width: 900px) {
  .services, .tarifs {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  main {
    padding: 10px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 1em;
  }
  header, footer {
    padding: 10px;
  }
  .header-container {
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    width: 100%;
  }
  header {
    position: relative;
  }
  .site-logo {
    order: 1;
    height: 36px;
    width: auto;
    flex: 0 0 auto;
    margin-right: 8px;
  }
  .site-title {
    display: none;
  }
  .site-title-short {
    display: block;
    order: 2;
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
    font-size: 1.0em;
    font-weight: bold;
    color: #a52417;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-toggle {
    order: 3;
    display: block;
    margin-left: auto;
  }
  .site-nav {
    order: 4;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f5f5f5;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
    margin-top: 0;
    padding: 10px 0;
    z-index: 1000;
  }
  .site-nav.open {
    display: flex;
  }
  .highlight {
    padding: 20px;
    margin: 20px 0;
  }
  .services, .tarifs {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .services div, .tarifs div {
    width: 100%;
    margin-bottom: 10px;
  }
  img.rounded {
    width: 100%;
    height: auto;
    max-width: 300px;
  }
  .icone {
    width: auto;
    height: 80px;
    max-width: 100%;
  }
  
  h1, h2 {
    font-size: 1.5em;
  }

  /* Accessibility helper */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
}

/* formulaire de contact */

.contact-form {
  max-width: 400px;
  margin: 0 auto;
  text-align: left;
}
.contact-form div {
  margin-bottom: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1em;
  box-sizing: border-box;
}

.success-message {
  color: #207520;
  background: #e6fbe6;
  border: 1px solid #b2e2b2;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  text-align: center;
}
.error-message {
  color: #a52417;
  background: #fdeaea;
  border: 1px solid #f5bcbc;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 6px;
  text-align: center;
}