/* ============================================
   GLOBAL BASE
============================================ */
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background: #07131f;
  color: #ffffff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

a {
  color: #82b6ff;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
}

/* Unified site width */
:root {
  --site-width: 1250px;
  --site-padding: 20px;
}

/* ============================================
   PAGE WRAPPER
============================================ */
.page-wrapper {
  max-width: var(--site-width);
  margin-left: auto;
  margin-right: auto;
  padding: 40px var(--site-padding);
}

/* ============================================
   HEADER
============================================ */
/* ============================================
   TOP BAR
============================================ */
.vwf-topbar {
  background: #0b1e39;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: #cbd5e1;
}

.topbar-inner {
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 8px var(--site-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact {
  display: flex;
  gap: 20px;
  align-items: center;
}

.topbar-contact a {
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.topbar-contact a:hover {
  color: #ffffff;
  opacity: 1;
}

.topbar-actions {
  display: flex;
  align-items: center;
}

.topbar-btn {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  transition: all 0.2s;
}

.topbar-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .vwf-topbar {
    display: none;
  }
}

/* ============================================
   HEADER
============================================ */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #d4d4d4;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-inner {
  max-width: var(--site-width);
  margin-left: auto;
  margin-right: auto;
  padding: 10px var(--site-padding);
  display: flex;
  align-items: center;
}

/* Logo */
.header-logo {
  flex: 0 0 auto;
}

.header-logo img {
  height: 70px;
  width: auto;
}

/* Nav */
.nav-links {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: #1f2937;
  font-weight: 600;
  font-size: 16px;
}

/* Mobile toggle */
.menu-toggle {
  margin-left: auto;
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: #1f2937;
  background: none;
  border: none;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-bottom: 1px solid #cccccc;
  padding: 15px var(--site-padding);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  padding: 14px 0;
  font-size: 18px;
  color: #1f2937;
}

/* ============================================
   HERO BANNER
============================================ */
.hero-banner {
  background-image: url("/images/flag1.png");
  background-size: cover;
  background-position: center;
  padding: 90px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-banner .hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-banner h1 {
  color: #ffffff;
  font-size: 44px;
  margin-bottom: 14px;
}

.hero-banner h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 14px;
}

.hero-banner p {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.hero-banner .banner-disclaimer {
  font-size: 14px;
  opacity: 0.9;
}

/* Alternate Hero text style (like Winners page) */
.hero-text {
  text-align: center;
  padding: 20px;
  background: linear-gradient(90deg, rgba(24, 53, 101, 1) 38%, rgba(25, 154, 105, 1) 100%);
  color: #ffffff;
}

.hero-text h1 {
  margin: 0;
  font-weight: 400;
  font-size: 48px;
}


.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.banner-content {
  position: relative;
  max-width: var(--site-width);
  width: 100%;
  text-align: center;
  padding-left: var(--site-padding);
  padding-right: var(--site-padding);
}

.banner-title {
  font-size: 48px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.banner-subtitle {
  font-size: 22px;
  margin-bottom: 12px;
  color: #e5edf9;
}

.banner-description {
  font-size: 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: #d7dfed;
}

/* ============================================
   VWF SECTION SYSTEM
============================================ */
.vwfCardBlock {
  background: #0d1f33;
  border: 1px solid #1d3550;
  border-radius: 18px;
  padding: 40px 36px;
  margin: 44px 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.vwfCardBlock:nth-of-type(even) {
  background: #112840;
}

.vwfH2 {
  margin-bottom: 28px;
  text-align: center;
  font-size: 28px;
  font-family: "Playfair Display", serif;
}

/* Grids */
.vwfHeroGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.vwfMiniGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}

/* Cards */
.vwfPillCard,
.vwfMiniCard {
  background: #132a42;
  border: 1px solid #2e4965;
  border-radius: 14px;
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vwfPillCard:hover,
.vwfMiniCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.vwfPillCard img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.vwfMiniCard img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

/* Text */
.vwfPillTitle,
.vwfMiniLabel {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.vwfPillText,
.vwfMiniValue {
  font-size: 15px;
  color: #d7dfed;
}

/* CTA */
.vwfActions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.vwfBtn {
  padding: 14px 28px;
  font-size: 16px;
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: #0b1e39;
  margin-top: 60px;
}

.footer-wrapper {
  max-width: var(--site-width);
  margin-left: auto;
  margin-right: auto;
  padding: 55px var(--site-padding) 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-bottom {
  text-align: center;
  padding: 22px var(--site-padding);
  border-top: 1px solid #264064;
  font-size: 14px;
  color: #cbd5e1;
}

/* ============================================
   MOBILE
============================================ */
@media (max-width: 900px) {

  .header-logo img {
    height: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .hero-banner {
    min-height: 420px;
  }

  .banner-title {
    font-size: 34px;
  }

  .banner-subtitle {
    font-size: 18px;
  }

  .banner-description {
    font-size: 16px;
  }

  .page-wrapper {
    padding: 24px 16px;
  }

  .vwfCardBlock {
    padding: 30px 22px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.vwfPillCard img {
  margin-bottom: 22px;
  padding-top: 6px;
}

.vwfCardBlock {
  margin-bottom: 64px;
}

/* ============================================
   ABOUT PAGE FINAL POLISH
   SAFE ADDITIONS ONLY
============================================ */

/* Prevent horizontal scroll on mobile */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Improve mission and initiative image spacing */
.vwfPillCard img {
  display: block;
  margin-bottom: 22px;
  padding-top: 6px;
}

/* Add breathing room between major sections */
.vwfCardBlock {
  margin-bottom: 64px;
}

/* National Initiatives card readability */
.vwfPillText {
  line-height: 1.65;
  margin-top: 6px;
}

/* Mission, Vision, Real Estate cards balance */
.vwfPillTitle {
  margin-top: 4px;
  margin-bottom: 6px;
}

/* Improve grid balance on wide screens */
@media (min-width: 1200px) {
  .vwfHeroGrid {
    gap: 32px;
  }
}

/* Subtle reveal animation polish */
.vwfReveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vwfReveal.vwfVisible {
  opacity: 1;
  transform: translateY(0);
}

/* Improve FAQ accordion spacing */
.vwfAccordion {
  margin-top: 24px;
}

.vwfItem {
  margin-bottom: 14px;
}

/* Improve legal line readability */
.vwfLegalLine {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* Button spacing consistency */
.vwfActions {
  margin-top: 18px;
}

/* Board and leadership cards visual balance */
.vwfMiniCard {
  padding-top: 26px;
  padding-bottom: 22px;
}

/* Improve section heading rhythm */
.vwfH2 {
  margin-bottom: 32px;
}

/* Mobile refinement */
@media (max-width: 900px) {

  .vwfCardBlock {
    margin-bottom: 48px;
  }

  .vwfPillCard img {
    margin-bottom: 18px;
  }

  .vwfH2 {
    margin-bottom: 24px;
  }

  .vwfLead {
    font-size: 16px;
    line-height: 1.6;
  }
}

.vwfQuickNav {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 28px 0 36px;
}

.vwfQuickNav a {
  font-weight: 600;
  color: #82b6ff;
}

.vwfPillCard img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

.donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 14px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.18);
  transition: transform 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
  margin-top: 8px;
}

.donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.22);
  opacity: 0.98;
}

.donate-btn:active {
  transform: translateY(0);
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.16);
}

.donate-card {
  position: relative;
}

.donate-btn {
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.donate-legal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 50px auto 30px;
}

.legal-card {
  background: #0f172a;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(2, 6, 23, 0.22);
}

.legal-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.legal-card p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.55;
  margin-bottom: 8px;
}

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

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  text-decoration: none;
  color: inherit;
}

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

.footer-links li {
  margin: 6px 0;
}

.footer-links a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 768px) {
  .footer-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col img {
    margin-left: auto;
    margin-right: auto;
  }
}

.vwfHeroGrid {
  align-items: stretch;
}

.vwfHeroGrid {
  align-items: stretch;
}

/* =========================
   CARD IMAGE NORMALIZATION
   ========================= */

/* Ensure all pill cards behave consistently */
.vwfPillCard {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

/* Normalize image behavior */
.vwfPillCard img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .vwfPillCard img {
    max-height: 200px;
  }
}

/* Ensure text stays aligned */
.vwfPillTitle {
  margin-top: auto;
}

/* =========================
   GRID CONSISTENT HEIGHTS
   ========================= */

.vwfHeroGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  align-items: stretch;
}

/* =========================
   HOVER ELEVATION
   ========================= */

.vwfPillCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

/* Touch devices should not jump */
@media (hover: none) {
  .vwfPillCard:hover {
    transform: none;
    box-shadow: none;
  }
}

/* =========================
   LIGHTHOUSE IMAGE OPTIMIZATION
   ========================= */

/* Prevent layout shift */
.vwfPillCard img {
  aspect-ratio: 4 / 3;
}

/* Improve rendering */
.vwfPillCard img {
  image-rendering: auto;
}

/* =========================
   SPONSOR LOGO NORMALIZATION
   ========================= */

.vwfSponsorsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 22px;
  align-items: center;
  justify-items: center;
}

