/* Home Hero Section */
.hero-section {
  padding: 100px 0;
  background: white;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 540px;
}

/* Categories Section */
.category-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.category-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

.category-img-wrap {
  background-color: var(--surface-color);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  overflow: hidden;
}

.category-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.category-card:hover .category-img-wrap img {
  transform: scale(1.08);
}

.category-content {
  padding: 24px;
  text-align: center;
}

.category-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-color);
}

.category-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.category-link:hover {
  gap: 10px;
}

/* ===== Responsive ===== */

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

  .hero-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

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

@media (max-width: 575px) {
  .hero-section {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero-cta .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .section-padding {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }

  .category-img-wrap {
    height: 180px;
    padding: 24px 20px;
  }

  .category-content {
    padding: 16px;
  }

  .category-name {
    font-size: 1rem;
  }
}
