/* ===========================
   Home Page Styles
   =========================== */

/* ===== HERO ===== */
.hero-section {
  position: relative;
  height: 100vh; /* full screen */
  background: url('../img/home-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* dark overlay */
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-subtitle {
  font-size: 1.2rem;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.shop-btn, .btn.custom-btn {
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
  text-decoration: none;
}

.shop-btn:hover {
 background: var(--secondary);
  color: #fff;
}


/* ===== ABOUT & SERVICES ===== */
.about-title,
.services-title {
  font-weight: 600;
}

.about-text,
.services-text {
  line-height: 1.6;
  color: #444;
}

/* ===== HOW IT WORKS ===== */
.section-title {
  font-weight: 700;
}

.step-box {
  background-color: var(--primary);
  color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
}

.step-box:hover {
  background-color: var(--secondary) !important;
  color: #fff;
  transform: translateY(-5px);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ===== REVIEWS ===== */
.review-card {
  background: #fff;
  border-radius: 12px;
  transition: 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  background-color: var(--accent);
  color: #fff;
}

.review-text {
  font-size: 1rem;
  color: #333;
}

.review-author {
  font-weight: 600;
  color: var(--secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-desc {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 75vh;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 70vh;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .shop-btn {
    font-size: 0.9rem;
    padding: 8px 18px;
  }
}
