/* ============================================================
   LUMIÈRE SALON — HOME PAGE STYLES
   home.css
   ============================================================ */

/* ─── Hero Section ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-heading {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 600;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.hero-heading em {
  font-style: italic;
  color: var(--gold);
}

.hero-text {
  font-size: 18px;
  line-height: 1.75;
  color: var(--cream-dim);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-review-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-elevated);
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-dark);
  color: var(--cream);
}

.hero-review-stars {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 2px;
}

.hero-review-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--cream-dim);
  letter-spacing: 0.2px;
}

/* ─── Hero Right ─────────────────────────────────────────────── */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-blob {
  position: absolute;
  width: 115%;
  height: 115%;
  background: linear-gradient(135deg, rgba(199,167,108,0.15), rgba(139,80,75,0.1));
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  z-index: 0;
  animation: blobMorph 12s ease-in-out infinite alternate;
}

@keyframes blobMorph {
  0% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  50% { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
  100% { border-radius: 55% 45% 65% 35% / 45% 55% 45% 55%; }
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  width: 88%;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  overflow: hidden;
  animation: blobMorph 12s ease-in-out infinite alternate;
  box-shadow: 0 24px 64px rgba(106, 95, 87, 0.18);
}

.hero-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: 78% center;
  display: block;
}

.hero-gold-circle {
  position: absolute;
  top: -28px;
  right: -28px;
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 2;
  opacity: 0.85;
}

.hero-gold-circle::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: white;
}

.hero-floating-deco {
  position: absolute;
  bottom: 24px;
  left: -24px;
  width: 90px;
  height: 90px;
  background: rgba(139,80,75,0.25);
  border-radius: 50%;
  z-index: 2;
  opacity: 0.7;
}

.hero-floating-card {
  position: absolute;
  bottom: -24px;
  left: -40px;
  background: var(--bg-elevated);
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 1px solid var(--border-dark);
}

.hero-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-card-value {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
}

/* ─── Services Preview Section ───────────────────────────────── */
.services-preview {
  padding: 120px 0;
  background: var(--bg-section);
}

.services-preview .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: none;
  transition: all 0.4s ease;
  border: 1px solid var(--border-dark);
  position: relative;
  overflow: hidden;
  color: var(--cream);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199,167,108,0.3);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: transparent;
  border: 1px solid rgba(199,167,108,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
  color: var(--gold);
}

.service-icon svg {
  stroke: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.service-card:hover .service-icon svg {
  stroke: var(--bg);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.service-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-dim);
}

.services-preview-cta {
  text-align: center;
  margin-top: 56px;
}

/* ─── About Preview Section ──────────────────────────────────── */
.about-preview {
  padding: 120px 0;
  background: var(--bg);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.about-image-wrap {
  position: relative;
}

.about-preview-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  display: block;
}

.about-image-deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 20px;
  opacity: 0.15;
  z-index: 0;
}

.about-preview-text {
  position: relative;
  z-index: 1;
}

.about-preview-text .section-heading {
  font-size: 44px;
}

.about-preview-para {
  font-size: 16px;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 18px;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.stat-card {
  background: var(--bg-elevated);
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: none;
  border: 1px solid var(--border-dark);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream-dim);
  line-height: 1.4;
}

/* ─── Gallery Preview Section ────────────────────────────────── */
.gallery-preview {
  padding: 120px 0;
  background: var(--bg-section);
}

.gallery-preview .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border-radius: var(--radius-card);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-card);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-eye-icon {
  color: var(--white);
  font-size: 28px;
  transform: scale(0.7);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-eye-icon {
  transform: scale(1);
}

.gallery-preview-cta {
  text-align: center;
}

/* ─── Testimonials Preview ───────────────────────────────────── */
.testimonials-preview {
  padding: 120px 0;
  background: var(--bg);
}

.testimonials-preview .section-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-elevated);
  border-radius: var(--radius-card);
  padding: 40px 36px 36px;
  box-shadow: none;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid var(--border-dark);
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote-mark {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 80px;
  color: rgba(199,167,108,0.2);
  opacity: 1;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--cream-dim);
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-dark);
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}

.testimonial-author-label {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}

/* ─── Home CTA Strip ─────────────────────────────────────────── */
.home-cta {
  padding: 120px 0;
  background: #080807;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-cta::before,
.home-cta::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.home-cta::before {
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(199,167,108,0.14) 0%, transparent 70%);
}

.home-cta::after {
  bottom: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(199,167,108,0.08) 0%, transparent 70%);
}

.home-cta .section-heading {
  color: var(--white);
  font-size: 52px;
  margin-bottom: 20px;
}

.home-cta .section-heading::after {
  margin: 20px auto 0;
}

.home-cta-sub {
  font-size: 18px;
  color: var(--cream-dim);
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.home-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 48px;
  }

  .hero-heading {
    font-size: 58px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-left {
    text-align: center;
  }

  .hero-heading {
    font-size: 48px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-review-card {
    justify-content: center;
  }

  .hero-right {
    order: -1;
  }

  .hero-image {
    height: 400px;
  }

  .hero-image-wrap {
    width: 100%;
  }

  .hero-blob {
    width: 105%;
    height: 105%;
  }

  .services-preview,
  .about-preview,
  .gallery-preview,
  .testimonials-preview,
  .home-cta {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-preview-img {
    height: 400px;
  }

  .gallery-masonry {
    columns: 2;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-cta .section-heading {
    font-size: 38px;
  }

  .about-preview-text .section-heading {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 42px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-masonry {
    columns: 1;
  }

  .about-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-review-card {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .home-cta .section-heading {
    font-size: 32px;
  }

  .home-cta-buttons {
    flex-direction: column;
  }
}
