/* =========================================
   HOMEPAGE SPECIFIC STYLES
   ========================================= */

/* Shared Section padding */
.home-section {
  padding: 100px 20px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.home-section.bg-light {
  background: #F8F9FA;
}

.home-container {
  max-width: 1200px;
  margin: 0 auto;
}

.home-section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* About Preview */
.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-about-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--color-text);
}

.home-about-content p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Programs Preview */
.home-programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.program-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.program-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.program-card p {
  color: #666;
  margin-bottom: 25px;
}

/* Curriculum Banner */
.home-curriculum {
  background: linear-gradient(135deg, var(--color-primary), #ff9f6d);
  color: #fff;
  text-align: center;
  border-radius: 30px;
  padding: 80px 40px;
  margin: 0 auto;
  max-width: 1200px;
}

.home-curriculum h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.home-curriculum p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.home-curriculum .btn-secondary {
  background: #fff;
  color: var(--color-primary);
}

@media (max-width: 992px) {
  .home-about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-programs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .home-programs-grid {
    grid-template-columns: 1fr;
  }
}
