/* Guiding Categories Page Styles */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 500px;
  margin-top: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 0;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  color: white;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Categories Section */
.categories-section {
  padding: 80px 0;
  background: #f9fafb;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.category-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.category-image-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.category-content {
  padding: 32px;
  position: relative;
}

.category-badge {
  position: absolute;
  top: -24px;
  left: 32px;
  width: 48px;
  height: 48px;
  background: #13314f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.category-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #111827;
  margin-bottom: 12px;
}

.category-description {
  font-family: 'Cabin', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #13314f;
  transition: gap 0.3s ease;
}

.category-card:hover .category-link {
  gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

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