/* Couleurs nature */
:root {
    --vert-nature: #7A9E7E;
    --brun-bois: #3b2e2a;
    --beige-clair: #fefdf9;
    --vert-pale: #d3e7c0;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Lora', serif;
    color: #3e3e3e;
    background-color: var(--beige-clair);
    line-height: 1.6;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7); /* filtre léger */
    z-index: 1;
    backdrop-filter: blur(4px);
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2em;
  }
  
  .logo {
    max-width: 200px;
    margin-bottom: 1em;
  }
  
  .sous-titre {
    font-size: 1rem;
    margin-bottom: 0.5em;
    font-family: 'Playfair Display', serif;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2em;
  }
    
  /* SECTIONS */
  .section {
    padding: 4em 2em;
    background-color: #f5f5ef;
    text-align: center;

    border-top: 1px solid #e5e5dc;
    padding-top: 4em;
    margin-top: 4em;
  }
  
  .service-list {
    list-style-type: circle;
    margin: 2em auto;
    max-width: 600px;
    padding-left: 1.5em;
    text-align: left;
  }
  
  /* FOOTER */
  footer {
    background-color: var(--brun-bois);
    color: white;
    text-align: center;
    padding: 2em 1em;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    nav ul {
      flex-direction: column;
    }
  
    nav li {
      margin: 0.5em 0;
    }
  
    .section {
      padding: 3em 1em;
    }
  }

  /* Flèche animée */
  .scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-decoration: none;
    z-index: 10;
  }
  
  /* Cercle contenant la flèche */
  .scroll-down .circle {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatDown 2s infinite ease-in-out;
    transition: background 0.3s;
    backdrop-filter: blur(2px);
  }
  
  /* Animation douce de descente */
  @keyframes floatDown {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(10px);
    }
  }
  
  html {
    scroll-behavior: smooth;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2em;
    margin-top: 2em;
  }
  
  .card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    padding: 2em;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1em;
  }
  
  .card-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
  }
  
  .price {
    text-align: right;
    font-size: 0.95rem;
    font-weight: bold;
    color: #d66d6d;
  }
  
  .price span {
    display: block;
    font-weight: normal;
    color: #333;
    font-size: 0.85rem;
  }
  
  .card p {
    margin: 1em 0 0.5em;
  }
  
  .card ul {
    padding-left: 1.2em;
    margin-bottom: 1.5em;
  }
  
  .card li {
    list-style-type: disc;
    margin-bottom: 0.5em;
  }
  
  .button {
    align-self: flex-start;
    background-color: #3b2e2a;
    color: white;
    padding: 0.6em 1.2em;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .button:hover {
    background-color: #5c453f;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2em;
  }

  .whatsapp {
    max-width: 150px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10;
  }

  @media (max-width: 767px) {
    .whatsapp {
      display: none;
    }
  }
 
  .about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3em;
  }
  
  .about-text {
    flex: 1 1 50%;
  }
  
  .about-text h2 {
    font-size: 2rem;
    margin-bottom: 1em;
  }
  
  .about-text p {
    margin-bottom: 1em;
    line-height: 1.6;
  }
  
  .about-logos {
    display: flex;
    align-items: center;
    gap: 1.5em;
    margin: 1.5em 0;
  }
  
  .about-logos img {
    height: 50px;
    object-fit: contain;
  }
  
  .about-photo {
    flex: 1 1 40%;
    text-align: center;
  }
  
  .about-photo img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }

  .social-links {
    margin-top: 1em;
  }
  
  .social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5em;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    vertical-align: middle;
  }
  
  .social-links a:hover {
    color: #f4c2c2; /* ou une couleur verte/brune douce selon ton thème */
  }

  .soin-recommandation {
    font-style: italic;
    font-size: 1rem;
    color: #5c4a3d;
    text-align: center;
    margin: 2em auto;
    max-width: 700px;
    padding: 0.8em 1em;
    background: #f7f5f0;
  }
  
  a[href^="tel"] {
    pointer-events: none;
    color: inherit;
    text-decoration: none;
  }

  .horaires-texte,
  .horaires-note {
    margin-top: 1em;
    font-size: 1rem;
    color: #3e3e3e;
  }

  .horaires-lignes {
    margin: 1em 0;
  }

  .horaires-lignes p {
    margin: 0.5em 0;
    font-size: 1.05rem;
  }