/* --- Variables & Reset --- */
:root {
  --primary-color: #4a2840;
  --primary-hover: #331b2c;
  --accent-color: #d4af37;
  --text-dark: #2c2529;
  --text-light: #6e656a;
  --bg-light: #fcfaf7;
  --bg-white: #ffffff;
  --shadow: 0 10px 30px rgba(74, 40, 64, 0.06);
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

body {
  line-height: 1.6;
}

.container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 80px 0;
}

/* --- Typographie --- */
h1,
h2,
h3,
.logo,
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.section-title {
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 50px;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
}

/* --- Boutons --- */
.btn-primary,
.btn-secondary,
.logo,
.nav-links a,
.menu-dropdown a {
  text-decoration: none;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  display: block;
}

.logo {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-size: 0.95rem;
  border: none;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  padding: 12px 24px;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

/* --- Navigation --- */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: var(--transition);
}

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

.logo {
  font-size: 1.6rem;
  color: var(--primary-color);
}

.logo span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  display: block;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.cta-nav {
  background-color: var(--primary-color);
  color: white !important;
  padding: 8px 16px;
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

/* Dropdown Menu Mobile */
.menu-dropdown {
  display: none;
  position: fixed;
  top: 75px;
  inset: 75px 0 0 0;
  background-color: var(--bg-white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.menu-dropdown.active {
  display: flex;
}

.menu-dropdown a {
  color: var(--text-dark);
  font-size: 1.1rem;
  padding: 5px 0;
}

/* --- Hero Section --- */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--bg-white);
  padding-top: 80px;
}

.hero-content {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  font-weight: 300;
}

/* --- Grilles communes --- */
.testimonials-grid,
.gallery-grid,
.footer-grid {
  display: grid;
  gap: 30px;
}

/* Centre le bloc du bouton sous la grille de témoignages */
.testimonial-cta {
  text-align: center;
  margin-top: 40px; /* Espace par rapport aux cartes de témoignages */
}

.btn-google-review {
  display: inline-block;
  padding: 12px 30px;
  background-color: #ffffff;
  color: #4a2840;
  border: 2px solid #4a2840;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-google-review:hover {
  background-color: #4a2840;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(74, 40, 100, 0.15);
}

/* --- Section Soins Proposés --- */
.services {
  background-color: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  text-decoration: none;
  color: currentColor;
  background-color: var(--bg-light);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(74, 40, 64, 0.02);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid rgba(74, 40, 64, 0.03);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(212, 175, 55, 0.3);
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 8px;
}

.service-header h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  line-height: 1.3;
}

.service-header .price {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.15rem;
  white-space: nowrap;
  background-color: rgba(74, 40, 64, 0.07);
  padding: 4px 10px;
  border-radius: 4px;
}

.service-card .duration {
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card .description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.complex-card {
  background-color: #fbf6f9;
}

.service-card .extra-info {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed rgba(74, 40, 64, 0.15);
  font-size: 0.85rem;
  color: var(--text-dark);
}

.services-footer {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
  padding: 20px;
  background-color: #fcfaf7;
  border-radius: 8px;
  border: 1px solid rgba(214, 175, 55, 0.2);
}

.gift-banner {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.displacements {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* --- Section Qui Suis-je ? --- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
  gap: 50px;
}

.about-image {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.about-locations {
  margin-top: 25px;
  padding: 20px;
  background-color: var(--bg-light);
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
  font-size: 0.9rem;
  width: 100%;
  max-width: 280px;
}

.about-locations p {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.about-locations p:last-child {
  margin-bottom: 0;
}

.about-text h2 {
  text-align: left;
}
.about-text h2::after {
  margin: 15px 0 25px 0;
}

.about-text p {
  margin-bottom: 18px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.about-text .lead {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 500;
}

.benefits-block {
  margin: 30px 0;
  padding: 25px;
  background-color: #faf6f8;
  border-radius: 8px;
}

.benefits-block h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  font-size: 0.95rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-callout {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--primary-color) !important;
  font-weight: 500;
  margin: 25px 0;
}

.collaboration-note {
  font-size: 0.85rem !important;
  border-top: 1px solid rgba(74, 40, 64, 0.1);
  padding-top: 15px;
}

.lieu-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0;
}

.lieu-item {
  display: flex;
  align-items: center;
  background-color: #fcfaf7;
  padding: 15px 20px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  color: #2c2529;
  font-weight: 500;
  font-size: 1.05rem;
  border: 1px solid rgba(74, 40, 64, 0.05);
  box-shadow: 0 4px 15px rgba(74, 40, 64, 0.02);
  transition: all 0.3s ease;
}

.lieu-item:hover {
  transform: translateX(4px);
  background-color: #f5eff3;
  border-color: rgba(74, 40, 64, 0.1);
}

/* --- Témoignages --- */
.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.testimonial-card,
.gallery-grid img {
  border-radius: 8px;
  transition: var(--transition);
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 40px;
  box-shadow: var(--shadow);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}
.stars {
  color: var(--accent-color);
  margin-bottom: 15px;
}
.comment {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
}
.client-name {
  font-weight: 500;
  color: var(--primary-color);
}

.testimonials,
.bg-light {
  background-color: var(--bg-light);
}

/* --- Galerie --- */
.gallery-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow);
}

/* --- Footer & Contact --- */
.footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  padding-bottom: 40px;
}

.footer h3 {
  font-size: 1.8rem;
  color: var(--bg-white);
  margin-bottom: 25px;
}

.footer-info p {
  margin-bottom: 15px;
}
.footer-info a {
  color: white;
  text-decoration: none;
}
.footer-info .phone {
  font-size: 1.4rem;
  font-weight: 500;
}
.footer .btn-secondary {
  border-color: white;
  color: white;
  margin-top: 15px;
}

.footer .btn-secondary:hover {
  background-color: white;
  color: var(--primary-color);
}

.hours-list {
  list-style: none;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list li span {
  font-weight: 500;
}

.footer-bottom {
  text-align: center;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
