/* ============================================================
   BCIC HSC 2007 – Global Stylesheet
   Folder: assets/css/style.css
   Purpose:
     - Shared layout, typography, components (hero, cards, gallery, directory)
     - Mobile-first, security-friendly (no inline styles)
============================================================ */

/* ------------------------------------------------------------
   1. Root & Base
------------------------------------------------------------ */

:root {
  --bcic-bg: #f4f7fb;
  --bcic-primary: #143f6b;
  --bcic-primary-soft: #e1effe;
  --bcic-accent: #ffcc4d;
  --bcic-text-main: #1f2933;
  --bcic-text-muted: #526069;
  --bcic-text-soft: #7b8794;
  --bcic-card-bg: #ffffff;
  --bcic-shadow-soft: 0 6px 16px rgba(15,23,42,0.06);
  --bcic-shadow-strong: 0 14px 40px rgba(15,23,42,0.25);
  --bcic-radius-card: 14px;
  --bcic-radius-pill: 999px;
  --bcic-max-width: 1100px;
  --bcic-header-height: 60px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bcic-bg);
  color: var(--bcic-text-main);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--bcic-primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

/* ------------------------------------------------------------
   2. Layout Shell: Header, Main, Footer
------------------------------------------------------------ */

main {
  padding: 16px 10px 40px;
}

.page-container {
  max-width: var(--bcic-max-width);
  margin: 0 auto;
}

/* Header (sticky) */

.bcic-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(15,23,42,0.08);
}

.bcic-header-inner {
  max-width: var(--bcic-max-width);
  margin: 0 auto;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bcic-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--bcic-primary);
  font-weight: 700;
  font-size: 1rem;
}

.bcic-logo span:nth-child(2) {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--bcic-text-soft);
}

/* Mobile menu toggle */

.bcic-menu-toggle {
  border: none;
  background: var(--bcic-primary);
  color: #ffffff;
  border-radius: var(--bcic-radius-pill);
  padding: 6px 10px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.bcic-menu-toggle span.bcic-menu-icon {
  font-size: 1.1rem;
  line-height: 1;
}

/* Main nav */

.bcic-main-nav {
  position: fixed;
  inset: var(--bcic-header-height) 0 0 0;
  background: rgba(15,23,42,0.96);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  padding: 18px 18px 24px;
  gap: 10px;
  transform: translateY(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.bcic-main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(148,163,184,0.1);
}

.bcic-main-nav a:hover {
  background: rgba(148,163,184,0.2);
}

/* Menu open state */

.bcic-main-nav.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.bcic-menu-toggle[aria-expanded="true"] {
  background: #111827;
}

/* Desktop header adjustments */

@media (min-width: 880px) {
  .bcic-header-inner {
    padding-inline: 16px;
  }

  .bcic-menu-toggle {
    display: none;
  }

  .bcic-main-nav {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    flex-direction: row;
    background: transparent;
    padding: 0;
    gap: 8px;
  }

  .bcic-main-nav a {
    color: var(--bcic-primary);
    background: transparent;
    padding: 6px 12px;
  }

  .bcic-main-nav a:hover {
    background: var(--bcic-primary-soft);
  }

  .bcic-main-nav a.nav-active {
    background: var(--bcic-primary);
    color: #ffffff;
    border-radius: var(--bcic-radius-pill);
  }
}

/* Footer */

.bcic-site-footer {
  background: #0b1726;
  color: #cbd2e1;
  padding: 24px 12px 18px;
}

.bcic-footer-inner {
  max-width: var(--bcic-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 18px;
  font-size: 0.85rem;
}

.bcic-footer-brand {
  line-height: 1.5;
}

.bcic-footer-brand strong {
  color: #ffffff;
}

.bcic-footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}

.bcic-footer-links a {
  color: #e1effe;
  text-decoration: none;
  font-size: 0.85rem;
}

.bcic-footer-links a:hover {
  text-decoration: underline;
}

.bcic-footer-bottom {
  max-width: var(--bcic-max-width);
  margin: 12px auto 0;
  border-top: 1px solid rgba(148,163,184,0.4);
  padding-top: 10px;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #9fb3c8;
}

@media (max-width: 640px) {
  .bcic-footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .bcic-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ------------------------------------------------------------
   3. Generic Sections & Cards
------------------------------------------------------------ */

.bcic-section {
  margin: 0 0 60px;
}

.bcic-section-header {
  text-align: center;
  margin-bottom: 32px;
  padding-inline: 4px;
}

.bcic-section-header h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--bcic-primary);
}

.bcic-section-header p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--bcic-text-muted);
  font-size: 0.95rem;
}

