/* ==========================================================================
   SRFU public site styles (SPEC §11)
   Palette: Samoa navy #0A1F44, rugby blue #1B4FA0, flag red #CE1126 accent,
   white, light gray #F4F6FA. Fonts: Montserrat headings, Inter body.
   ========================================================================== */

:root {
  --srfu-navy: #0A1F44;
  --srfu-navy-2: #122B5C;
  --srfu-blue: #1B4FA0;
  --srfu-red: #CE1126;
  --srfu-gray: #F4F6FA;
  --srfu-text: #24304a;
}

html {
  scroll-behavior: smooth;
}

.public-body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  color: var(--srfu-text);
  background: #fff;
}

h1, h2, h3, h4, h5, h6,
.navbar-brand,
.footer-heading {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
}

/* ---------- top bar ---------- */
.public-topbar {
  background: var(--srfu-navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  padding: 0.4rem 0;
}

.public-topbar a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.public-topbar a:hover {
  color: #fff;
}

.topbar-contact {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar-login {
  background: var(--srfu-red);
  color: #fff !important;
  padding: 0.22rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
}

.topbar-login:hover {
  background: #a80d1f;
}

/* ---------- navbar ---------- */
.public-navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(10, 31, 68, 0.08);
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.public-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.public-brand img {
  height: 44px;
  width: auto;
}

.public-brand .brand-name {
  font-weight: 800;
  color: var(--srfu-navy);
  font-size: 1.02rem;
  line-height: 1.15;
  max-width: 220px;
  white-space: normal;
}

.public-navbar .nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--srfu-navy);
  padding: 0.55rem 0.85rem;
  position: relative;
}

.public-navbar .nav-link:hover {
  color: var(--srfu-blue);
}

.public-navbar .nav-link.active {
  color: var(--srfu-red);
}

.public-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 3px;
  border-radius: 2px;
  background: var(--srfu-red);
}

.public-flash {
  margin-top: 1rem;
}

/* ---------- hero ---------- */
.hero {
  /* subtle dark-navy gradient treatment; hero.jpg layered underneath when present */
  background:
    linear-gradient(135deg, rgba(10, 31, 68, 0.92) 0%, rgba(18, 43, 92, 0.88) 55%, rgba(10, 31, 68, 0.94) 100%),
    url("../img/hero.jpg") center / cover no-repeat,
    var(--srfu-navy);
  color: #fff;
  padding: 6rem 0;
}

.hero h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
}

.hero .hero-lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
}

.hero .hero-eyebrow {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: #fff;
  background: var(--srfu-red);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.1rem;
}

/* ---------- buttons ---------- */
.btn-srfu {
  background: var(--srfu-red);
  border-color: var(--srfu-red);
  color: #fff;
  font-weight: 600;
}

.btn-srfu:hover,
.btn-srfu:focus {
  background: #a80d1f;
  border-color: #a80d1f;
  color: #fff;
}

.btn-outline-srfu {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 600;
}

.btn-outline-srfu:hover {
  background: #fff;
  color: var(--srfu-navy);
}

/* ---------- sections ---------- */
.section {
  padding: 4rem 0;
}

.section.section-gray {
  background: var(--srfu-gray);
}

.section-title {
  font-weight: 800;
  color: var(--srfu-navy);
  margin-bottom: 0.4rem;
}

.section-kicker {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--srfu-red);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: #5b6577;
  max-width: 640px;
}

/* ---------- cards ---------- */
.srfu-card {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.srfu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(10, 31, 68, 0.12);
}

.srfu-card .card-img-top {
  height: 180px;
  object-fit: cover;
  background: var(--srfu-navy-2);
}

.srfu-card .card-body {
  padding: 1.25rem;
}

.srfu-card .card-title {
  font-weight: 700;
  color: var(--srfu-navy);
  font-size: 1.05rem;
}

