/* ============================================================
   Fund for Civilian Bravery — FCB Sri Lanka
   Main Stylesheet
   ============================================================ */

/* --- Google Fonts --- */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700;900&family=Open+Sans:wght@300;400;600;700&display=swap");

/* --- CSS Variables --- */
:root {
  --navy: #1a2744;
  --navy-dark: #0f1a30;
  --navy-mid: #243160;
  --gold: #c9a227;
  --gold-light: #e0ba42;
  --gold-dark: #a07c10;
  --white: #ffffff;
  --light: #f4f6fa;
  --grey: #e0e4ed;
  --text: #2c2c2c;
  --text-muted: #6b7280;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.22);
  --radius: 6px;
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--gold-light);
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Merriweather", serif;
  line-height: 1.3;
}

/* --- Utility Classes --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad {
  padding: 80px 0;
}
.section-pad-sm {
  padding: 50px 0;
}

.gold-text {
  color: var(--gold);
}
.navy-text {
  color: var(--navy);
}
.white-text {
  color: var(--white);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--navy-dark);
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.section-label {
  font-family: "Open Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title.white {
  color: var(--white);
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 0 30px 0;
}
.divider.center {
  margin: 0 auto 30px;
}

.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}
.top-bar a:hover {
  color: var(--gold);
}
.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-wrap img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  color: var(--white);
}
.logo-text .org-name {
  display: block;
  font-family: "Merriweather", serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.logo-text .org-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* --- Main Nav --- */
.main-nav ul {
  display: flex;
  gap: 4px;
}
.main-nav ul li a {
  display: block;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}

/* Nominate Button in Nav */
.nav-nominate a {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  border-radius: var(--radius) !important;
}
.nav-nominate a:hover {
  background: var(--gold-light) !important;
  box-shadow: 0 2px 10px rgba(201, 162, 39, 0.5) !important;
}

/* --- Mobile Toggle --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 18, 40, 0.82) 0%,
    rgba(10, 18, 40, 0.55) 60%,
    rgba(10, 18, 40, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-banner h1 {
  font-size: 3.2rem;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-banner h1 span {
  color: var(--gold);
}
.hero-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 34px;
  max-width: 520px;
  line-height: 1.75;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slide Indicators */
.slide-indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.slide-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--gold);
  padding: 28px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  color: var(--navy-dark);
}
.stat-item .stat-num {
  font-family: "Merriweather", serif;
  font-size: 2.4rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.8;
}

/* ============================================================
   PURPOSE / MISSION SECTION
   ============================================================ */
.purpose-section {
  background: var(--white);
}
.purpose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.purpose-img-wrap {
  position: relative;
}
.purpose-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}
.purpose-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 6px;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}
.purpose-img-badge .badge-num {
  display: block;
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.purpose-img-badge .badge-text {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.85;
}
.purpose-body p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
}
.section-subtitle {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 24px 0 10px;
}
.purpose-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(201, 162, 39, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
}
.feature-text strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}
.feature-text span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================================
   HEROES SECTION
   ============================================================ */
.heroes-section {
  background: var(--light);
}
.heroes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.heroes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.hero-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.hero-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.hero-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hero-card:hover .hero-card-img img {
  transform: scale(1.06);
}
.hero-card-year {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
}
.hero-card-body {
  padding: 20px 22px 24px;
}
.hero-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: capitalize;
}
.hero-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.hero-card-medal {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--grey);
}
.hero-card-medal img {
  height: 28px;
  width: auto;
}
.hero-card-medal span {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================================
   MEDAL SECTION
   ============================================================ */
.medal-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.medal-section::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.06);
}
.medal-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.04);
}
.medal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.medal-img-wrap {
  display: flex;
  justify-content: center;
}
.medal-img-frame {
  position: relative;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(201, 162, 39, 0.15),
    transparent 70%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.medal-img-frame::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}
