/* index.html — Homepage styles */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--lavender-100) 0%, var(--lavender-200) 100%);
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 0 0 24px 24px;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--purple-900);
  margin: 0 0 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #6b5b85;
  margin: 0 0 2.5rem;
  line-height: 1.6;
  text-align: justify;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-secondary {
  background: var(--white);
  color: var(--purple-900);
  border: 2px solid var(--purple-500);
}

.btn-secondary:hover {
  background: var(--lavender-100);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--purple-900);
  border: 2px solid var(--purple-500);
}

.btn-outline:hover {
  background: var(--purple-500);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-placeholder {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
  animation: float 6s ease-in-out infinite;
}

.hero-image-placeholder i {
  font-size: 10rem;
  color: var(--white);
  opacity: 0.9;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Section Container */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--purple-900);
  margin: 0 0 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b5b85;
  margin: 0;
}

/* Features Section */
.features-section {
  padding: 6rem 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border: 2px solid var(--lavender-200);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--purple-500);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 2.5rem;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--purple-900);
  margin: 0 0 1rem;
}

.feature-desc {
  color: #6b5b85;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  flex: 1;
  text-align: justify;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--purple-500);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.feature-link:hover {
  color: var(--purple-700);
  gap: 0.75rem;
}

.feature-link i {
  transition: transform 0.2s ease;
}

.feature-link:hover i {
  transform: translateX(4px);
}

/* Stats Section */
.stats-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--purple-500), var(--purple-700));
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.stat-card {
  text-align: center;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  opacity: 0.95;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--lavender-100), var(--lavender-200));
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--purple-900);
  margin: 0 0 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #6b5b85;
  margin: 0 0 2.5rem;
  line-height: 1.6;
  text-align: center;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Quick Links Section */
.quick-links-section {
  padding: 6rem 0;
  background: var(--white);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1.5rem;
}

.quick-link-card {
  background: var(--white);
  border: 2px solid var(--lavender-200);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: var(--purple-900);
  transition: all 0.3s ease;
  text-align: center;
}

.quick-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--purple-500);
  background: var(--lavender-100);
}

.quick-link-card i {
  font-size: 2.5rem;
  color: var(--purple-500);
  transition: transform 0.3s ease;
}

.quick-link-card:hover i {
  transform: scale(1.1);
}

.quick-link-card span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-image-placeholder {
    width: 300px;
    height: 300px;
  }

  .hero-image-placeholder i {
    font-size: 7rem;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .quick-links-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 3rem 1rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .features-section,
  .quick-links-section {
    padding: 4rem 0;
  }

  .stats-section,
  .cta-section {
    padding: 4rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }
}
