@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --navy: #040A1B;
  --navy-mid: #0D1F3C;
  --navy-light: #1A3560;
  --gold: #D4AF37;
  --gold-light: #F0D060;
  --red: #B22234;
  --white: #FFFFFF;
  --off-white: #F5F7FA;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --text: #1F2937;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--off-white); color: var(--text); line-height: 1.7; }
a { color: var(--navy-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

/* HEADER */
.site-header { background: var(--navy); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.header-top-bar { background: var(--red); text-align: center; padding: 5px 20px; font-size: 11px; letter-spacing: 2px; color: var(--white); font-weight: 600; text-transform: uppercase; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-star { font-size: 26px; color: var(--gold); }
.logo-text { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: 1px; line-height: 1.1; }
.logo-text span { display: block; font-size: 9px; font-weight: 400; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 2px; list-style: none; }
.main-nav a { display: block; padding: 7px 10px; color: rgba(255,255,255,0.85); font-size: 11.5px; font-weight: 500; letter-spacing: 0.4px; text-transform: uppercase; border-radius: 4px; transition: all 0.2s; white-space: nowrap; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); background: rgba(212,175,55,0.1); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); }
.mobile-nav { display: none; background: var(--navy-mid); padding: 16px 24px; border-top: 1px solid rgba(212,175,55,0.2); }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: 10px 0; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 500; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav a:hover { color: var(--gold); }

/* HEROES */
.home-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0a1f4a 100%); color: var(--white); padding: 80px 24px; text-align: center; position: relative; overflow: hidden; }
.home-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-light) 100%); color: var(--white); padding: 56px 24px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23D4AF37' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { position: relative; max-width: 900px; margin: 0 auto; }
.hero-eyebrow { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
.hero-inner h1 { font-family: 'Oswald', sans-serif; font-size: clamp(30px, 6vw, 62px); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; line-height: 1.1; margin-bottom: 18px; }
.hero-inner h1 .gold { color: var(--gold); }
.hero-inner p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 34px; }
.hero-inner .gold-bar { display: block; width: 60px; height: 3px; background: var(--gold); margin: 14px auto; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* BUTTONS */
.btn { display: inline-block; padding: 13px 26px; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border-radius: 4px; transition: all 0.25s; text-decoration: none; border: 2px solid transparent; }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,0.4); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); color: var(--gold); }
.btn-sm { padding: 8px 18px; font-size: 11px; }

/* LAYOUT */
.site-wrap { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.main-content { min-width: 0; }

/* CARD */
.card { background: var(--white); border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid var(--gray-light); }
.card-padded { padding: 32px; }

/* SIDEBAR */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget { background: var(--white); border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid var(--gray-light); overflow: hidden; }
.sidebar-widget-header { background: var(--navy); color: var(--white); padding: 12px 18px; font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border-left: 4px solid var(--gold); }
.sidebar-widget-body { padding: 18px; }
.sidebar-link-list { list-style: none; }
.sidebar-link-list li { border-bottom: 1px solid var(--gray-light); padding: 8px 0; }
.sidebar-link-list li:last-child { border-bottom: none; }
.sidebar-link-list a { font-size: 13px; color: var(--text); display: flex; align-items: center; gap: 8px; }
.sidebar-link-list a::before { content: '›'; color: var(--gold); font-size: 18px; font-weight: bold; }
.sidebar-link-list a:hover { color: var(--navy-light); }
.discord-widget { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: var(--white); border-radius: 8px; padding: 22px; text-align: center; }
.discord-widget h4 { font-family: 'Oswald', sans-serif; font-size: 18px; color: var(--gold); margin-bottom: 8px; }
.discord-widget p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.crisis-widget { background: var(--red); color: var(--white); border-radius: 8px; padding: 18px; text-align: center; }
.crisis-widget h4 { font-family: 'Oswald', sans-serif; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; }
.crisis-widget .crisis-number { font-size: 26px; font-weight: 700; font-family: 'Oswald', sans-serif; letter-spacing: 2px; margin: 8px 0; }
.crisis-widget p { font-size: 11px; color: rgba(255,255,255,0.85); }
.donate-widget { background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%); border: 1px solid rgba(212,175,55,0.3); border-radius: 8px; padding: 22px; text-align: center; }
.donate-widget h4 { font-family: 'Oswald', sans-serif; font-size: 17px; color: var(--gold); margin-bottom: 8px; }
.donate-widget p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 16px; line-height: 1.5; }

/* CONTENT */
.content-body h1, .content-body h2, .content-body h3, .content-body h4 { font-family: 'Oswald', sans-serif; color: var(--navy); margin: 28px 0 10px; line-height: 1.3; }
.content-body h1 { font-size: 30px; }
.content-body h2 { font-size: 24px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); margin-bottom: 18px; }
.content-body h3 { font-size: 19px; }
.content-body h4 { font-size: 16px; }
.content-body p { margin: 0 0 14px; }
.content-body ul, .content-body ol { margin: 0 0 14px 24px; }
.content-body li { margin-bottom: 6px; }
.content-body img { max-width: 100%; height: auto; border-radius: 6px; margin: 14px 0; }
.content-body iframe { max-width: 100%; border-radius: 6px; margin: 18px 0; }
.content-body a { color: var(--navy-light); font-weight: 500; }
.content-body a:hover { color: var(--gold); }
.content-body blockquote { border-left: 4px solid var(--gold); padding: 14px 20px; background: var(--off-white); border-radius: 0 6px 6px 0; margin: 20px 0; font-style: italic; }

