/* ===== The Illuminators Page Styles ===== */

/* Hero Section */
.illuminators-hero {
  padding: 40px 0 40px;
  background: #f0fdf4;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #e2e8f0;
}

.illuminators-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(71, 183, 73, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.illuminators-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(71, 183, 73, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.illuminators-hero .row {
  position: relative;
  z-index: 1;
}

.illuminators-hero .hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(71, 183, 73, 0.1) 0%, rgba(71, 183, 73, 0.15) 100%);
  color: var(--color-primary);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
  border: 1px solid rgba(71, 183, 73, 0.2);
}

.illuminators-hero .hero-title {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.illuminators-hero .hero-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Illuminators Showcase Section */
.section-subtitle {
  text-align: center;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 16px;
  text-align: center;
}

.section-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Illuminators Showcase Section */
.illuminators-showcase {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding-top: 80px;
  padding-bottom: 80px;
}

.illuminator-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eef2f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-color: var(--color-primary);

}

.illuminator-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(71, 183, 73, 0.15);
}

.avatar-wrapper {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f0fdf4;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.illuminator-card:hover .avatar-wrapper {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.illuminator-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.illuminator-designation {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .illuminators-hero {
    padding: 80px 0 60px;
  }

  .illuminators-hero .hero-title {
    font-size: 2.2rem;
  }

  .illuminators-hero .hero-description {
    font-size: 1.05rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .mission-title {
    font-size: 1.8rem;
  }

  .mission-text {
    font-size: 1.05rem;
  }

  .illuminators-showcase {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

@media (max-width: 768px) {
  .illuminators-hero {
    padding: 60px 0 50px;
  }

  .illuminators-hero .hero-title {
    font-size: 1.8rem;
  }

  .illuminators-hero .hero-description {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .illuminators-showcase {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .illuminator-card {
    padding: 25px 18px;
  }

  .avatar-wrapper {
    width: 100px;
    height: 100px;
  }

  .illuminator-name {
    font-size: 1.05rem;
  }

  .illuminator-designation {
    font-size: 0.85rem;
  }
}

@media (max-width: 575px) {
  .illuminators-hero .hero-title {
    font-size: 1.6rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .mission-title {
    font-size: 1.4rem;
  }

  .mission-text {
    font-size: 0.95rem;
  }

  .illuminator-card {
    padding: 20px 15px;
  }

  .avatar-wrapper {
    width: 90px;
    height: 90px;
    border-width: 3px;
  }

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

  .illuminator-designation {
    font-size: 0.8rem;
  }
}