.bcic-grid {
  display: grid;
  gap: 20px;
}

.bcic-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bcic-card {
  background: var(--bcic-card-bg);
  border-radius: var(--bcic-radius-card);
  padding: 18px 18px 20px;
  box-shadow: var(--bcic-shadow-soft);
}

.bcic-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--bcic-primary);
  font-size: 1rem;
}

.bcic-card p {
  margin: 0;
  color: var(--bcic-text-muted);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .bcic-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  main {
    padding-inline: 10px;
  }

  .bcic-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .bcic-section-header h2 {
    font-size: 1.4rem;
  }
}

/* ------------------------------------------------------------
   4. Hero & Buttons
------------------------------------------------------------ */

.bcic-hero {
  background: linear-gradient(135deg, #143f6b, #1c7ed6);
  border-radius: 18px;
  padding: 32px 24px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 32px;
}

.bcic-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.bcic-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.bcic-hero-text {
  z-index: 1;
}

.bcic-hero-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  opacity: 0.9;
}

.bcic-hero h1 {
  font-size: 2rem;
  line-height: 1.25;
  margin-bottom: 10px;
  color: #fff;
}

.bcic-hero-subtitle {
  font-size: 0.95rem;
  max-width: 580px;
  margin-bottom: 18px;
  opacity: 0.96;
}

.bcic-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.bcic-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: var(--bcic-radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.bcic-btn-primary {
  background: var(--bcic-accent);
  color: var(--bcic-primary);
  border-color: var(--bcic-accent);
}

.bcic-btn-primary:hover {
  background: #ffd766;
  border-color: #ffd766;
  transform: translateY(-1px);
  text-decoration: none;
}

.bcic-btn-outline {
  background: #143f6b;
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);

}

.bcic-btn-outline:hover {
  transform: translateY(-1px);
}

.bcic-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.bcic-stat {
  min-width: 90px;
}

.bcic-stat-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
}

.bcic-stat-label {
  font-size: 0.78rem;
  opacity: 0.9;
}

.bcic-hero-card {
  z-index: 1;
  background: rgba(255,255,255,0.96);
  color: var(--bcic-primary);
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: var(--bcic-shadow-strong);
  backdrop-filter: blur(10px);
  align-self: center;
}

.bcic-hero-card h2 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.bcic-hero-card p {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--bcic-text-main);
}

.bcic-quote {
  border-left: 3px solid var(--bcic-accent);
  padding-left: 10px;
  font-style: italic;
}

.bcic-hero-note {
  font-size: 0.8rem;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .bcic-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .bcic-hero-card {
    margin-top: 6px;
  }
}

@media (max-width: 640px) {
  .bcic-hero {
    padding: 22px 16px 26px;
    border-radius: 14px;
  }

  .bcic-hero h1 {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------------------
   5. Mini Subnav (Index)
------------------------------------------------------------ */

.bcic-subnav {
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  padding: 8px 10px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(15,23,42,0.08);
  font-size: 0.83rem;
}

.bcic-subnav a {
  text-decoration: none;
  color: var(--bcic-primary);
  padding: 6px 12px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.bcic-subnav a:hover {
  background: var(--bcic-primary-soft);
  color: #102a43;
}

/* ------------------------------------------------------------
   6. Timeline Strip
------------------------------------------------------------ */

.bcic-timeline-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  background: var(--bcic-primary);
  border-radius: 16px;
  padding: 18px 18px 20px;
  color: #e5efff;
}

.bcic-timeline-item {
  border-left: 2px solid rgba(255,255,255,0.4);
  padding-left: 10px;
}

.bcic-timeline-year {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 0.85rem;
}

.bcic-timeline-item p {
  font-size: 0.88rem;
  margin: 0;
}

@media (max-width: 900px) {
  .bcic-timeline-inner {
    grid-template-columns: minmax(0,1fr);
  }
}

/* ------------------------------------------------------------
   7. Events
------------------------------------------------------------ */

.bcic-event-card {
  position: relative;
  padding-top: 26px;
}

.bcic-event-meta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bcic-text-soft);
  margin-bottom: 6px;
}

