:root {
  --sky:        #4BBDE8;
  --sky-dark:   #2a9fd4;
  --sky-deeper: #1a7aaa;
  --navy:       #1c2f45;
  --gold:       #c9a227;
  --gold-light: #e8c547;
  --cream:      #f5fbff;
  --white:      #ffffff;
  --gray:       #f0f7fc;
  --text:       #1a2533;
  --muted:      #4a6070;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Source Sans 3', sans-serif; color: var(--text); background: var(--white); font-size: 18px; line-height: 1.7; }
a { text-decoration: none; color: inherit; }

/* TOP BAR */
.topbar { background: var(--navy); color: rgba(255,255,255,.7); font-size: .85rem; letter-spacing: .04em; display: flex; justify-content: flex-end; gap: 1.5rem; padding: .5rem 2rem; }
.topbar a { color: rgba(255,255,255,.7); }
.topbar a:hover { color: var(--sky); }

/* NAV */
nav { background: var(--white); border-bottom: 3px solid var(--sky); display: flex; align-items: center; justify-content: space-between; padding: .25rem 2.5rem; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 14px rgba(75,189,232,.12); }
.nav-logo img { height: 130px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; }
.nav-links a { font-size: 1.05rem; font-weight: 700; color: var(--navy); padding: .6rem 1rem; border-radius: 6px; letter-spacing: .02em; transition: background .2s, color .2s; }
.nav-links a:hover, .nav-links a.active { background: var(--gray); color: var(--sky-dark); }
.nav-donate { background: var(--sky) !important; color: var(--white) !important; border-radius: 30px !important; padding: .6rem 1.5rem !important; font-size: 1.05rem !important; }
.nav-donate:hover { background: var(--sky-dark) !important; }

/* PAGE HERO BANNER */
.page-hero { background: linear-gradient(135deg, #0d2035 0%, #1a3a5c 50%, var(--sky-deeper) 100%); padding: 4rem 2.5rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 60% 40%, rgba(75,189,232,.18) 0%, transparent 60%); }
.page-hero-eyebrow { display: inline-block; background: var(--sky); color: var(--white); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: .3rem .9rem; border-radius: 3px; margin-bottom: 1rem; position: relative; z-index: 1; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--white); line-height: 1.2; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 640px; margin: 1rem auto 0; position: relative; z-index: 1; }

/* SHARED SECTION STYLES */
.section-label { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sky-dark); margin-bottom: .6rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 1rem; line-height: 1.25; }
.section-body { color: var(--muted); font-size: 1.1rem; line-height: 1.85; }

/* CONTENT WRAPPER */
.content-wrap { max-width: 1100px; margin: 0 auto; padding: 4rem 2.5rem; }
.content-wrap h2 { font-family: 'Playfair Display', serif; font-size: 1.9rem; color: var(--navy); margin: 2.5rem 0 .75rem; }
.content-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--sky-deeper); margin: 2rem 0 .6rem; }
.content-wrap p { font-size: 1.1rem; color: var(--muted); line-height: 1.85; margin-bottom: 1.1rem; }
.content-wrap ul { margin: .75rem 0 1.25rem 1.5rem; }
.content-wrap ul li { font-size: 1.1rem; color: var(--muted); line-height: 1.8; margin-bottom: .4rem; }

/* CARD GRID */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.75rem; margin-top: 2rem; }
.card { background: var(--white); border-radius: 10px; border: 1px solid rgba(75,189,232,.15); box-shadow: 0 2px 16px rgba(75,189,232,.08); padding: 2rem; transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(75,189,232,.15); }
.card-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--sky); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: .6rem; }
.card p { font-size: 1rem; color: var(--muted); line-height: 1.7; }
.card .badge { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 20px; margin-bottom: .75rem; }
.badge-done { background: #d4f7e7; color: #1a6644; }
.badge-active { background: #d4eaf7; color: #1a4a6e; }
.badge-upcoming { background: #fdf4dc; color: #7a5a0a; }

/* BUTTONS */
.btn-primary { background: var(--sky); color: var(--white); font-weight: 700; font-size: 1.05rem; padding: .9rem 2rem; border-radius: 30px; transition: background .2s, transform .15s; display: inline-block; margin-top: 1rem; }
.btn-primary:hover { background: var(--sky-dark); transform: translateY(-1px); }
.btn-navy { background: var(--navy); color: var(--white); font-weight: 700; font-size: 1.05rem; padding: .9rem 2rem; border-radius: 30px; transition: background .2s; display: inline-block; margin-top: 1rem; }
.btn-navy:hover { background: #0d2035; }
.btn-outline-sky { border: 2px solid var(--sky); color: var(--sky-dark); font-weight: 700; font-size: 1.05rem; padding: .85rem 2rem; border-radius: 30px; transition: background .2s; display: inline-block; margin-top: 1rem; }
.btn-outline-sky:hover { background: var(--gray); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* HIGHLIGHT BOX */
.highlight-box { background: var(--cream); border-left: 4px solid var(--sky); border-radius: 0 8px 8px 0; padding: 1.5rem 2rem; margin: 2rem 0; }
.highlight-box p { margin: 0; font-size: 1.1rem; color: var(--navy); font-style: italic; }

/* DONATE OPTION CARDS */
.donate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; margin-top: 2rem; }
.donate-card { background: var(--white); border-radius: 12px; border: 2px solid rgba(75,189,232,.2); padding: 2rem; text-align: center; transition: border-color .25s, box-shadow .25s; }
.donate-card:hover { border-color: var(--sky); box-shadow: 0 6px 24px rgba(75,189,232,.15); }
.donate-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: .75rem; }
.donate-card p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
.donate-amount { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--sky-dark); font-weight: 700; }

/* CONTACT BOX */
.contact-box { background: linear-gradient(135deg, #0d2035, #1a3a5c); border-radius: 12px; padding: 2.5rem; color: var(--white); text-align: center; margin-top: 2.5rem; }
.contact-box h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); margin-bottom: .75rem; }
.contact-box p { color: rgba(255,255,255,.8); font-size: 1.05rem; margin-bottom: .4rem; }
.contact-box a { color: var(--sky); text-decoration: underline; }

/* FOOTER */
footer { background: #0b1a28; color: rgba(255,255,255,.6); padding: 3.5rem 2.5rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; max-width: 1200px; margin: 0 auto 2.5rem; }
.footer-brand h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--white); margin-bottom: .65rem; }
.footer-brand p { font-size: .95rem; line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sky); margin-bottom: .9rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { font-size: 1rem; color: rgba(255,255,255,.6); transition: color .2s; text-decoration: underline; text-underline-offset: 3px; }
.footer-col a:hover { color: var(--sky); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.25rem; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .75rem; font-size: .85rem; }

/* RESPONSIVE */
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { nav { padding: .5rem 1rem; } .nav-links { display: none; } .footer-grid { grid-template-columns: 1fr; } .content-wrap { padding: 2.5rem 1.25rem; } }