/* RAINBOW BAR */
.rainbow-bar { height: 4px; background: linear-gradient(to right, #E40303, #FF8C00, #FFED00, #008026, #004DFF, #750787); border: none; margin: 24px 0; }

/* INFO GRID */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin: 20px 0; }
.info-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 8px; padding: 20px; border-top: 3px solid var(--gold); transition: transform 0.2s, box-shadow 0.2s; }
.info-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.info-card h3 { font-family: 'Oswald', sans-serif; font-size: 15px; color: var(--navy); margin-bottom: 6px; text-transform: uppercase; }
.info-card p { font-size: 13px; color: var(--gray); margin: 0; }
.info-card a { display: inline-block; margin-top: 10px; font-size: 12px; font-weight: 600; color: var(--navy-light); }

/* ROLL CALL */
.roll-call-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 8px; margin: 16px 0; }
.roll-call-name { background: var(--white); border: 1px solid var(--gray-light); border-radius: 6px; padding: 10px 14px; font-size: 13px; transition: all 0.2s; border-left: 3px solid transparent; }
.roll-call-name:hover { border-left-color: var(--gold); background: var(--off-white); transform: translateX(3px); }
.roll-call-name a { color: var(--text); font-weight: 500; }
.roll-call-name a:hover { color: var(--navy-light); }
.alpha-header { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 700; color: var(--navy); background: var(--off-white); border: 1px solid var(--gray-light); border-left: 4px solid var(--gold); padding: 10px 18px; margin: 28px 0 12px; border-radius: 0 6px 6px 0; }

/* RESOURCES */
.resource-category { margin-bottom: 36px; }
.resource-category h2 { font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--navy); border-bottom: 2px solid var(--gold); padding-bottom: 8px; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.resource-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 8px; }
.resource-list li a { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: var(--white); border: 1px solid var(--gray-light); border-radius: 6px; font-size: 13px; color: var(--text); font-weight: 500; transition: all 0.2s; }
.resource-list li a::before { content: '›'; color: var(--gold); font-size: 18px; font-weight: bold; flex-shrink: 0; }
.resource-list li a:hover { border-color: var(--navy-light); color: var(--navy); transform: translateX(3px); }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin: 28px 0; }
.team-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 10px; padding: 26px; border-top: 4px solid var(--gold); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.team-card h3 { font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--navy); margin-bottom: 4px; }
.team-card .role { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* CONTACT */
.contact-form .form-group { margin-bottom: 18px; }
.contact-form label { display: block; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 6px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--gray-light); border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text); background: var(--white); transition: border-color 0.2s; outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(26,53,96,0.1); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.hp-field { display: none !important; }

/* VIDEO */
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 8px; margin: 18px 0; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* NEWS */
.news-item { padding: 20px 0; border-bottom: 1px solid var(--gray-light); }
.news-item:last-child { border-bottom: none; }
.news-item h4 { font-family: 'Oswald', sans-serif; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.news-item h4 a { color: var(--navy); }
.news-item h4 a:hover { color: var(--navy-light); }
.news-item p { font-size: 14px; color: var(--gray); }

/* ANNOUNCEMENT */
.announcement { background: var(--navy-mid); border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; padding: 14px 18px; margin: 20px 0; }
.announcement h4 { font-family: 'Oswald', sans-serif; font-size: 15px; color: var(--gold); margin-bottom: 4px; }
.announcement p, .announcement a { font-size: 13px; color: rgba(255,255,255,0.85); }
.announcement a:hover { color: var(--gold); }

/* VENDOR */
.vendor-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin: 24px 0; }
.vendor-card { background: var(--white); border: 1px solid var(--gray-light); border-radius: 10px; overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.vendor-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.vendor-card-img { width: 100%; height: 140px; object-fit: contain; padding: 20px; background: var(--off-white); display: flex; align-items: center; justify-content: center; }
.vendor-card-img img { max-height: 100px; max-width: 100%; object-fit: contain; }
.vendor-card-body { padding: 18px; }
.vendor-card h3 { font-family: 'Oswald', sans-serif; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.vendor-card p { font-size: 13px; color: var(--gray); margin-bottom: 14px; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.7); margin-top: 80px; }
.footer-rainbow { height: 5px; background: linear-gradient(to right, #E40303, #FF8C00, #FFED00, #008026, #004DFF, #750787); }
.footer-main { max-width: 1200px; margin: 0 auto; padding: 56px 24px 36px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo-text { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: 1px; }
.footer-tagline { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.social-link { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 50%; color: rgba(255,255,255,0.65); font-size: 13px; transition: all 0.2s; }
.social-link:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(212,175,55,0.2); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-sponsors { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-top: 16px; }
.footer-sponsors a { opacity: 0.6; transition: opacity 0.2s; }
.footer-sponsors a:hover { opacity: 1; }
.footer-sponsors img { height: 36px; width: auto; border-radius: 4px; }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 18px 24px; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; font-size: 11px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }
.footer-scripture { text-align: center; padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 13px; font-style: italic; color: rgba(255,255,255,0.3); max-width: 1200px; margin: 0 auto; }

/* UTILITY */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.breadcrumb { font-size: 12px; color: var(--gray); padding: 10px 24px; max-width: 1200px; margin: 0 auto; }
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--navy); }

/* RESPONSIVE */
@media (max-width: 900px) { .page-layout { grid-template-columns: 1fr; } .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .main-nav { display: none; } .hamburger { display: flex; } .site-wrap { padding: 28px 16px; } .card-padded { padding: 20px; } .roll-call-grid { grid-template-columns: 1fr 1fr; } .resource-list { grid-template-columns: 1fr; } .info-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-main { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 480px) { .roll-call-grid { grid-template-columns: 1fr; } .info-grid { grid-template-columns: 1fr; } .hero-inner h1 { font-size: 28px; } }