.srfu-card .card-meta {
  font-size: 0.8rem;
  color: #8a93a6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.srfu-card a.stretched-link {
  color: var(--srfu-blue);
  font-weight: 600;
  text-decoration: none;
}

/* union grid card */
.union-card {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-left: 4px solid var(--srfu-red);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  height: 100%;
  transition: box-shadow 0.18s ease;
}

.union-card:hover {
  box-shadow: 0 8px 22px rgba(10, 31, 68, 0.1);
}

.union-card h5 {
  color: var(--srfu-navy);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.union-card .union-region {
  font-size: 0.85rem;
  color: #6b7280;
}

/* ---------- stats strip ---------- */
.stats-strip {
  background: var(--srfu-navy);
  color: #fff;
  padding: 2.2rem 0;
}

.stats-strip .stat-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
}

.stats-strip .stat-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* ---------- fixtures ---------- */
.fixture-item {
  background: #fff;
  border: 1px solid #e8ecf4;
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.fixture-item .fixture-teams {
  font-weight: 700;
  color: var(--srfu-navy);
}

.fixture-item .fixture-meta {
  font-size: 0.85rem;
  color: #6b7280;
}

.fixture-item .fixture-score {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--srfu-navy);
  font-size: 1.1rem;
}

.fixture-month {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--srfu-navy);
  border-bottom: 2px solid var(--srfu-red);
  display: inline-block;
  padding-bottom: 0.2rem;
  margin: 1.6rem 0 0.9rem;
}

/* ---------- badge pills (same classes as admin) ---------- */
.srfu-badge {
  display: inline-block;
  padding: 0.28em 0.7em;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 999px;
  white-space: nowrap;
}

