/* ============================================================
   GOITER AWARENESS WEEK — OFFICIAL STYLESHEET
   "Awarection Saves Lives"™
   
   Design System: Institutional Nonprofit
   Color Palette: Patriotic Red/White/Blue
   Typography: Serious, Trustworthy, Slightly Overdesigned
   ============================================================ */

:root {
    --navy: #1a2744;
    --blue: #2c5282;
    --blue-light: #3182ce;
    --red: #c53030;
    --red-dark: #9b2c2c;
    --red-light: #fc8181;
    --white: #ffffff;
    --off-white: #f7fafc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --gold: #d69e2e;

    --font-heading: 'Merriweather', Georgia, 'Times New Roman', serif;
    --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Oswald', Impact, sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 6px 10px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

a {
    color: var(--blue);
    text-decoration: none;
}

/* ---- ALERT BANNER ---- */
.alert-banner {
    background: var(--red);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.02em;
}

.alert-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.alert-banner a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 700;
}

/* ---- TOP BAR ---- */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
    font-size: 12px;
    letter-spacing: 0.03em;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left .separator {
    margin: 0 8px;
    opacity: 0.4;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}

.top-bar-right a:hover {
    color: var(--white);
}

.top-donate-btn {
    background: var(--red);
    color: var(--white) !important;
    padding: 3px 12px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
}

/* ---- HEADER ---- */
.main-header {
    background: var(--white);
    border-bottom: 3px solid var(--red);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    object-fit: cover;
}

.site-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    line-height: 1.1;
    text-transform: uppercase;
}

.site-tagline {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    transition: color 0.2s;
    white-space: nowrap;
}

.main-nav a:hover {
    color: var(--blue);
}

.nav-donate {
    background: var(--red);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: background 0.2s;
}

.nav-donate:hover {
    background: var(--red-dark);
}

/* ---- HERO ---- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 50%, var(--navy) 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/00000691-PHOTO-2024-09-05-08-43-25.jpg') center/cover;
    opacity: 0.12;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--red-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.btn-primary:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* ---- METRICS BAR ---- */
.metrics-bar {
    background: var(--off-white);
    border-top: 4px solid var(--gold);
    border-bottom: 1px solid var(--gray-200);
    padding: 40px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.metric-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ---- SECTIONS ---- */
.section {
    padding: 80px 0;
}

.section-white { background: var(--white); }
.section-gray { background: var(--gray-50); }
.section-blue { background: var(--blue); color: var(--white); }
.section-red { background: var(--red); color: var(--white); }
.section-navy { background: var(--navy); color: var(--white); }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header-light .section-eyebrow { color: rgba(255,255,255,0.7); }
.section-header-light .section-title { color: var(--white); }
.section-header-light .section-subtitle { color: rgba(255,255,255,0.8); }

.section-eyebrow {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--red);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- ABOUT ---- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-text .lead {
    font-size: 19px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 16px;
    color: var(--gray-700);
    line-height: 1.8;
}

.mission-quote {
    margin-top: 28px;
    padding: 24px 28px;
    background: var(--off-white);
    border-left: 4px solid var(--red);
    border-radius: 0 4px 4px 0;
}

.mission-quote p {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 8px;
}

.mission-quote cite {
    font-size: 13px;
    color: var(--gray-500);
    font-style: normal;
}

.about-img {
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.img-caption {
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 12px;
    font-style: italic;
    line-height: 1.5;
}

/* ---- LEADERS ---- */
.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.leader-card {
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.2s;
}

.leader-card:hover {
    transform: translateY(-4px);
}

.leader-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.leader-info {
    padding: 20px;
}

.leader-info h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
}

.leader-info p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

/* ---- TIMELINE ---- */
.timeline {
    position: relative;
    padding-left: 100px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray-200);
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -11px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--red);
}

.timeline-year {
    position: absolute;
    left: -130px;
    top: 0;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    width: 80px;
    text-align: right;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
}

.timeline-img {
    margin-top: 16px;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    max-width: 500px;
}

/* ---- GAZETTE RESPONSE ---- */
.gazette-response {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.gazette-success {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
}

.gazette-error {
    background: rgba(197,48,48,0.2);
    color: #feb2b2;
    border: 1px solid rgba(197,48,48,0.3);
}

/* ---- VIDEO FEATURE ---- */
.video-feature {
    max-width: 800px;
    margin: 0 auto;
}

.feature-video {
    width: 100%;
    max-height: 500px;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
    background: #000;
    display: block;
    margin: 0 auto;
}

.video-caption {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

.video-caption em {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.6;
}

/* ---- FOUNDING PHOTOS ---- */
.founding-photos {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.founding-photo-pair img {
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    width: 100%;
}

.founding-photo-pair .img-caption {
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 8px;
    font-style: italic;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .founding-photos { grid-template-columns: 1fr; }
}

/* ---- GALLERY ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-large {
    grid-column: span 2;
}

.gallery-large img {
    height: 350px;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: var(--white);
    padding: 60px 16px 16px;
    font-size: 13px;
    line-height: 1.5;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* ---- POSTS / NEWSROOM ---- */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
}

.post-card {
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-200);
}

.post-card:first-child {
    padding-top: 0;
}

.post-date {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.post-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.post-excerpt {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 12px;
}

.post-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue);
}

/* ---- GET INVOLVED ---- */
.involve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 56px;
}

.involve-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 32px 24px;
    text-align: center;
}

.involve-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.involve-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
}

.involve-card p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 20px;
}

.involve-card .btn {
    background: var(--white);
    color: var(--red);
    border-color: var(--white);
}

.involve-card .btn:hover {
    background: var(--off-white);
}

/* ---- THERMOMETER ---- */
.thermometer-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 0 0;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.thermo-title {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 8px;
}

.thermo-subtitle {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 24px;
}

.thermometer {
    background: rgba(0,0,0,0.2);
    border-radius: 20px;
    height: 36px;
    overflow: hidden;
    position: relative;
}

.thermo-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #ecc94b);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    transition: width 1s ease;
}

.thermo-amount {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
}

.thermo-goal {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.85;
}

.thermo-donors {
    font-size: 13px;
    opacity: 0.6;
    margin-top: 4px;
}

/* ---- NEWSLETTER ---- */
.newsletter-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

.newsletter-text h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 8px;
}

.newsletter-text p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    width: 280px;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.newsletter-form .btn {
    white-space: nowrap;
}

/* ---- FOOTER ---- */
.main-footer {
    background: #0d1524;
    color: rgba(255,255,255,0.7);
    padding: 56px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-legal {
    font-size: 11px;
    line-height: 1.6;
    opacity: 0.5;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--white);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.footer-badges {
    display: flex;
    gap: 16px;
}

.badge {
    font-size: 11px;
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 3px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

.footer-social a:hover {
    color: var(--white);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .header-inner { flex-direction: column; gap: 16px; }
    .main-nav { flex-wrap: wrap; justify-content: center; gap: 12px; }
    .hero-title { font-size: 32px; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .leaders-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-large { grid-column: span 1; }
    .involve-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-inner { flex-direction: column; gap: 24px; }
    .timeline { padding-left: 0; }
    .timeline::before { left: 0; }
    .timeline-year { position: static; text-align: left; width: auto; margin-bottom: 4px; }
    .timeline-item { padding-left: 24px; }
    .timeline-item::before { left: -9px; }
}

@media (max-width: 600px) {
    .top-bar-inner { flex-direction: column; gap: 4px; }
    .hero-title { font-size: 26px; }
    .hero-buttons { flex-direction: column; }
    .metrics-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; }
}