.bcic-event-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 999px;
  font-weight: 600;
  color: #fff;
}

.bcic-event-tag-past {
  background: #5c6ac4;
}

.bcic-event-tag-upcoming {
  background: #22b573;
}

.bcic-event-tag-info {
  background: #f59f00;
}

/* ------------------------------------------------------------
   8. Gallery
------------------------------------------------------------ */

.bcic-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 18px;
}

.bcic-gallery-filter {
  border: 1px solid #cbd2e1;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--bcic-primary);
  transition: all 0.15s ease;
}

.bcic-gallery-filter:hover {
  background: var(--bcic-primary-soft);
  border-color: #9fb3c8;
}

.bcic-gallery-filter-active {
  background: var(--bcic-primary);
  color: #ffffff;
  border-color: var(--bcic-primary);
}

.bcic-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bcic-gallery-item {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--bcic-shadow-soft);
  display: flex;
  flex-direction: column;
}

.bcic-gallery-image {
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
}

.bcic-gallery-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bcic-gallery-image-split {
  background: linear-gradient(90deg, #e1effe 0%, #e1effe 50%, #f5f7fb 50%, #f5f7fb 100%);
}

.bcic-gallery-item figcaption {
  padding: 10px 12px 12px;
}

.bcic-gallery-item h3 {
  font-size: 0.95rem;
  margin: 0 0 4px;
  color: var(--bcic-primary);
}

.bcic-gallery-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--bcic-text-muted);
}

@media (max-width: 900px) {
  .bcic-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bcic-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* ------------------------------------------------------------
   9. Coordinators & Join Section
------------------------------------------------------------ */

.bcic-person-card {
  text-align: left;
}

.bcic-person-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: #22b573;
  margin-bottom: 8px;
}

/* Join section */

.bcic-join-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 20px;
  align-items: stretch;
}

.bcic-join-text h2 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--bcic-primary);
}

.bcic-join-text p {
  margin-bottom: 8px;
  color: var(--bcic-text-muted);
  font-size: 0.9rem;
}

.bcic-join-text ul {
  margin: 0 0 14px 18px;
  padding: 0;
  color: var(--bcic-text-muted);
  font-size: 0.88rem;
}

.bcic-join-text li {
  margin-bottom: 4px;
}

.bcic-join-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bcic-join-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 18px 20px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.08);
}

.bcic-join-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--bcic-primary);
}

.bcic-join-card p {
  font-size: 0.88rem;
  color: var(--bcic-text-muted);
  margin-bottom: 8px;
}

.bcic-join-note {
  font-size: 0.8rem;
  color: var(--bcic-text-soft);
}

@media (max-width: 900px) {
  .bcic-join-inner {
    grid-template-columns: minmax(0,1fr);
  }
}

/* ------------------------------------------------------------
   10. Directory
------------------------------------------------------------ */

