/* ============================================
   common.css — shared across all pages
   ============================================ */

body,
select,
input,
textarea { }

body { font-family: "anth", sans-serif; }

h1 {
  font-weight: 700;
  color: #0a2540;
  font-size: 2.7em;
  margin: 35px 0 0;
}
h2 {
  font-weight: 400;
  font-size: 1.4em;
  margin: 0;
}
h1, h2, h3, h4 { font-family: "anth", sans-serif; }

.fa, .far, .fas { font-size: 22px; font-weight: 900; }

h3.holding {
  font-weight: normal;
  color: #0F253F;
  font-size: 1.4em;
  margin: 11px 0 0 5px;
}

p,
section p,
section ul,
section ol,
aside p,
aside ul,
aside ol {
  font-size: 18px;
  clear: left;
  line-height: 30px;
  margin: 1em 0;
}
h4  { line-height: 26px; }
small { line-height: 22px; }
section ol { margin-left: 1.4em; }

/* ============================================
   SITE HEADER  (single unified nav bar)
   ============================================ */

.site_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: linear-gradient(to right, #0a2540 0%, #1c3d52 100%);
  z-index: 9999999;
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 2px 20px rgba(0,0,0,.28);
}

.site_header_inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 8px;
}

/* -- Logo -- */
.site_logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 16px;
}
.site_logo:hover { text-decoration: none; }
.site_logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.site_logo_name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.2px;
  white-space: nowrap;
}

/* -- Desktop nav links -- */
.site_nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.site_nav a {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 7px;
  transition: color .15s ease, background .15s ease;
  white-space: nowrap;
}
.site_nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
  text-decoration: none;
}
.site_nav a.site_nav_active {
  color: #fff;
  background: rgba(255,255,255,.12);
  font-weight: 600;
}

/* -- Desktop actions (CTA / credits) -- */
.site_header_actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 10px;
}

.site_nav_login {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 7px;
  transition: color .15s ease, background .15s ease;
  white-space: nowrap;
}
.site_nav_login:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
  text-decoration: none;
}

.site_nav_cta {
  display: inline-block;
  padding: 8px 20px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #ed645b 0%, #c94d45 100%);
  color: #fff !important;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 2px 10px rgba(237,100,91,.4);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.site_nav_cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(237,100,91,.55);
  text-decoration: none !important;
}

.site_header_credits {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
}
.site_header_credits a {
  color: #f9a8a4;
  text-decoration: none;
}
.site_header_credits a:hover { color: #fff; }

/* -- Mobile hamburger -- */
.site_header_hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 7px;
  cursor: pointer;
  padding: 7px 10px;
  color: rgba(255,255,255,.85);
  font-size: 18px;
  margin-left: auto;
  transition: background .15s;
}
.site_header_hamburger:hover { background: rgba(255,255,255,.1); }

/* -- Mobile nav dropdown -- */
.site_nav_mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  background: #0a2540;
  z-index: 9999998;
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 8px 28px rgba(0,0,0,.35);
  padding-bottom: 8px;
}
.site_nav_mobile.open { display: block; }

.site_nav_mobile a {
  display: block;
  padding: 14px 28px;
  font-size: 17px;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .12s;
}
.site_nav_mobile a:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
  text-decoration: none;
}
.site_nav_mobile a.site_nav_active {
  color: #fff;
  font-weight: 600;
}
.site_nav_mobile .mobile_cta {
  display: block;
  margin: 14px 24px 8px;
  padding: 13px 20px;
  background: linear-gradient(135deg, #ed645b 0%, #c94d45 100%);
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none !important;
  border-bottom: none;
  box-shadow: 0 3px 12px rgba(237,100,91,.4);
}

/* ============================================
   RESPONSIVE — header
   ============================================ */
@media (max-width: 900px) {
  .site_nav           { display: none; }
  .site_header_actions { display: none; }
  .site_header_hamburger { display: block; }
}
@media (max-width: 480px) {
  .site_header_inner { padding: 0 16px; }
  .site_logo_name    { display: none; }
}

/* ============================================
   Legacy — kept for safety (hidden/neutralised)
   ============================================ */
#mainNav          { display: none !important; }
.menu_nav         { display: none !important; }
.icon_navigation  { display: none !important; }
.top_navigation   { display: none !important; }
