﻿/* ====== RESET ====== */
* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }

/* ====== THEME ====== */
:root{
  --navy: #0b3b66;
  --navy-2: #082f52;
  --light: #f4f8ff;
  --sky: #eaf4ff;
  --card: #ffffff;
  --border: #e6eef7;
  --text: #1e2a36;
  --muted: #5d6b7a;
  --shadow: 0 10px 30px rgba(11,59,102,0.08);
  --radius: 14px;
}

/* ====== BASE ====== */
body{
  font-family: Arial, Helvetica, sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.55;
}

a{ color: var(--navy); text-decoration: none; }
a:hover{ text-decoration: underline; }

.page-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

/* ====== STICKY NAV ====== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
}


/* ====== HEADER ====== */
.site-header{
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.topbar{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 12px 8px;
}

.brand{ display: inline-flex; align-items: center; justify-content: center; }
.brand-logo{
  height: 140px;      /* makes logo visible */
  width: auto;
}

/* NAV BAR (college style) */
.main-nav{
  background: var(--navy);
}

.main-nav ul{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 10px 14px;
}

.main-nav a{
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 10px;
  border-radius: 8px;
  display: inline-block;
}

.main-nav a:hover{
  background: rgba(255,255,255,0.12);
  text-decoration: none;
}

.nav-cta{
  background: rgba(255,255,255,0.14);
}

/* ====== HERO ====== */
.hero{
  background: linear-gradient(180deg, var(--sky) 0%, var(--light) 100%);
  padding: 46px 0;
  border-bottom: 1px solid var(--border);
}

.eyebrow{
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  margin-bottom: 10px;
}

.hero h1{
  text-align: center;
  color: var(--navy);
  font-size: 2.1rem;   /* slightly smaller, more academic */
  font-weight: 800;
  margin: 0 auto 12px;
  max-width: 980px;
}

.lead{
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
  max-width: 920px;
  margin: 0 auto;
}

.hero-actions{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn{
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 800;
  display: inline-block;
  border: 1px solid transparent;
}

.btn-primary{
  background: var(--navy);
  color: #fff;
}

.btn-primary:hover{
  background: var(--navy-2);
  text-decoration: none;
}

.btn-secondary{
  background: #ffffff;
  border-color: var(--border);
  color: var(--navy);
}

.btn-secondary:hover{
  text-decoration: none;
  background: #fdfefe;
}

.notice{
  margin: 18px auto 0;
  max-width: 900px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 6px solid var(--navy);
  border-radius: 12px;
  padding: 14px 14px;
  box-shadow: 0 6px 18px rgba(11,59,102,0.06);
}

.notice-soft{
  border-left-color: #7fb4ff;
}

.quick-stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.stat{
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(11,59,102,0.05);
}

.stat-number{
  font-weight: 900;
  color: var(--navy);
  font-size: 1.1rem;
}

.stat-label{
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 4px;
}

/* ====== SECTIONS ====== */
.section{
  padding: 52px 0;     /* space between sections */
}

.section-alt{
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head{
  margin-bottom: 16px;
}

.section-title{
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-subtitle{
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 920px;
}

/* ====== CARDS ====== */
.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.wide-card{
  margin-top: 14px;
}

.card-title{
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.muted{ color: var(--muted); }
.small{ font-size: 0.9rem; }

/* Lists */
.list{
  padding-left: 18px;
  margin: 10px 0 0;
}

.list li{
  margin: 8px 0;
}

/* Highlight callouts */
.highlight{
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #f0f7ff;
  border: 1px solid #dbeafe;
}

/* Pills */
.pill-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 6px 0 10px;
}

.pill{
  background: #f0f7ff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

/* Grids */
.grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Testimonials */
.testimonial h3{
  color: var(--navy);
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.quote{
  font-style: italic;
  color: #273646;
}

/* ====== CONTACT ====== */
.contact-label{
  margin-top: 12px;
  font-weight: 900;
  color: var(--navy);
}

.email-image{
  display: inline-block;
  margin-top: 10px;
  background: #fff;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.email-image img{
  max-width: 340px;
}

.contact-note{
  margin-top: 10px;
}

/* ====== FOOTER ====== */
.site-footer{
  background: var(--navy);
  color: #fff;
  padding-top: 28px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
  padding-bottom: 18px;
}

.site-footer h4{
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.site-footer a{
  color: #fff;
  text-decoration: underline;
}

.footer-links{
  list-style: none;
  padding-left: 0;
}

.footer-links li{
  margin: 8px 0;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 14px 0;
  text-align: center;
  color: rgba(255,255,255,0.92);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 980px){
  .grid-3{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .grid-2{ grid-template-columns: 1fr; }
  .quick-stats{ grid-template-columns: 1fr; }
  .brand-logo{ height: 98px; }
  .hero h1{ font-size: 1.75rem; }
}
