/* =========================================================
   FCI – Flat Light Site with Dark Frame (2026-ready)
   ========================================================= */

:root{
  --accent: rgb(40,160,40);        /* primary brand / action */
  --accent-dark: rgb(28,78,28);    /* header & footer frame */
  --bg: rgb(246,251,246);          /* light green-tinted page background */
  --bg: rgb(215,225,215);          /* light green-tinted page background */  

  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15,23,42,.14);

  --max: 1120px;
  --radius: 14px;

  --header-h: 72px;
  --hero-h: 600px;
}

/* =========================================================
   Base
   ========================================================= */

*{ box-sizing:border-box; }

html, body{
  margin:0;
  padding:0;
}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI",
               Roboto, Arial, "Noto Sans";
  background: var(--bg);
  color: var(--text);
  line-height:1.6;
  font-size:16px;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{ color:inherit; }

a:focus-visible{
  outline:3px solid rgba(40,160,40,.35);
  outline-offset:3px;
  border-radius:8px;
}

/* =========================================================
   Layout Helpers
   ========================================================= */

.fullbleed{ width:100%; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   Header / Navigation
   ========================================================= */

.site-header{
  min-height: var(--header-h);
  background: var(--accent-dark);
  border-bottom:1px solid rgba(255,255,255,.14);
  display:flex;
  align-items:center;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  width:100%;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}

.brand-mark{
  width:34px;
  height:34px;
  background: var(--accent);
}

.brand-name{
  color:rgb(174,204,174);
  font-weight:500;
  letter-spacing:.5px;
}

/* Navigation */

.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.nav a{
  position:relative;
  padding:10px 14px;
  font-weight:650;
  background:transparent;
  color:rgb(174,204,174);
  text-decoration:none;
  border-radius:10px;
}

.nav a:hover{
  background: rgba(255,255,255,.08);
}

/* Active underline indicator
.nav a::after{
  content:"";
  position:absolute;
  left:10px;
  right:10px;
  bottom:4px;
  height:2px;
  background:transparent;
} */

.nav a[aria-current="page"]::after{
  background: var(--accent);
}

/* Donate nav button (always highlighted) */
.nav a.nav-donate{
  background-color: rgb(170,210,170);
  color:#0b1b0b;
  font-weight:800;
}

.nav a.nav-donate::after{
  background:transparent;
}

.nav a.nav-donate:hover{
  background: rgb(34,145,34);
}

/* =========================================================
   Hero Section
   ========================================================= */

.hero{
  min-height: var(--hero-h);
  display:flex;
  align-items:flex-start;
  text-align: center;
}

/* Shared hero background image (index + donate) */
.hero.hero--image{
  background-image:
    linear-gradient(
      180deg,
      rgba(0,0,0,.35),
      rgba(0,0,0,.35)
    ),
    url("../images/hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-inner{
  display:grid;
  grid-template-columns: 1fr;
  gap:28px;
  padding: 20px 0;
  max-width: 1000px;     /* width of text block */
  margin-left: auto;       /* left aligned */
  margin-right: auto;   /* keeps it on the left */
}

/* Hero text */
.kicker{
  font-size:.85rem;
  font-weight:750;
  letter-spacing:.04em;
  text-transform:uppercase;
  color: var(--accent);
  margin-bottom:10px;
}

.hero h1{
  margin:0 0 0px;
  font-size: clamp(2rem, 10vw, 5rem);
  line-height:1em;
  font-weight: 900;
  /* color:rgb(28,78,28);  */
  color:rgb(255,255,255);
}

.hero p{
  margin:0;
  font-size: clamp(1rem, 4vw, 1.5rem);
  line-height: 1.5em;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgb(255,255,255);
  /* color: rgb(28,78,28); */
}

/* Hero side block */
.hero-side{
  border-left:3px solid rgba(255,255,255,.35);
  padding-left:18px;
}

.hero-side h2{
  margin:0 0 8px;
  font-size:1.1rem;
  font-weight:900;
  color: var(--accent);
}

.hero-side p{
  margin:0;
  color: rgba(255,255,255,.82);
}

/* =========================================================
   Sections & Content Blocks
   ========================================================= */

.section{
  padding:44px 0;
}

.section-title{
  margin:0 0 16px;
  font-size: clamp(1.75rem, 4vw, 3rem);
  /* font-size:3rem; */
  font-weight: 900;
  letter-spacing:.05em;
  color: rgb(28,78,28);
  text-align: center;
}

.blocks{
  display:grid;
  gap:18px;
  max-width:78ch;
  margin: 0 auto;
}

.block{
  background:#ffffff;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:15px;
}

.block h3{
  margin:0 0 8px;
  font-size:1.5rem;
  font-weight:900;
  color: var(--accent);
}

.block p{
  margin:0;
  font-size:1.02rem;
  color: var(--muted);
}

/* Donation buttons */
.btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 14px;
  background: var(--accent);
  color:rgb(255,255,255);
  font-weight:800;
  border-radius:10px;
  text-decoration:none;
}

.btn:hover{
  background: rgb(34,145,34);
}

/* Image placeholder block */
.president-section {
  text-align: center;
  margin-top: 30px;
}

.president-photo {
  width: 150px;      /* adjust as needed */
  height: auto;
  display: block;
  margin: 0 auto 10px auto;  /* centers image + adds space below */
}

.president-text {
  margin: 20px 0 0 0;
  line-height: 1.1em;
}

.sub-title {
  margin: 0;
  text-align: center;
  font-size: clamp(0.75rem, 4vw, 1.5rem);
  /* font-size: 1.5em; */
  line-height: 1.2em;
}

/* =========================================================
   Footer
   ========================================================= */

.site-footer{
  background: var(--accent-dark);
  border-top:1px solid rgba(255,255,255,.14);
  padding:28px 0 34px;
}

.footer-inner{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  text-align:center;
  justify-items:center;
}

.footer-meta{
  color:rgb(174,204,174);
  font-size:1.0rem;
}

.footer-meta strong{
    color:rgb(174,204,174);
}

.footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
  color:rgb(174,204,174);
  font-size:1.0rem;
}

.footer-label{
  color:rgb(174,204,174);
  font-weight:650;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (max-width: 860px){
  .hero-inner{
    grid-template-columns:1fr;
  }

  .hero-side{
    border-left:none;
    border-top:3px solid rgba(255,255,255,.35);
    padding-left:0;
    padding-top:14px;
  }

  .footer-inner{
    grid-template-columns:1fr;
  }
}

@media (max-width: 520px){
  :root{
    --header-h: 76px;
  }

  .header-inner{
    flex-wrap:wrap;
  }

  .nav{
    width:100%;
    justify-content:flex-end;
  }
}