.medal-img-frame img {
  width: 210px;
  height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(201, 162, 39, 0.4));
}
.medal-body .section-title {
  color: var(--white);
}
.medal-body p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}
.medal-criteria {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}
.criteria-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.criteria-bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}
.criteria-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  margin: 0;
}

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section {
  background: var(--white);
}
.events-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 8px 20px;
  border-radius: 30px;
  border: 2px solid var(--grey);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Open Sans", sans-serif;
}
.tab-btn:hover,
.tab-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.events-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--grey);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  background: rgba(26, 39, 68, 0.5);
}
.gallery-overlay svg {
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay svg {
  opacity: 1;
  transform: scale(1);
}

/* Gallery Featured (first item spans 2 cols) */
.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* ============================================================
   NOMINATE BANNER
   ============================================================ */
.nominate-banner {
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-mid) 100%
  );
  padding: 70px 0;
  text-align: center;
}
.nominate-banner h2 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 16px;
}
.nominate-banner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section {
  background: var(--light);
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.news-card-img {
  height: 200px;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-card-body {
  padding: 22px;
}
.news-date {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.news-card-body h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card-body p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.news-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.news-read-more:hover {
  color: var(--gold);
  gap: 10px;
}

/* Newsletter */
.newsletter-bar {
  background: var(--navy-dark);
  padding: 40px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.newsletter-text h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 4px;
}
.newsletter-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.newsletter-form input {
  padding: 12px 18px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.9rem;
  width: 280px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.15);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo-wrap {
  margin-bottom: 18px;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.55;
}
.contact-list li .ci {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  font-size: 1rem;
}
.contact-list li a {
  color: rgba(255, 255, 255, 0.6);
}
.contact-list li a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.15);
  top: -100px;
  left: -100px;
}
.page-hero::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 39, 0.1);
  bottom: -80px;
  right: -80px;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero h1 span {
  color: var(--gold);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: var(--gold);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   HEROES PAGE
   ============================================================ */
.year-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.year-btn {
  padding: 7px 18px;
  border-radius: 20px;
  border: 1.5px solid var(--grey);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Open Sans", sans-serif;
}
.year-btn:hover,
.year-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.heroes-full-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hero-full-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  text-align: center;
}
.hero-full-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.hero-full-card .card-img {
  height: 220px;
  overflow: hidden;
}
.hero-full-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.hero-full-card:hover .card-img img {
  transform: scale(1.05);
}
.hero-full-card .card-body {
  padding: 16px 18px 20px;
}
.hero-full-card .card-body h4 {
  font-size: 0.92rem;
  color: var(--navy);
  text-transform: capitalize;
  margin-bottom: 4px;
}
.hero-full-card .card-body span {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   EVENTS FULL PAGE
   ============================================================ */
.events-full-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.evt-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--grey);
}
.evt-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.evt-item:hover img {
  transform: scale(1.07);
}
.evt-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition);
}
.lightbox-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* ============================================================
   MEDALS PAGE
   ============================================================ */
.medal-full-section {
  background: var(--white);
}
.medal-full-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 70px;
  align-items: start;
}
.medal-showcase {
  position: sticky;
  top: 100px;
  text-align: center;
}
.medal-big-frame {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 12px;
  padding: 60px 40px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.medal-big-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(201, 162, 39, 0.15),
    transparent 70%
  );
}
.medal-big-frame img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  position: relative;
  filter: drop-shadow(0 12px 30px rgba(201, 162, 39, 0.5));
  margin: 0 auto;
}
.medal-caption {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.medal-content .section-title {
  margin-bottom: 10px;
}
.medal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.award-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
  position: relative;
}
.award-timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grey);
}
.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 28px;
  position: relative;
}
.timeline-dot {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 50%;
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
}
.timeline-body strong {
  display: block;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.timeline-body p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   NOMINATE PAGE
   ============================================================ */
.nominate-form-section {
  background: var(--light);
}
.nominate-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.nominate-info h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.nominate-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.info-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}
.info-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Merriweather", serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.info-step .step-body strong {
  display: block;
  color: var(--navy);
  margin-bottom: 3px;
}
.info-step .step-body span {
  font-size: 0.86rem;
  color: var(--text-muted);
}

.form-card {
  background: var(--white);
  border-radius: 10px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-card h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--grey);
  border-radius: var(--radius);
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-divider {
  border: none;
  border-top: 1px solid var(--grey);
  margin: 24px 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-mission {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-stack {
  position: relative;
  height: 480px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 350px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 240px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-values {
  background: var(--light);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value-card {
  background: var(--white);
  border-radius: 8px;
  padding: 34px 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  border-top: 3px solid transparent;
}
.value-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.value-card h4 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.team-section {
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
}
.team-card-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 4px solid var(--grey);
  transition: var(--transition);
}
.team-card:hover .team-card-img {
  border-color: var(--gold);
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h4 {
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.team-card p {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--light);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 18px;
}
.contact-info p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.contact-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-card-text strong {
  display: block;
  color: var(--navy);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-card-text p,
.contact-card-text a {
  font-size: 0.92rem;
  color: var(--text-muted);
}
.contact-card-text a:hover {
  color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .purpose-grid,
  .medal-grid,
  .about-grid,
  .nominate-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .heroes-grid,
  .news-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .heroes-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .medal-full-grid {
    grid-template-columns: 1fr;
  }
  .medal-showcase {
    position: static;
  }
}
@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 6px;
  }
  .main-nav {
    display: none;
  }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 16px;
  }
  .main-nav.open ul {
    flex-direction: column;
  }
  .nav-toggle {
    display: flex;
  }
  .site-header {
    position: relative;
  }
  .hero-banner h1 {
    font-size: 2.1rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .events-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-full-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .heroes-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  .newsletter-form input {
    width: 100%;
  }
  .heroes-header,
  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .about-img-stack {
    height: 300px;
  }
  .about-img-secondary {
    width: 50%;
    height: 170px;
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .heroes-grid,
  .news-grid,
  .values-grid,
  .heroes-full-grid {
    grid-template-columns: 1fr;
  }
  .events-gallery,
  .events-full-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.featured {
    grid-column: span 2;
  }
  .hero-banner h1 {
    font-size: 1.7rem;
  }
  .nominate-grid {
    grid-template-columns: 1fr;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