/* Make logos small and consistent */
.vwfSponsorsGrid img {
  max-width: 90px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: transform 160ms ease, opacity 160ms ease;
}

/* Hover polish */
.vwfSponsorsGrid a:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Mobile tightening */
@media (max-width: 768px) {
  .vwfSponsorsGrid img {
    max-width: 72px;
    max-height: 40px;
  }
}

/* =========================
   SPONSOR LOGO GRID TILES
   ========================= */

.vwfSponsorsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
  gap: 24px;
  align-items: center;
  justify-items: center;
}

/* Square white tiles */
.vwfSponsorsGrid a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

/* Logo inside tile */
.vwfSponsorsGrid img {
  max-width: 70%;
  max-height: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

/* Hover effect */
.vwfSponsorsGrid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.14);
}

.vwfSponsorsGrid a:hover img {
  opacity: 1;
}

/* Mobile adjustment */
@media (max-width: 768px) {
  .vwfSponsorsGrid a {
    width: 82px;
    height: 82px;
  }
}

.white-banner {
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

Increase internal padding Crowded legal text becomes unreadable fast. CSS .white-banner {
  padding: 24px 28px;
}

@media (max-width: 768px) {
  .white-banner {
    padding: 20px;
  }
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  z-index: 1;
}

.white-banner {
  position: relative;
  z-index: 2;
}

/* ===============================
   GLOBAL HERO BANNER NORMALIZATION
   =============================== */

.hero-banner {
  position: relative;
  color: #ffffff;
}

/* Disable any dark overlays applied globally */
.hero-banner::before,
.hero-banner::after,
.hero-banner .banner-overlay {
  display: none !important;
}

/* Normalize banner text contrast */
.hero-banner h1,
.hero-banner h2,
.hero-banner p {
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

/* Ensure images stay bright */
.hero-banner {
  filter: none !important;
  background-blend-mode: normal !important;
}

/* ===== Winners Grid (mobile-first) ===== */
.winners-grid {
  display: grid;
  grid-template-columns: 1fr;
  /* 1 column on phones */
  gap: 12px;
}

@media (min-width: 560px) {
  .winners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .winners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .winners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== Winner Card Chrome ===== */
.winner-card {
  background: #fff;
  border: 1px solid rgba(21, 27, 45, .12);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(23, 35, 56, .08);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.winner-media {
  position: relative;
  aspect-ratio: 16 / 9;
  /* keeps thumbnail consistent */
  background: #fff;
  border-bottom: 1px solid rgba(21, 27, 45, .12);
}

.winner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.winner-body {
  padding: 12px;
  display: grid;
  gap: 6px;
}

.winner-name {
  font-size: 16px;
  font-weight: 700;
  margin: 2px 0;
  color: #0f1528;
}

.winner-meta {
  font-size: 13px;
  color: #58627a;
  display: grid;
  gap: 4px;
}

.winner-meta span {
  display: inline-block;
}

/* Winners Box Grid */
.winners-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  width: 100%;
}

/* Individual Winner Box */
.winner-card {
  background: #ffffff;
  border: 1px solid rgba(21, 27, 45, 0.12);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(23, 35, 56, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Image Panel */
.winner-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #fff;
  border-bottom: 1px solid rgba(21, 27, 45, 0.12);
}

.winner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Box Body Text */
.winner-body {
  padding: 12px;
  display: grid;
  gap: 6px;
}

.winner-name {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  color: #0f1528;
}

.winner-meta {
  font-size: 13px;
  color: #58627a;
  display: grid;
  gap: 4px;
}

.winners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columns */
  gap: 16px;
}



section {
  max-height: max-content;
  overflow: hidden;
}

.hero-banner {
  width: 100%;
  height: 70vh;
  min-height: 420px;
  max-height: 720px;
  background-image: url("/images/flag1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .hero-banner {
    height: 35vh !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .hero-banner {
    height: 25vh !important;
  }
}