.badge-green { background: #E3F3EA; color: #0F7B3D; }
.badge-amber { background: #FBF0DC; color: #975A16; }
.badge-red   { background: #FBE3E6; color: #B00E22; }
.badge-blue  { background: #E1EBFA; color: #1B4FA0; }
.badge-gray  { background: #EDEFF3; color: #4B5563; }
.badge-dark  { background: #2D3748; color: #fff; }

/* ---------- sponsors strip ---------- */
.sponsors-strip {
  padding: 2rem 0;
  background: #fff;
  border-top: 1px solid #e8ecf4;
  border-bottom: 1px solid #e8ecf4;
}

.sponsors-strip .sponsor {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #9aa3b5;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---------- page hero (interior pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--srfu-navy) 0%, var(--srfu-navy-2) 100%);
  color: #fff;
  padding: 3rem 0;
}

.page-hero h1 {
  font-weight: 800;
  margin: 0;
}

.page-hero .breadcrumb {
  margin: 0.4rem 0 0;
  font-size: 0.85rem;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.page-hero .breadcrumb-item.active {
  color: #fff;
}

/* ---------- footer ---------- */
.public-footer {
  background: var(--srfu-navy);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 3.5rem;
  margin-top: 4rem;
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-about {
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-contact i {
  color: var(--srfu-red);
  margin-right: 0.45rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-right: 0.4rem;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--srfu-red);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 2.5rem;
  padding: 1rem 0;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--srfu-red);
}

/* ---------- responsive ---------- */
@media (max-width: 991.98px) {
  .hero {
    padding: 4rem 0;
    text-align: center;
  }

  .hero .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .public-brand .brand-name {
    max-width: 170px;
    font-size: 0.92rem;
  }

  .section {
    padding: 3rem 0;
  }

  .stats-strip .stat-value {
    font-size: 1.7rem;
  }
}

@media (max-width: 575.98px) {
  .topbar-contact {
    gap: 0.7rem;
    font-size: 0.78rem;
  }

  .hero {
    padding: 3rem 0;
  }
}


/* ==========================================================================
   STAGE 3 — PUBLIC WEBSITE PAGES (appended section)
   Owns styles for: index.php hero/stats/news/fixtures/unions/sponsors/CTA,
   about.php timeline/mission/executives/HQ, news/article pages, fixtures.php,
   teams.php, unions.php directory, contact.php form/map, reveal animations.
   Brand (SPEC §15): Samoa blue #012789 primary, navy #0A1F44 chrome,
   teuila red #E02020 accents. No blue-purple gradients.
   ========================================================================== */

:root {
  --lk-blue: #012789;
  --lk-blue-dark: #001a5e;
  --lk-navy: #0A1F44;
  --lk-navy-2: #122B5C;
  --lk-red: #E02020;
  --lk-red-dark: #B31313;
  --lk-gray: #F4F6FA;
  --lk-border: #e8ecf4;
  --lk-muted: #5b6577;
}

/* ---------- scroll reveal (public.js) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- shared bits ---------- */
.section-kicker.light {
  color: rgba(255, 255, 255, 0.85);
}

.empty-block {
  background: #fff;
  border: 1px dashed #cfd7e6;
  border-radius: 14px;
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--lk-muted);
}

.empty-block i {
  font-size: 2rem;
  color: #b9c2d4;
  display: block;
  margin-bottom: 0.6rem;
}

.empty-block p {
  margin: 0;
}

/* Brand-blue outline buttons used as "view all" links */
.news-all-link,
.btn-outline-primary {
  color: var(--lk-blue);
  border-color: var(--lk-blue);
  font-weight: 600;
}

.news-all-link:hover,
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: var(--lk-blue);
  border-color: var(--lk-blue);
  color: #fff;
}

/* Brand overrides for the shared .btn-srfu (teuila red) */
.btn-srfu {
  background: var(--lk-red);
  border-color: var(--lk-red);
}

.btn-srfu:hover,
.btn-srfu:focus {
  background: var(--lk-red-dark);
  border-color: var(--lk-red-dark);
  color: #fff;
}

/* ---------- homepage hero ---------- */
.home-hero {
  padding: 5.5rem 0;
}

.hero-logo {
  max-width: 320px;
  width: 78%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

@media (max-width: 991.98px) {
  .hero-cta {
    justify-content: center;
  }

  .hero-logo {
    max-width: 220px;
  }
}

/* ---------- news cards ---------- */
.news-card .news-excerpt {
  color: var(--lk-muted);
  font-size: 0.94rem;
  margin-bottom: 1rem;
}

.news-card .card-meta i {
  color: var(--lk-red);
  margin-right: 0.2rem;
}

/* ---------- fixtures ---------- */
.fixture-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.fixture-date {
  flex: 0 0 60px;
  width: 60px;
  background: var(--lk-navy);
  color: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 0.45rem 0.25rem;
  line-height: 1.1;
}

.fixture-date .fx-day {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
}

.fixture-date .fx-mon {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
}

.fixture-item .fx-vs {
  color: var(--lk-red);
  font-weight: 700;
  font-size: 0.82em;
  text-transform: uppercase;
  padding: 0 0.15rem;
}

.fixture-item .fixture-meta i {
  color: var(--lk-red);
}

.fixture-score {
  margin-bottom: 0.25rem;
}

/* ---------- union grid cards (home) ---------- */
.union-card .union-clubs {
  margin-top: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lk-blue);
}

.union-card .union-clubs i {
  margin-right: 0.3rem;
}

.union-card-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--lk-blue);
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  border: 2px dashed #c4cde0;
  border-left-width: 2px;
  background: var(--lk-gray);
}

.union-card-more i {
  font-size: 1.8rem;
  color: var(--lk-red);
}

.union-card-more:hover {
  color: var(--lk-navy);
  background: #eef1f8;
}

/* ---------- sponsors strip ---------- */
.sponsor-title {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lk-muted);
  margin-bottom: 1.1rem;
}

.sponsor-pill {
  background: var(--lk-gray);
  border: 1px solid var(--lk-border);
  border-radius: 999px;
  padding: 0.55rem 1.3rem;
  color: var(--lk-navy);
  transition: border-color 0.18s ease, color 0.18s ease;
}

.sponsor-pill:hover {
  border-color: var(--lk-blue);
  color: var(--lk-blue);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--lk-navy) 0%, var(--lk-navy-2) 100%);
  color: #fff;
  padding: 4.5rem 0;
}

