/* ===============================
 HERO SLIDER
================================ */
.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease, transform 7s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 92, 76, 0.85),
    rgba(15, 92, 76, 0.3)
  );
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 650px;
  padding: 60px;
  color: #fff;
}

.hero-tag {
  letter-spacing: 2px;
  color: #ac8a17;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.1;
  margin: 15px 0;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Buttons */
.btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
}

.btn-gold {
  background: #ac8a17;
  color: #fff;
}

.btn-outline {
  border: 2px solid #ac8a17;
  color: #fff;
}

/* ===============================
 SECTIONS
================================ */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
}

.home-about,
.featured-sofas,
.stats {
  background: #f7f5f0;
}

/* ===============================
 FEATURED SOFAS
================================ */
.sofa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.sofa-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

/* ===============================
 COUNTERS
================================ */
.stats {
  background: #0f5c4c;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
}

.counter {
  font-size: 48px;
  color: #ac8a17;
}

/* ===============================
 VIDEO
================================ */
.home-video video {
  max-width: 720px;
  border-radius: 18px;
  display: block;
  margin: 30px auto 0;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

/* ===============================
 WHATSAPP CTA
================================ */
.home-whatsapp {
  background: #0f5c4c;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  margin-top: 15px;
}
