/* 
 * Laure Le Goff - Wellbeing & Therapy Website
 * Design: Zen, Modern, Clean, "Épuré"
 */

:root {
  /* Palette Inspired by Nature/Lotus */
  --color-primary: #8e7dbe;
  /* Soft Purple/Lotus */
  --color-secondary: #9cb0a8;
  /* Sage Green */
  --color-accent: #d4a5a5;
  /* Soft Pink */
  --color-text: #4a4a4a;
  /* Dark Grey for readability */
  --color-bg: #fdfdfd;
  /* Off-white */
  --color-bg-alt: #f4f7f6;
  /* Very light grey/green tint */
  --color-white: #ffffff;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;

  --spacing-section: 4rem;
  --spacing-element: 1.5rem;

  --radius-image: 10px;
}

/* Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.8;
  font-size: 1.1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--color-secondary);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
  color: var(--color-secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

/* Layout Containers */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: var(--spacing-section) 0;
}

section.alt-bg {
  background-color: var(--color-bg-alt);
}

/* Header */
header.hero {
  width: 100%;
  overflow: hidden;
}

header.hero img {
  width: 100%;
  height: auto;
  /* First image (bandeau) - explicitly no border radius if full width, 
     but user said "Toutes les images suivantes" referring to images AFTER the bandeau. */
  border-radius: 0;
}

/* Intro Section */
.intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro p {
  margin-bottom: 1rem;
}

.intro img {
  margin: 2rem auto;
  border-radius: var(--radius-image);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Prestations */
.prestations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .prestations-grid {
    grid-template-columns: 1fr;
  }
}

/* Lieu */
.lieu-content {
  text-align: center;
}

.lieu-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.lieu-images img {
  border-radius: var(--radius-image);
  max-width: 400px;
}

.map-container {
  margin: 2rem auto;
  border-radius: var(--radius-image);
  overflow: hidden;
  max-width: 800px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Tarifs */
.tarifs-list {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-image);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #eee;
  padding: 1rem 0;
}

.tarif-item:last-child {
  border-bottom: none;
}

.tarif-name {
  font-weight: 700;
  color: var(--color-text);
}

.tarif-price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.2rem;
}

.tarifs-img {
  margin: 3rem auto;
  border-radius: var(--radius-image);
  max-width: 800px;
}

/* A venir */
.events {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.event-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-image);
  border-left: 5px solid var(--color-accent);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.event-card h3 {
  color: var(--color-text);
  margin-bottom: 1rem;
}

/* Qui suis-je */
.bio-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.bio-text {
  text-align: justify;
}

.bio-text p {
  margin-bottom: 1rem;
}

/* Objectifs & Footer */
.objectifs-list {
  list-style: none;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.objectifs-list li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed #ddd;
}

.objectifs-list li::before {
  content: '•';
  color: var(--color-primary);
  margin-right: 10px;
}

.footer-quote {
  text-align: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.footer-logo {
  text-align: center;
  margin-top: 3rem;
}

.footer-logo img {
  border-radius: var(--radius-image);
  margin: 0 auto;
}

/* Utilities */
.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* Contact info in Lieu */
.contact-info {
  font-size: 1.2rem;
  margin: 1rem 0;
}

/* Highlighted Quote */
.quote-highlight {
  font-style: italic;
  color: orange;
}