.cta-band h2 {
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto 1.6rem;
}

.cta-icon {
  height: 74px;
  width: auto;
  margin-bottom: 1.1rem;
}

/* ---------- about: timeline ---------- */
.timeline {
  border-left: 3px solid var(--lk-border);
  padding-left: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1.6rem - 9px);
  top: 0.5rem;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--lk-red);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--lk-red);
}

.timeline-year {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--lk-blue);
  font-size: 1.1rem;
  line-height: 1.2;
  margin-bottom: 0.15rem;
}

.timeline-item h5 {
  color: var(--lk-navy);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.timeline-item p {
  color: var(--lk-muted);
  font-size: 0.94rem;
  margin: 0;
}

/* ---------- about: mission / vision / values ---------- */
.mv-card {
  background: #fff;
  border: 1px solid var(--lk-border);
  border-top: 4px solid var(--lk-blue);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(10, 31, 68, 0.12);
}

.mv-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--lk-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.mv-card h3 {
  color: var(--lk-navy);
  font-weight: 800;
  font-size: 1.2rem;
}

.mv-card p {
  color: var(--lk-muted);
  margin: 0;
}

.values-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.2rem;
}

.value-pill {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--lk-navy);
  background: #fff;
  border: 1px solid var(--lk-border);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
}

/* ---------- about: executives ---------- */
.exec-card {
  background: #fff;
  border: 1px solid var(--lk-border);
  border-radius: 14px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.exec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(10, 31, 68, 0.12);
}

.exec-avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--lk-gray);
  border: 2px solid var(--lk-border);
  color: var(--lk-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.exec-role {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lk-red);
  margin-bottom: 0.3rem;
}

.exec-name {
  color: var(--lk-navy);
  font-weight: 800;
  font-size: 1.08rem;
  margin-bottom: 0.5rem;
}

.exec-blurb {
  color: var(--lk-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ---------- about: HQ band ---------- */
.hq-band {
  background: linear-gradient(135deg, var(--lk-navy) 0%, var(--lk-navy-2) 100%);
  color: #fff;
  padding: 4rem 0;
}

.hq-band h2 {
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.hq-lead {
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
}

.hq-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.hq-list li {
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
}

.hq-list i {
  color: var(--lk-red);
  margin-right: 0.55rem;
}

.hq-logo {
  height: 120px;
  width: auto;
  margin-bottom: 1.4rem;
}

/* ---------- article page ---------- */
.article-hero-title {
  max-width: 820px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: var(--lk-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--lk-border);
  padding-bottom: 1rem;
  margin-bottom: 1.6rem;
}

.article-meta i {
  color: var(--lk-red);
  margin-right: 0.3rem;
}

.article-body {
  font-size: 1.03rem;
  line-height: 1.75;
  color: #333d52;
}

.more-news {
  background: var(--lk-gray);
  border: 1px solid var(--lk-border);
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
}

.more-news-title {
  font-weight: 800;
  color: var(--lk-navy);
  font-size: 1.05rem;
  border-bottom: 2px solid var(--lk-red);
  display: inline-block;
  padding-bottom: 0.25rem;
  margin-bottom: 1rem;
}

.more-news-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.more-news-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--lk-border);
}

.more-news-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.more-news-list a {
  display: block;
  color: var(--lk-navy);
  font-weight: 600;
  text-decoration: none;
}

.more-news-list a:hover {
  color: var(--lk-blue);
}

.more-news-date {
  font-size: 0.8rem;
  color: var(--lk-muted);
}

.more-news-date i {
  color: var(--lk-red);
}

/* news pagination — brand colours */
.news-pagination .page-link {
  color: var(--lk-blue);
}

.news-pagination .page-item.active .page-link {
  background: var(--lk-blue);
  border-color: var(--lk-blue);
  color: #fff;
}

/* ---------- teams page ---------- */
.team-card {
  background: #fff;
  border: 1px solid var(--lk-border);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(10, 31, 68, 0.14);
}

.team-card-head {
  background: linear-gradient(135deg, var(--lk-navy) 0%, var(--lk-blue-dark) 100%);
  color: #fff;
  padding: 1.3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.team-card-head i {
  font-size: 1.7rem;
  color: #fff;
}

.team-tag {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--lk-red);
  border-radius: 999px;
  padding: 0.28rem 0.8rem;
  white-space: nowrap;
}

.team-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
}