.bcic-directory-controls {
  margin: 0 0 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.bcic-directory-search {
  flex: 1 1 260px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #cbd2e1;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.bcic-directory-search:focus {
  border-color: var(--bcic-primary);
  box-shadow: 0 0 0 2px rgba(20,63,107,0.2);
}

.bcic-directory-tags-and-subtags {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.bcic-directory-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.bcic-dir-tag {
  border: 1px solid #cbd2e1;
  background: #ffffff;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--bcic-primary);
  transition: all 0.15s ease;
}

.bcic-dir-tag:hover {
  background: var(--bcic-primary-soft);
  border-color: #9fb3c8;
}

.bcic-dir-tag-active {
  background: var(--bcic-primary);
  color: #ffffff;
  border-color: var(--bcic-primary);
}

.bcic-directory-subtags {
  display: none;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.bcic-dir-subtag {
  border: 1px solid #cbd2e1;
  background: #f9fafb;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  cursor: pointer;
  color: var(--bcic-primary);
  transition: all 0.15s ease;
}

.bcic-dir-subtag:hover {
  background: var(--bcic-primary-soft);
  border-color: #9fb3c8;
}

.bcic-dir-subtag-active {
  background: var(--bcic-primary);
  color: #ffffff;
  border-color: var(--bcic-primary);
}

.bcic-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.bcic-directory-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px 14px 16px;
  box-shadow: var(--bcic-shadow-soft);
  font-size: 0.9rem;
  position: relative;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.bcic-directory-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.bcic-dir-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bcic-dir-name {
  margin: 0;
  font-size: 1rem;
  color: var(--bcic-primary);
}

.bcic-dir-group {
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bcic-primary-soft);
  color: var(--bcic-primary);
  white-space: nowrap;
}

.bcic-dir-meta {
  margin: 0 0 4px;
  color: var(--bcic-text-soft);
  font-size: 0.8rem;
}

.bcic-dir-notes {
  margin: 0 0 6px;
  color: var(--bcic-text-muted);
  font-size: 0.88rem;
}

.bcic-dir-contact {
  margin: 0;
  color: var(--bcic-primary);
  font-weight: 500;
  font-size: 0.83rem;
}

.bcic-dir-contact span {
  font-weight: 400;
  color: var(--bcic-text-muted);
}

.bcic-dir-footnote {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--bcic-text-soft);
  text-align: center;
}

/* Avatar */

.bcic-dir-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bcic-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--bcic-primary);
  text-transform: uppercase;
}

.bcic-dir-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bcic-dir-avatar span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bcic-dir-avatar img + span {
  display: none;
}

/* Hover big photo (desktop) */

.bcic-dir-hover-photo {
  position: absolute;
  left: 18px;
  top: -80px;
  width: 130px;
  height: 130px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.3);
  background: #fff;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 5;
}

.bcic-dir-hover-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bcic-directory-card:hover .bcic-dir-hover-photo,
.bcic-directory-card:focus-within .bcic-dir-hover-photo {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bcic-directory-card:hover,
.bcic-directory-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}

/* Responsive directory */

@media (max-width: 900px) {
  .bcic-directory-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .bcic-directory-search {
    flex: 0 0 auto;
    width: 100%;
  }

  .bcic-directory-tags-and-subtags {
    align-items: flex-start;
  }

  .bcic-directory-subtags {
    justify-content: flex-start;
  }

  .bcic-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bcic-directory-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .bcic-dir-hover-photo {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 260px;
    height: auto;
    aspect-ratio: 1 / 1;
    margin: 0 auto 10px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .bcic-directory-card:hover .bcic-dir-hover-photo,
  .bcic-directory-card:focus-within .bcic-dir-hover-photo {
    opacity: 1;
    transform: none;
  }

  .bcic-directory-card header {
    align-items: flex-start;
  }
}

/* ------------------------------------------------------------
   11. Small Utilities
------------------------------------------------------------ */

.bcic-footer-note {
  margin: 0 0 10px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--bcic-text-soft);
}

.bcic-footer-note p {
  margin: 0;
}

.text-center {
  text-align: center;
}


/* Refinements */

/* High contrast for footer quick links */
.bcic-site-footer a {
  color: #e1effe;   /* Light blue */
}

.bcic-site-footer a:hover,
.bcic-site-footer a:focus {
  color: #ffffff;
  text-decoration: underline;
}

/* Even brighter color for footer bottom contact email */
.bcic-footer-bottom a {
  color: #f7fbff;   /* Almost white for maximum contrast */
  font-weight: 500;
}

.bcic-footer-bottom a:hover,
.bcic-footer-bottom a:focus {
  color: #ffffff;
  text-decoration: underline;
}
