/* ------------------------------------------------------
   Font imports
   ------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ------------------------------------------------------
   Core reset + typography
   ------------------------------------------------------ */
* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f9fb;
  --surface: #ffffff;
  --text: #12263f;
  --muted: #475569;
  --primary: #00356b;
  --primary-hover: #002851;
  --radius: 12px;
  --max-width: 1100px;
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "EB Garamond", serif;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.special-font {
  font-family: var(--font-secondary);
}

.container {
  width: min(95%, var(--max-width));
  margin: 0 auto;
}

/* ------------------------------------------------------
   Optional hero alert / sticky banner (commented in HTML)
   ------------------------------------------------------ */
.hero-banner {
  background: #fde68a;
  border-bottom: 1px solid #fcd34d;
  color: #92400e;
  font-weight: 600;
}
.hero-banner .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

/* ------------------------------------------------------
   Header / navigation
   ------------------------------------------------------ */
.site-header {
  background: #fff;
  border-bottom: 1px solid #d9e2ec;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
}

.logo {
  height: 60px;
  width: auto;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.nav-list {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  font-weight: 600;
  color: var(--text);
}

/* ------------------------------------------------------
   Hero section
   ------------------------------------------------------ */
.hero {
  background: linear-gradient(130deg, #0d4d8b 0%, #0a3f73 100%);
  color: white;
  text-align: center;
  padding: 92px 24px;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.9rem, 5vw, 3.5rem);
  line-height: 1.1;
}

.hero .lead {
  margin: 0 0 1.25rem;
  color: #d6e5ff;
  font-size: 1.15rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  color: white;
  background: var(--primary);
}

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

.btn:hover {
  filter: brightness(0.95);
}

/* ------------------------------------------------------
   Section spacing and cards
   ------------------------------------------------------ */
.section {
  padding: 60px 0;
}

.programs {
  background: #f1f5f9;
}

h2 {
  margin-top: 0;
  line-height: 1.2;
}

.about p,
.programs p,
.contact p {
  max-width: 740px;
  color: var(--muted);
}

.cards {
  margin-top: 1.25rem;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid #d9e2ec;
  border-radius: var(--radius);
  box-shadow: 0 6px 18px rgba(16, 24, 40, 0.08);
  padding: 1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
}

/* ------------------------------------------------------
   Footer
   ------------------------------------------------------ */
.site-footer {
  background: #f1f5f9;
  color: #334155;
  text-align: center;
  padding: 18px 0;
}

.site-footer a {
  color: #334155;
}

@media (min-width: 768px) {
  .site-header .container {
    padding: 16px 0;
  }

  .hero {
    padding: 120px 24px;
  }
}

