/* SECTION HEADER HELPERS  (home page variant) */
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  margin-bottom: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary-color);
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--heading-lg);
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.12;
  margin-bottom: 1.25rem;
}
.section-title span { color: var(--primary-color); }

.section-body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: var(--text-secondary);
  line-height: 1.8;
}


/* HERO SECTION */
.hero-section {
  background: var(--secondary-color);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
  min-height: 480px;
  display: flex;
  align-items: center;
}

/* Faint campus photo background */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://brand.uga.edu/wp-content/uploads/sites/27/2021/04/arch-1600.jpg') center / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
}

/* Dark-red gradient overlay */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(186, 12, 47, 0.22) 0%, rgba(0, 0, 0, 0.9) 70%);
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

/* "University of Georgia · E-Learning Platform" pill */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(186, 12, 47, 0.18);
  border: 1px solid rgba(186, 12, 47, 0.45);
  border-radius: 2px;
  padding: 0.28rem 0.85rem;
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  color: var(--primary-extra-light);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.06;
  margin-bottom: 1.2rem;
}
.hero-title span { color: var(--primary-color); }

.hero-desc {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--text-on-dark);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* Right-side campus image */
.hero-img-wrap { position: relative; z-index: 1; }
.hero-img-wrap img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(186, 12, 47, 0.4);
}

/* "Est. 1785 · Athens, GA" badge on the image */
.hero-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: var(--primary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-red);
  white-space: nowrap;
}


/* STATS BAR */
.stats-bar { background: var(--primary-color); padding: 1.5rem 0; }
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}


/* WELCOME SECTION */
.welcome-section { padding: 5rem 0; background: var(--white); }

/* Feature row: icon + text */
.welcome-feature {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.welcome-feature:last-child { border-bottom: none; }

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--primary-extra-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 1.15rem;
}

.feature-text h6 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.feature-text p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* Right-column info cards */
.welcome-card {
  background: var(--neutral-light);
  border-left: 4px solid var(--primary-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  height: 100%;
}
.welcome-card-icon { font-size: 2.5rem; color: var(--primary-color); margin-bottom: 1rem; }
.welcome-card h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 0.65rem;
}
.welcome-card p { font-size: var(--text-sm); color: var(--text-secondary); line-height: 1.7; margin: 0; }


/* HOW IT WORKS SECTION */
.how-section { padding: 5rem 0; background: var(--secondary-color); }

.step-card { text-align: center; padding: 2rem 1.5rem; position: relative; }

.step-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(186, 12, 47, 0.15);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.step-icon  { font-size: 2rem; color: var(--primary-color); margin-bottom: 0.85rem; }
.step-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--white); margin-bottom: 0.5rem; }
.step-desc  { font-size: var(--text-sm); color: rgba(255, 255, 255, 0.55); line-height: 1.65; margin: 0; }

/* Vertical divider between steps */
.step-divider {
  width: 1px;
  background: rgba(186, 12, 47, 0.25);
  position: absolute;
  right: 0;
  top: 2rem;
  bottom: 2rem;
}


/* CTA SECTION */
.cta-section {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, #8a0921 100%);
  position: relative;
  overflow: hidden;
}
/* Decorative circle */
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: var(--heading-lg);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.cta-desc {
  font-family: var(--font-body);
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 0;
}

.btn-cta-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--white); color: var(--primary-color);
  font-family: var(--font-heading); font-size: 0.85rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.75rem 2rem; border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-cta-white:hover { background: var(--neutral-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); color: var(--primary-color); }

.btn-cta-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  font-family: var(--font-heading); font-size: 0.85rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.72rem 1.8rem; border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.45); cursor: pointer;
  transition: all var(--transition-fast);
}
.btn-cta-ghost:hover { border-color: var(--white); background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); color: var(--white); }


/*  RESPONSIVE — HOME PAGE BREAKPOINTS */
@media (max-width: 767.98px) {
  .hero-section { padding: 3.5rem 0 3rem; }
  .hero-img-wrap { margin-top: 2.5rem; }
  .hero-badge { left: 0; }
}
@media (max-width: 575.98px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
}