/* ══════════════════════════════════════════
   pages.css  —  Hero banner + Footer
   Typography matched to live site screenshots
══════════════════════════════════════════ */

/* ══════════════════════════════════════════
   HERO (inner pages)
   — "School of Business Studies"
   — 40px Montserrat 800, white, centered
══════════════════════════════════════════ */
.hero-about {
  background-color: #1e2d6e;
  background-image:
    repeating-linear-gradient(0deg,
      rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px,
      transparent 1px, transparent 5px),
    repeating-linear-gradient(90deg,
      rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px,
      transparent 1px, transparent 5px);
  min-height:      340px;
  display:         flex;
  align-items:     center;
  justify-content: center;
}
.hero-about .hero-title {
  font-family:    'Montserrat', sans-serif;
  font-weight:    800;
  font-size:      40px;             /* matches screenshot exactly */
  color:          #ffffff;
  letter-spacing: 0.5px;
  text-align:     center;
  padding:        0 20px;
  line-height:    1.2;
}

/* ══════════════════════════════════════════
   GLOBAL CTA SECTION
   — H2:   26px Montserrat 800, #1e2d6e
   — Para: 16px Open Sans 600, #333
   — Btn:  13.5px Montserrat 800, white on navy
           rounded pill shape
══════════════════════════════════════════ */
.school-cta {
  background: #f5f5f5;
  text-align: center;
  padding:    72px 40px;
}
.school-cta h2 {
  font-family:    'Montserrat', sans-serif;
  font-weight:    800;
  font-size:      26px;
  color:          #1e2d6e;
  letter-spacing: 0.5px;
  line-height:    1.3;
  margin-bottom:  14px;
}
.school-cta p {
  font-family:   'Open Sans', sans-serif;
  font-size:     16px;
  font-weight:   600;
  color:         #333333;
  margin-bottom: 28px;
}
.btn-apply-large {
  display:        inline-block;
  background:     #1e2d6e;
  color:          #ffffff;
  padding:        15px 52px;
  border-radius:  50px;
  font-family:    'Montserrat', sans-serif;
  font-weight:    800;
  font-size:      13.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.btn-apply-large:hover { background: #16235a; }

.cta-social-simple {
  display:         flex;
  justify-content: center;
  gap:             22px;
  margin-top:      24px;
}
.cta-social-simple a {
  color:     #555555;
  font-size: 20px;
}
.cta-social-simple a:hover { color: #1e2d6e; }

/* ══════════════════════════════════════════
   FOOTER
   — Headings: 13px Montserrat 700, white, uppercase
   — Links:    13px Open Sans 400, #cdd4f0
   — Contact:  13px Open Sans 400, #cdd4f0
══════════════════════════════════════════ */
.school-footer {
  background: #1e2d6e;
  color:      #cdd4f0;
  padding:    55px 0 0;
}

.footer-grid {
  display:               grid;
  grid-template-columns: repeat(4, 1fr);
  gap:                   40px;
}

/* Column headings */
.footer-col h4 {
  font-family:    'Montserrat', sans-serif;
  font-weight:    700;
  font-size:      13px;
  color:          #ffffff;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom:  18px;
  padding-bottom: 10px;
  border-bottom:  2px solid rgba(255,255,255,0.15);
}

/* Links */
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-family: 'Open Sans', sans-serif;
  font-size:   13px;
  font-weight: 400;
  color:       #cdd4f0;
  line-height: 1.5;
}
.footer-col ul li a:hover { color: #f5c214; }

/* Contact items */
.contact-item {
  display:       flex;
  gap:           10px;
  align-items:   flex-start;
  margin-bottom: 12px;
  font-family:   'Open Sans', sans-serif;
  font-size:     13px;
  font-weight:   400;
  color:         #cdd4f0;
  line-height:   1.6;
}
.contact-item i {
  color:     #f5c214;
  margin-top: 3px;
  min-width: 14px;
  font-size: 13px;
}

/* Social icons */
.social-row {
  display:    flex;
  gap:        10px;
  margin-top: 14px;
}
.social-row a {
  color:           #cdd4f0;
  width:           32px;
  height:          32px;
  border:          1px solid rgba(255,255,255,0.25);
  border-radius:   50%;
  display:         flex;
  align-items:     center;
  justify-content: center;
  font-size:       13px;
}
.social-row a:hover {
  background:   #f5c214;
  border-color: #f5c214;
  color:        #1e2d6e;
}

/* Footer bottom bar */
.school-footer-bottom {
  background:  #16235a;
  text-align:  center;
  padding:     18px;
  margin-top:  40px;
  font-family: 'Open Sans', sans-serif;
  font-size:   12px;
  font-weight: 400;
  color:       #a0aac8;
  letter-spacing: 0.2px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-about .hero-title { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}
