
:root {
  --teal: #00A89D;
  --teal-dark: #007A72;
  --teal-light: #E6F7F6;
  --teal-mid: #B2E4E1;
  --navy: #0D2B45;
  --navy-mid: #1A3F5C;
  --gold: #F5A623;
  --white: #FFFFFF;
  --light-bg: #F4FAFA;
  --text: #6B7280;
  --text-muted: #607D8B;
  --border: #D0E8E6;
  --shadow: 0 4px 24px rgba(13,43,69,0.10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: #ffffff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  height: 80px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.10);
}

.nav-logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}

.logo-seal {
  width: 60px; height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px rgba(0,168,157,0.5), 0 0 0 6px rgba(0,168,157,0.15);
  padding: 5px;
}
.logo-seal img { width: 100%; height: 100%; object-fit: contain; display: block; }

.logo-text .abbr {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 900; font-size: 1.8rem;
  color: var(--teal); letter-spacing: 1px; line-height: 1;
}
.logo-text .full {
  font-size: 0.72rem; font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.8px; text-transform: uppercase; margin-top: 3px;
}

.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width .25s;
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--teal); }
.nav-links a.active::after { width: 100%; }

.btn-nav-donate {
  background: var(--teal) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  letter-spacing: 1px;
  transition: background .2s, transform .2s !important;
}
.btn-nav-donate:hover { background: var(--teal-dark) !important; transform: translateY(-1px) !important; }
.btn-nav-donate::after { display: none !important; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 1100;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.mobile-nav {
  display: none;
  position: fixed; top: 80px; left: 0; right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 20px 6% 30px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav ul li a {
  display: block; padding: 14px 0;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color .2s;
}
.mobile-nav ul li a:hover, .mobile-nav ul li a.active { color: var(--teal); }
.mobile-nav .btn-nav-donate {
  display: inline-block; margin-top: 18px;
  padding: 12px 28px !important;
}

/* ── PAGE WRAPPER ── */
.page-wrap { margin-top: 80px; }

/* ── SECTION UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 6%; }

section { padding: 90px 6%; }

.section-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
}

.section-title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 700; font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy); line-height: 1.1;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.75; max-width: 560px;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal); color: white;
  padding: 13px 28px; border-radius: 6px;
  text-decoration: none; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase;
  transition: background .2s, transform .2s;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: Georgia, 'Times New Roman', serif;
}
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--navy);
  padding: 13px 28px; border-radius: 6px;
  text-decoration: none; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase;
  border: 2px solid var(--navy);
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { background: var(--navy); color: white; transform: translateY(-2px); }

.btn-outline-white {
  background: transparent; color: white;
  padding: 13px 28px; border-radius: 6px;
  text-decoration: none; font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.35);
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-white:hover { border-color: white; transform: translateY(-2px); }

/* ── CARDS ── */
.card {
  background: white; border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,43,69,0.14); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  padding: 100px 6% 80px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('at_job.jpeg') center/cover no-repeat;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,43,69,0.92) 0%, rgba(13,43,69,0.55) 100%);
  z-index: 1;
}
.page-hero .section-tag,
.page-hero .section-title,
.page-hero p,
.page-hero h1 { position: relative; z-index: 2; }
.page-hero .section-tag { color: var(--teal); }
.page-hero .section-title { color: white; font-size: clamp(2.2rem, 5vw, 3.8rem); font-family: 'Times New Roman', Times, serif; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1rem; line-height: 1.75; max-width: 640px; margin-top: 14px; }

/* ── FOOTER ── */
footer {
  background: #071825;
  padding: 50px 6% 30px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 40px;
}
.footer-brand .abbr {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 900; font-size: 1.8rem; color: var(--teal);
}
.footer-brand .tagline {
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.footer-brand p {
  font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7;
}
.footer-col h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700; font-size: 0.75rem;
  color: rgba(255,255,255,0.5); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.83rem; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color .2s;
}
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.25); }
.footer-pulse {
  display: flex; align-items: center; gap: 8px;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.3} }
.pulse-label { font-size: 0.7rem; color: rgba(255,255,255,0.25); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .7s ease forwards; opacity: 0; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .30s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .60s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 60px 5%; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .logo-text .full { display: none; }
}
