/* ============================================
   Home Page Styles
   ============================================ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 10s ease;
}
.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,34,51,0.78) 0%,
    rgba(8,34,51,0.55) 55%,
    rgba(8,34,51,0.82) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 80px 0 100px;
  width: 100%;
}

.hero-logo-wrap { margin-bottom: 40px; }
.hero-logo {
  height: 100px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.hero-inner h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* ---------- About ---------- */

.about {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--border-soft);
}

.about-inner { max-width: 860px; margin: 0 auto; }

.about-text {
  font-size: 1.15rem;
  line-height: 1.95;
  color: #2a3b48;
  margin-top: 8px;
}

/* ---------- Stats ---------- */

.stats {
  background: var(--navy-dark);
  color: var(--white);
  padding: var(--space-xl) 0;
}

.eyebrow-center { display: block; text-align: center; margin-bottom: 48px; }

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1 1 180px;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 32px;
  border-left: 1px solid rgba(201,162,75,0.3);
}
.stat-item:first-child { border-left: none; }

.stat-number {
  font-family: var(--font-mono);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

.stat-label {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.stat-detail {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.55;
}

/* ---------- Affiliations ---------- */

.affiliations {
  padding: var(--space-xl) 0;
  background: var(--bg-soft);
}
.affiliations-inner { text-align: center; }

.affiliation-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 48px 72px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(12,66,97,0.07);
}

.affiliation-logo { height: 100px; width: auto; object-fit: contain; }

.affiliation-card p {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: 0.03em;
}

/* ---------- News & Events ---------- */

.news { padding: var(--space-xl) 0 var(--space-2xl); }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.news-card {
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.news-card:hover {
  box-shadow: 0 16px 48px rgba(12,66,97,0.1);
  transform: translateY(-4px);
}

.news-card-image { aspect-ratio: 16/10; width: 100%; }

.news-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.news-card-body h3 { font-size: 1.05rem; line-height: 1.35; }
.news-card-body p  { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .stats-grid { flex-direction: column; align-items: center; gap: 0; }
  .stat-item {
    border-left: none;
    border-top: 1px solid rgba(201,162,75,0.3);
    padding: 32px 0;
    max-width: 320px;
    width: 100%;
  }
  .stat-item:first-child { border-top: none; padding-top: 0; }
  .news-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { min-height: 75vh; }
  .affiliation-card { padding: 40px 36px; }
}