.team-card-body h3 {
  color: var(--lk-navy);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.team-card-body p {
  color: var(--lk-muted);
  font-size: 0.94rem;
  margin: 0;
}

/* ---------- unions directory page ---------- */
.union-dir-card {
  background: #fff;
  border: 1px solid var(--lk-border);
  border-radius: 14px;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.union-dir-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(10, 31, 68, 0.12);
}

.union-dir-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  border-bottom: 1px solid var(--lk-border);
  padding-bottom: 0.9rem;
  margin-bottom: 0.9rem;
}

.union-dir-head h3 {
  color: var(--lk-navy);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.union-dir-region {
  font-size: 0.85rem;
  color: var(--lk-muted);
}

.union-dir-region i {
  color: var(--lk-red);
}

.union-dir-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.union-dir-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #333d52;
  margin-bottom: 0.5rem;
}

.union-dir-list li:last-child {
  margin-bottom: 0;
}

.union-dir-list i {
  color: var(--lk-blue);
  width: 1.1rem;
  text-align: center;
}

.union-dir-list a {
  color: var(--lk-blue);
  text-decoration: none;
}

.union-dir-list a:hover {
  text-decoration: underline;
}

/* ---------- contact page ---------- */
.contact-info-card {
  background: var(--lk-navy);
  color: #fff;
  border-radius: 14px;
  padding: 1.8rem 1.6rem;
  margin-bottom: 1.4rem;
}

.contact-info-card h3 {
  font-weight: 800;
  margin-bottom: 1.1rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
}

.contact-info-list li:last-child {
  margin-bottom: 0;
}

.contact-info-list i {
  color: var(--lk-red);
  margin-top: 0.15rem;
}

.contact-info-list a {
  color: #fff;
  text-decoration: none;
}

.contact-info-list a:hover {
  text-decoration: underline;
}

.map-placeholder {
  border: 2px dashed #c4cde0;
  border-radius: 14px;
  background: var(--lk-gray);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  text-align: center;
  color: var(--lk-muted);
  padding: 2rem 1rem;
}

.map-placeholder i {
  font-size: 2.4rem;
  color: var(--lk-blue);
  margin-bottom: 0.4rem;
}

.map-placeholder-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: var(--lk-navy);
}

.map-placeholder-sub {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* contact form focus ring in brand blue */
.form-control:focus {
  border-color: var(--lk-blue);
  box-shadow: 0 0 0 0.2rem rgba(1, 39, 137, 0.15);
}

/* ---------- responsive ---------- */
@media (max-width: 991.98px) {
  .home-hero {
    padding: 4rem 0;
  }

  .hq-logo {
    height: 90px;
  }
}

@media (max-width: 575.98px) {
  .fixture-date {
    flex-basis: 52px;
    width: 52px;
  }

  .cta-icon {
    height: 58px;
  }
}

/* ---------- union logos (SPEC §17) ---------- */
.union-dir-logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(10, 31, 68, 0.12);
  background: #fff;
  flex-shrink: 0;
}

.union-dir-head {
  gap: 0.9rem;
}

.union-card-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(10, 31, 68, 0.12);
  background: #fff;
  flex-shrink: 0;
}
