/* Homepage Custom Stylesheet */

.hero-section {
  position: relative;
  background: 
    radial-gradient(circle at 90% 10%, rgba(99, 102, 241, 0.45) 0%, transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(139, 92, 246, 0.4) 0%, transparent 40%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  background-size: 100% 100%, 100% 100%, 24px 24px, 100% 100%;
  border-radius: 1.5rem;
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 10px 30px -10px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.hero-section:hover {
  box-shadow: 
    0 20px 40px -15px rgba(99, 102, 241, 0.15),
    0 10px 30px -10px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.2);
}

@media (min-width: 768px) {
  .hero-section {
    padding: 5.5rem 3rem;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 850;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 30%, #e0e7ff 70%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #c7d2fe;
  max-width: 44rem;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.625;
  opacity: 0.9;
}

/* Sections */
.section-wrapper {
  margin-bottom: 3rem;
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.section-heading svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.section-heading svg.icon-popular {
  color: #f59e0b;
}

.section-heading svg.icon-latest {
  color: #10b981;
}

.section-content-box {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
