/* Nature & Vi - Naturopathie, Nutrition et Bien-être */

:root {
  /* Nouvelle palette douce et zen - Inspirée de sites bien-être */
  --rose-poudre: #E8B4A8;
  --vert-sauge: #A8C5B8;
  --beige-creme: #FAF7F5;
  --marron-chocolat: #5D4037;
  --peche: #F4C9B8;
  
  /* Couleurs complémentaires */
  --blanc: #FFFFFF;
  --gris-clair: #F8F8F8;
  --gris-moyen: #E0E0E0;
  --noir-doux: #2C2C2C;
  
  /* Couleurs référencées dans le design */
  --rose-fuchsia: #E8B4A8;
  --vert-emeraude: #A8C5B8;
  --orange-soleil: #E8A87C;
  
  /* Typographie */
  --font-principale: 'Montserrat', sans-serif;
  --font-secondaire: 'Playfair Display', serif;
}

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

body {
  font-family: var(--font-principale);
  color: var(--marron-chocolat);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--beige-creme);
  padding-top: 95px;
}

/* Bandeau coloré tout en haut - VERSION SIMPLIFIÉE MOBILE */
.top-color-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #E8B4A8;
  z-index: 9999;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* === BANNIÈRE PROMO (TEMPORAIRE) === */
.promo-banner {
  background: linear-gradient(135deg, #E8B4A8 0%, #A8C5B8 100%);
  padding: 1rem 2rem;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.promo-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.promo-badge {
  background: var(--marron-chocolat);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.promo-text {
  color: var(--marron-chocolat);
  font-size: 1.1rem;
  font-weight: 600;
}

.promo-cta {
  background: var(--marron-chocolat);
  color: white;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.promo-cta:hover {
  background: var(--vert-sauge);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  .promo-banner {
    padding: 1rem;
  }
  
  .promo-banner-content {
    gap: 1rem;
  }
  
  .promo-text {
    font-size: 0.95rem;
  }
  
  .promo-badge {
    font-size: 0.8rem;
  }
}
/* === FIN BANNIÈRE PROMO === */

/* Navigation */
nav {
  background: var(--blanc);
  box-shadow: 0 2px 15px rgba(93, 64, 55, 0.08);
  position: fixed;
  top: 5px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.8rem 0;
  overflow: visible;
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-nav {
  height: 70px;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--marron-chocolat);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

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

.nav-links a.active {
  color: var(--rose-poudre);
  border-bottom: 2px solid var(--rose-poudre);
}

.btn-reserver {
  background: var(--rose-poudre) !important;
  color: white !important;
  padding: 0.85rem 2rem !important;
  border-radius: 30px !important;
  border: none !important;
  transition: all 0.3s ease !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  letter-spacing: 0.3px !important;
}

.btn-reserver:hover {
  background: var(--peche) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 180, 168, 0.4);
}

/* Menu mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 0.5rem;
}

.menu-toggle span {
  width: 30px;
  height: 4px;
  background: var(--marron-chocolat);
  border-radius: 3px;
  transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .nav-links {
    position: absolute;
    top: 85px;
    left: 0;
    width: 100%;
    background: var(--blanc);
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transform: translateY(-150%);
    transition: transform 0.3s ease, visibility 0.3s, opacity 0.3s;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
  
  .nav-links.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  
  .logo-nav {
    height: 60px;
  }
  
  .nav-container {
    padding: 0 1.5rem;
  }
}

/* Hero Section - Style zen et immersif */
.hero {
  background: linear-gradient(135deg, rgba(168, 197, 184, 0.75) 0%, rgba(232, 180, 168, 0.65) 100%),
              url('../images/bandeau.jpg') center/cover;
  background-attachment: fixed;
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  display: none;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-secondaire);
  font-size: 3.5rem;
  color: var(--blanc);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(93, 64, 55, 0.2);
}

.hero-name {
  font-size: 2rem;
  color: var(--rose-poudre);
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-qualifications {
  font-size: 1.15rem;
  color: var(--blanc);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.8px;
  opacity: 0.95;
}

.hero .slogan {
  font-size: 1.4rem;
  color: var(--blanc);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.hero .sous-titre {
  font-size: 1.05rem;
  color: var(--blanc);
  margin-bottom: 2.5rem;
  line-height: 1.9;
  font-weight: 300;
}

.cta-button {
  display: inline-block;
  background: var(--rose-poudre);
  color: var(--blanc);
  padding: 1.1rem 2.8rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(232, 180, 168, 0.3);
}

.cta-button:hover {
  background: var(--peche);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(232, 180, 168, 0.4);
}

/* Sections */
section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-subtitle {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--rose-poudre);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

h2 {
  font-family: var(--font-secondaire);
  font-size: 2.8rem;
  color: var(--marron-chocolat);
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

h3 {
  font-family: var(--font-secondaire);
  font-size: 1.6rem;
  color: var(--vert-sauge);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
  font-size: 1.05rem;
  color: var(--marron-chocolat);
  line-height: 1.9;
  opacity: 0.9;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}

.card {
  background: var(--blanc);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 5px 25px rgba(93, 64, 55, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(232, 180, 168, 0.2);
  border-color: var(--rose-poudre);
}

.card-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--rose-poudre) 0%, var(--peche) 100%);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(232, 180, 168, 0.25);
  transition: all 0.4s ease;
}

.card-icon i {
  font-size: 2.3rem;
  color: white;
}

.card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 25px rgba(232, 180, 168, 0.35);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card ul {
  list-style: none;
  margin-top: 1rem;
}

.card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--vert-emeraude);
  font-weight: bold;
}

/* Approche Section */
.approche {
  background: var(--gris-clair);
}

.approche-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.approche-text {
  font-size: 1.1rem;
  line-height: 1.8;
}

.approche-text strong {
  color: var(--rose-fuchsia);
}

.approche-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.approche-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Spécialités */
.specialites-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.specialite-card {
  background: linear-gradient(135deg, var(--vert-sauge) 0%, var(--rose-poudre) 100%);
  color: var(--blanc);
  padding: 3rem 2rem;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(168, 197, 184, 0.25);
  transition: all 0.4s ease;
}

.specialite-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(168, 197, 184, 0.35);
}

.specialite-card h3 {
  color: var(--blanc);
  margin-bottom: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.specialite-icon {
  display: none; /* Pictogrammes enlevés */
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  aspect-ratio: 1/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Témoignages */
.temoignages {
  background: var(--gris-clair);
}

.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.temoignage {
  background: var(--blanc);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  position: relative;
}

.temoignage::before {
  content: '"';
  font-size: 4rem;
  color: var(--rose-fuchsia);
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--font-secondaire);
}

.temoignage-text {
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.temoignage-author {
  font-weight: 600;
  color: var(--vert-sauge);
  margin-bottom: 0.3rem;
}

.temoignage-date {
  font-size: 0.85rem;
  color: var(--marron-chocolat);
  opacity: 0.7;
  font-style: italic;
}

.stars {
  color: var(--orange-soleil);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #C9A399 0%, #B89B8E 100%);
  color: var(--blanc);
  padding: 4rem 2rem 1.5rem;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-section h3 {
  color: var(--blanc);
  margin-bottom: 1.2rem;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.footer-section p {
  margin: 0.6rem 0;
  line-height: 1.8;
}

.footer-section p i {
  display: inline-block;
  width: 20px;
  text-align: center;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.footer-section a {
  color: var(--blanc);
  text-decoration: none;
  display: block;
  margin: 0.6rem 0;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.footer-section a:hover {
  opacity: 1;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--rose-poudre);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  padding: 0;
}

.social-links a:hover {
  background: var(--peche);
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  color: var(--blanc);
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero .slogan {
    font-size: 1.2rem;
  }
  
  .approche-content {
    grid-template-columns: 1fr;
  }
  
  .specialites-grid {
    grid-template-columns: 1fr;
  }
  
  h2 {
    font-size: 2rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Page Massages - Layout spécifique */
.massage-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 2rem;
}

.massage-detail.reverse {
  direction: rtl;
}

.massage-detail.reverse > * {
  direction: ltr;
}

.massage-content ul li {
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
  color: var(--marron-chocolat);
}

@media (max-width: 968px) {
  .massage-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .massage-detail.reverse {
    direction: ltr;
  }
}
