/*
Theme Name: Erica Lima Esthétique
Description: Thème WordPress professionnel pour massage tantrique thérapeutique
Version: 1.0
Author: Erica Lima
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Lato:wght@300;400;500;600&display=swap');

/* CSS Variables - Design System */
:root {
  /* Erica Lima Esthétique Design System */
  --background: 0, 0%, 100%;
  --foreground: 345, 20%, 25%;

  --card: 0, 0%, 100%;
  --card-foreground: 345, 20%, 25%;

  /* Rose pâle principal */
  --primary: 350, 40%, 87%;
  --primary-foreground: 345, 20%, 25%;

  /* Or clair secondaire */
  --secondary: 44, 65%, 82%;
  --secondary-foreground: 345, 20%, 25%;

  --muted: 350, 30%, 96%;
  --muted-foreground: 345, 15%, 55%;

  --accent: 44, 65%, 82%;
  --accent-foreground: 345, 20%, 25%;

  --border: 350, 20%, 90%;
  --input: 350, 20%, 90%;

  --radius: 1rem;

  /* Custom design tokens */
  --rose-pale: 350, 40%, 87%;
  --or-clair: 44, 65%, 82%;
  --rose-soft: 350, 30%, 96%;
  --text-primary: 345, 20%, 25%;
  --text-muted: 345, 15%, 55%;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, hsl(var(--rose-pale)), hsl(var(--or-clair)));
  --gradient-soft: linear-gradient(180deg, hsl(var(--background)), hsl(var(--rose-soft)));

  /* Shadows */
  --shadow-soft: 0 10px 30px -10px hsl(var(--rose-pale) / 0.3);
  --shadow-elegant: 0 20px 40px -15px hsl(var(--rose-pale) / 0.4);

  /* Animations */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
  font-family: 'Lato', sans-serif;
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header Styles */
.site-header {
  padding: 1.5rem 0;
}

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

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 3rem;
  height: 3rem;
}

.site-title {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: hsl(var(--text-primary));
  text-decoration: none;
}

.whatsapp-btn {
  background-color: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.whatsapp-btn:hover {
  background-color: hsl(var(--accent) / 0.9);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: 3rem;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-highlight {
  color: #f8bfce;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  font-size: 1rem;
}

.btn-hero {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn-hero:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn-secondary {
  background-color: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

.btn-cta {
  background: var(--gradient-primary);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-soft);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-elegant);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-bg-soft {
  background-color: hsl(var(--rose-soft) / 0.3);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: hsl(var(--text-primary));
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: hsl(var(--text-muted));
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
  line-height: 1.7;
}

/* Grid System */
.grid {
  display: grid;
  gap: 2rem;
}

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

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.card {
  background-color: hsl(var(--card));
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}

.card:hover {
  box-shadow: var(--shadow-elegant);
  transform: translateY(-0.5rem);
}

.card-icon {
  width: 4rem;
  height: 4rem;
  background-color: hsl(var(--primary) / 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  transition: var(--transition-bounce);
}

.card:hover .card-icon {
  transform: scale(1.1);
  background-color: hsl(var(--primary) / 0.2);
}

.card-title {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: hsl(var(--text-primary));
  text-align: center;
  margin-bottom: 0.5rem;
}

.card-description {
  color: hsl(var(--text-muted));
  text-align: center;
  line-height: 1.6;
}

/* Pricing Cards */
.pricing-card {
  position: relative;
  background-color: hsl(var(--card));
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
  text-align: center;
}

.pricing-card.popular {
  border: 2px solid hsl(var(--primary) / 0.5);
  transform: scale(1.05);
}

.pricing-card:hover {
  box-shadow: var(--shadow-elegant);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: var(--shadow-soft);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(var(--text-primary));
  margin: 1rem 0;
}

.price-original {
  font-size: 1.1rem;
  color: hsl(var(--text-muted));
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.features-list {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--text-muted));
  font-size: 0.875rem;
}

.check-icon {
  color: hsl(var(--primary));
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  background-color: white;
  color: black;
  padding: 3rem 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-section a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-section a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-nav {
    padding: 0 1rem;
  }
  
  .hero-content {
    padding: 3rem 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: none;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }

.rounded { border-radius: 0.5rem; }
.rounded-lg { border-radius: var(--radius); }
.rounded-full { border-radius: 9999px; }

.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-elegant { box-shadow: var(--shadow-elegant); }

.transition-smooth { transition: var(--transition-smooth); }
.transition-bounce { transition: var(--transition-bounce); }