@import url('root-styles.css');
@import url('navbar.css');
@import url('footer.css');

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--main-font);
  color: #222;
  overflow-x: hidden;
  margin: 0;
}

#scrollTop {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  opacity: 0;
  transition: background .3s ease, transform .2s ease, opacity .3s ease;
}
#scrollTop.show { display: flex; opacity: 1; }
#scrollTop:hover { background: var(--grey); transform: translateY(-2px); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── SCHOLARSHIP MAIN ── */
#scholarship-main {
  background: var(--white);
  padding: 6rem 0;
  color: var(--dark-text);
  text-align: center;
}
.scholarship-label {
  color: var(--grey-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
#scholarship-main h2 {
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.4rem;
}
.scholarship-body {
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn-readmore-navy {
  display: inline-block;
  background-color: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .75rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  margin-top: .5rem;
  transition: .2s ease;
}
.btn-readmore-navy:hover {
  background-color: var(--dark-bg);
  color: var(--white);
  box-shadow: 0 0 5px rgba(0,0,0,.15);
}

/* ── PARALLAXNET IMPACT ── */
#impact {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}
#impact h2 {
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1.5rem;
}
.impact-statement {
  text-align: justify;
  font-size: clamp(.75rem, 1.2vw, .85rem);
  font-weight: 200;
  display: flex;
  gap: 1rem;
  line-height: 1.8;
  color: var(--white);
  }
  .accent {
    background-color: var(--accent);
    min-width: 2px;
  }

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  #scholarship-main { padding: 4rem 0; }
  #impact { padding: 4rem 0; }
  .impact-stats { gap: 2rem; }
}
@media (max-width: 575.98px) {
  #scholarship-main { padding: 3rem 0; }
  #impact { padding: 3rem 0; }
  .impact-stats { gap: 1.5rem; }
  .impact-stat-num { font-size: 2rem; }
}
