/* ══════════════════════════════════════════════════════════════════
   HOLD SOMEONE'S HAND MINISTRY — REDESIGNED CSS
   Inspired by watoto.com & b4ashesinitiative.org aesthetics
   ══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Montserrat:wght@300;400;500;600;700;800&family=Crimson+Pro:ital,wght@0,300;0,400;1,300;1,400&display=swap');

:root {
  --primary: #C8252D;
  --primary-dark: #9A1B22;
  --primary-light: #E84D54;
  --secondary: #1A3A5C;
  --secondary-light: #2A5080;
  --accent: #F4A623;
  --accent-dark: #D4891A;
  --white: #FFFFFF;
  --off-white: #FBF9F6;
  --light-gray: #F2EEE8;
  --gray: #E0D8CC;
  --text: #1C1C1C;
  --text-mid: #4A4A4A;
  --text-light: #6B6B6B;
  --border: rgba(200,37,45,0.15);
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --nav-h: 88px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: var(--off-white); color: var(--text); overflow-x: hidden; line-height: 1.7; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.15; color: var(--text); }

/* LOADER */
#loader { position: fixed; inset: 0; background: var(--secondary); z-index: 9999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.5rem; transition: opacity 0.6s ease, visibility 0.6s ease; }
#loader.done { opacity: 0; visibility: hidden; }
.loader-cross { width: 60px; height: 60px; position: relative; }
.loader-cross::before, .loader-cross::after { content: ''; position: absolute; background: var(--primary); border-radius: 3px; }
.loader-cross::before { width: 8px; height: 60px; left: 26px; top: 0; animation: crossGrow 0.8s ease forwards; }
.loader-cross::after { width: 60px; height: 8px; top: 26px; left: 0; animation: crossGrow 0.8s ease 0.3s both; }
@keyframes crossGrow { from { transform: scale(0); } to { transform: scale(1); } }
.loader-text { font-family: 'Playfair Display', serif; color: white; font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0; animation: fadeIn 0.6s ease 0.9s forwards; }
.loader-bar-wrap { width: 180px; height: 2px; background: rgba(255,255,255,0.15); overflow: hidden; opacity: 0; animation: fadeIn 0.4s ease 1s forwards; }
.loader-bar { height: 100%; background: var(--primary); width: 0; animation: loadBar 1.4s ease 1s forwards; }
@keyframes loadBar { to { width: 100%; } }
@keyframes fadeIn { to { opacity: 1; } }

/* PROGRESS */
.reading-progress { position: fixed; top: 0; left: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); z-index: 1001; width: 0%; transition: width 0.1s linear; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 900; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 5%; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: var(--transition); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
nav.scrolled { height: 70px; box-shadow: 0 4px 30px rgba(0,0,0,0.1); }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-icon { width: 44px; height: 44px; background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-logo-icon svg { width: 24px; fill: white; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.05rem; color: var(--secondary); line-height: 1.1; }
.logo-sub { font-family: 'Montserrat', sans-serif; font-size: 0.52rem; letter-spacing: 0.3em; color: var(--primary); text-transform: uppercase; font-weight: 600; }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; padding: 0.5rem 1rem; position: relative; transition: color 0.3s; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 1rem; right: 1rem; height: 2px; background: var(--primary); transform: scaleX(0); transition: transform 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { background: var(--primary); color: white !important; font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.7rem 1.6rem; text-decoration: none; transition: var(--transition); display: inline-block; }
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--primary); transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: white; border-bottom: 3px solid var(--primary); padding: 1.5rem 5%; z-index: 899; flex-direction: column; gap: 0; box-shadow: 0 10px 40px rgba(0,0,0,0.15); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; padding: 1rem 0; border-bottom: 1px solid var(--gray); transition: color 0.3s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--primary); }
.mobile-menu .mob-cta { background: var(--primary); color: white !important; text-align: center; padding: 1rem; margin-top: 1rem; border-bottom: none; }

/* FLOATS */
.back-to-top { position: fixed; bottom: 110px; right: 28px; width: 44px; height: 44px; background: var(--secondary); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); z-index: 800; text-decoration: none; }
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top svg { width: 18px; stroke: white; fill: none; stroke-width: 2.5; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }
.whatsapp-float { position: fixed; bottom: 30px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 800; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--transition); }
.whatsapp-float svg { width: 28px; fill: white; }
.whatsapp-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ANIMATIONS */
.reveal, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; } .delay-2 { transition-delay: 0.2s; } .delay-3 { transition-delay: 0.3s; } .delay-4 { transition-delay: 0.4s; } .delay-5 { transition-delay: 0.5s; }

@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* BUTTONS */
.btn { display: inline-block; font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 1rem 2.5rem; text-decoration: none; cursor: pointer; transition: var(--transition); border: none; }
.btn span { position: relative; z-index: 1; }
.btn-red { background: var(--primary); color: white; }
.btn-red:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200,37,45,0.35); }
.btn-blue { background: var(--secondary); color: white; }
.btn-blue:hover { background: var(--secondary-light); transform: translateY(-2px); }
.btn-outline-red { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline-red:hover { background: var(--primary); color: white; }
.btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.8); }
.btn-outline-white:hover { background: white; color: var(--primary); }
.btn-accent { background: var(--accent); color: var(--text); font-weight: 800; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }

/* LABELS */
.section-label { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.35em; text-transform: uppercase; color: var(--primary); display: block; margin-bottom: 1rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: 1.5rem; }
.section-title .highlight { color: var(--primary); }
.section-title .blue-txt { color: var(--secondary); }
.section-subtitle { font-size: 1.05rem; color: var(--text-mid); max-width: 620px; line-height: 1.85; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--secondary); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.5s ease; }
.hero-slide.active { opacity: 1; animation: kenBurns 9s ease-out forwards; }
@keyframes kenBurns { from { transform: scale(1.06); } to { transform: scale(1.0); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(26,58,92,0.88) 0%, rgba(26,58,92,0.55) 45%, rgba(200,37,45,0.25) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; padding: 0 8%; padding-top: calc(var(--nav-h) + 3rem); max-width: 850px; }
.hero-eyebrow { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.4em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 1.5rem; opacity: 0; animation: slideUp 0.8s ease 0.5s forwards; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; color: white; line-height: 1.05; margin-bottom: 2rem; opacity: 0; animation: slideUp 0.8s ease 0.8s forwards; }
.hero-title em { font-style: italic; color: var(--accent); display: block; }
.hero-verse { max-width: 560px; padding: 1.5rem 0 1.5rem 1.5rem; border-left: 3px solid var(--accent); margin-bottom: 2.5rem; opacity: 0; animation: slideUp 0.8s ease 1.1s forwards; }
.hero-verse p { font-family: 'Crimson Pro', serif; font-style: italic; font-size: 1.2rem; color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 0.5rem; }
.hero-verse cite { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; letter-spacing: 0.15em; color: var(--accent); font-style: normal; }
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; opacity: 0; animation: slideUp 0.8s ease 1.4s forwards; }
.hero-scroll { position: absolute; bottom: 3rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.5); font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; animation: fadeIn 0.8s ease 2s both; }
.scroll-arrow { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.25); display: flex; align-items: center; justify-content: center; animation: bounce 2s ease infinite 2s; }
.scroll-arrow svg { width: 14px; stroke: white; fill: none; stroke-width: 2; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
.hero-dots { position: absolute; right: 5%; top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: 10px; }
.hero-dot { width: 8px; height: 8px; background: rgba(255,255,255,0.3); border-radius: 50%; cursor: pointer; transition: all 0.3s; }
.hero-dot.active { background: var(--accent); transform: scale(1.4); }

/* STATS BAND */
.stats-band { background: var(--primary); padding: 3.5rem 8%; }
.stats-band-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 0.5rem; }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 900; color: white; display: block; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.72); }

/* VERSE BAND */
.verse-band { background: var(--secondary); padding: 3.5rem 8%; text-align: center; position: relative; overflow: hidden; }
.verse-band::before { content: '\201C'; position: absolute; font-family: 'Playfair Display', serif; font-size: 20rem; color: rgba(255,255,255,0.03); top: -4rem; left: 3%; line-height: 1; pointer-events: none; }
.verse-band blockquote { font-family: 'Crimson Pro', serif; font-style: italic; font-size: clamp(1.1rem, 2.5vw, 1.65rem); color: rgba(255,255,255,0.9); max-width: 850px; margin: 0 auto; line-height: 1.65; position: relative; z-index: 1; }
.verse-band cite { display: block; font-family: 'Montserrat', sans-serif; font-style: normal; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--accent); margin-top: 1.2rem; }

/* MISSION */
.mission-section { padding: 7rem 8%; background: white; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.mission-img-wrap { position: relative; }
.mission-img-main { width: 100%; height: 520px; object-fit: cover; display: block; }
.mission-img-accent { position: absolute; width: 220px; height: 170px; border: 6px solid white; bottom: -2rem; right: -2rem; overflow: hidden; box-shadow: var(--shadow-lg); }
.mission-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.mission-badge { position: absolute; top: -1.5rem; left: -1.5rem; width: 100px; height: 100px; background: var(--primary); display: flex; flex-direction: column; align-items: center; justify-content: center; color: white; text-align: center; }
.mission-badge-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 900; line-height: 1; }
.mission-badge-text { font-size: 0.48rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; line-height: 1.4; }
.mission-text { font-size: 1.02rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 1.5rem; }
.mission-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin: 2rem 0; }
.feature-item { display: flex; gap: 1rem; align-items: flex-start; }
.feature-icon { width: 44px; height: 44px; background: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon svg { width: 20px; fill: white; }
.feature-text h4 { font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; color: var(--secondary); }
.feature-text p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }

/* PILLARS */
.pillars-section { padding: 7rem 8%; background: var(--light-gray); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; background: var(--gray); }
.pillar-card { background: white; padding: 3.5rem 2.5rem; transition: var(--transition); position: relative; overflow: hidden; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); z-index: 1; }
.pillar-number { font-family: 'Playfair Display', serif; font-size: 5rem; font-weight: 900; color: rgba(200,37,45,0.06); line-height: 1; margin-bottom: 1.2rem; transition: color 0.4s; }
.pillar-card:hover .pillar-number { color: rgba(200,37,45,0.12); }
.pillar-icon-wrap { width: 54px; height: 54px; background: var(--primary); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.pillar-icon-wrap svg { width: 24px; fill: white; }
.pillar-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 1rem; color: var(--secondary); }
.pillar-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.85; }

/* OUTREACH CARDS */
.outreach-section { padding: 7rem 8%; background: white; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem; }
.outreach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.outreach-card { position: relative; overflow: hidden; cursor: pointer; }
.outreach-card img { width: 100%; height: 320px; object-fit: cover; display: block; transition: transform 0.6s ease; }
.outreach-card:hover img { transform: scale(1.07); }
.outreach-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem 1.8rem; background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 100%); }
.outreach-tag { display: inline-block; background: var(--primary); color: white; font-size: 0.56rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 0.8rem; margin-bottom: 0.7rem; }
.outreach-card h3 { font-family: 'Playfair Display', serif; color: white; font-size: 1.15rem; margin-bottom: 0.4rem; }
.outreach-card-desc { color: rgba(255,255,255,0.72); font-size: 0.82rem; line-height: 1.5; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.outreach-card:hover .outreach-card-desc { max-height: 80px; }

/* BANNER CTA */
.banner-cta { position: relative; min-height: 500px; display: flex; align-items: center; overflow: hidden; }
.banner-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.banner-cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(200,37,45,0.92) 0%, rgba(26,58,92,0.88) 100%); }
.banner-cta-content { position: relative; z-index: 1; padding: 5rem 8%; max-width: 700px; }
.banner-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.5rem); color: white; margin-bottom: 1.5rem; }
.banner-cta p { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.9; margin-bottom: 2.5rem; max-width: 540px; }
.banner-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* GALLERY */
.gallery-section { padding: 7rem 8%; background: var(--secondary); }
.gallery-section .section-label { color: var(--accent); }
.gallery-section .section-title { color: white; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: 220px 220px; gap: 8px; margin-top: 3.5rem; }
.gallery-item { overflow: hidden; cursor: pointer; position: relative; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(200,37,45,0.65); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.gallery-item-overlay svg { width: 36px; fill: white; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* TESTIMONIALS */
.testimonials-section { padding: 7rem 8%; background: white; overflow: hidden; }
.testimonial-slider { margin-top: 4rem; position: relative; }
.testimonial-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.testimonial-slide { min-width: 100%; }
.testimonial-inner { max-width: 760px; margin: 0 auto; text-align: center; padding: 0 2rem; }
.testimonial-quote { font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--primary); line-height: 0.8; margin-bottom: 1rem; opacity: 0.25; }
.testimonial-text { font-family: 'Crimson Pro', serif; font-style: italic; font-size: clamp(1.15rem, 2vw, 1.5rem); color: var(--text); line-height: 1.75; margin-bottom: 2rem; }
.testimonial-author { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--secondary); display: block; }
.testimonial-location { font-size: 0.72rem; color: var(--primary); letter-spacing: 0.1em; font-weight: 600; text-transform: uppercase; display: block; margin-top: 0.3rem; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 3rem; }
.slider-btn { width: 44px; height: 44px; border: 2px solid var(--gray); background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.slider-btn svg { width: 18px; stroke: var(--text-mid); fill: none; stroke-width: 2; }
.slider-btn:hover { border-color: var(--primary); background: var(--primary); }
.slider-btn:hover svg { stroke: white; }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; background: var(--gray); border: none; border-radius: 50%; cursor: pointer; transition: all 0.3s; padding: 0; }
.slider-dot.active { background: var(--primary); transform: scale(1.4); }

/* EVENTS */
.events-section { padding: 7rem 8%; background: var(--light-gray); }
.events-list { margin-top: 3.5rem; }
.event-item { display: grid; grid-template-columns: 90px 1fr auto; gap: 2.5rem; align-items: center; padding: 2rem 0; border-bottom: 1px solid var(--gray); transition: padding-left 0.3s ease, background 0.3s ease; cursor: pointer; }
.event-item:hover { padding-left: 1.5rem; }
.event-date { text-align: center; }
.event-date .day { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; line-height: 1; color: var(--primary); display: block; }
.event-date .month { font-family: 'Montserrat', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); display: block; }
.event-info h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--secondary); margin-bottom: 0.4rem; }
.event-info p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 0.3rem; }
.event-loc { font-size: 0.72rem; font-weight: 700; color: var(--primary); letter-spacing: 0.05em; }
.event-badge { background: var(--primary); color: white; font-family: 'Montserrat', sans-serif; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.5rem 1.2rem; white-space: nowrap; display: inline-block; }
.event-badge.outline { background: transparent; border: 1px solid var(--gray); color: var(--text-mid); }

/* MARQUEE */
.marquee-strip { background: var(--primary); padding: 1.1rem 0; overflow: hidden; }
.marquee-inner { display: flex; gap: 2.5rem; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-item { font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.88); display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.marquee-item::after { content: '✦'; color: rgba(255,255,255,0.35); font-size: 0.45rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* NEWSLETTER */
.newsletter-section { background: var(--secondary); padding: 6rem 8%; text-align: center; position: relative; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(200,37,45,0.07); }
.newsletter-section .section-label { color: var(--accent); }
.newsletter-section h2 { color: white; max-width: 600px; margin: 0 auto 1rem; }
.newsletter-section p { color: rgba(255,255,255,0.65); margin: 0 auto 2.5rem; max-width: 500px; line-height: 1.8; position: relative; z-index: 1; }
.newsletter-form { display: flex; gap: 0; max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }
.newsletter-form input { flex: 1; padding: 1rem 1.5rem; border: 2px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.08); color: white; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; outline: none; transition: var(--transition); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--accent); background: rgba(255,255,255,0.12); }
.newsletter-form button { background: var(--primary); color: white; border: none; padding: 1rem 1.8rem; font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: var(--primary-dark); }
.newsletter-success { color: var(--accent); font-size: 0.88rem; margin-top: 1rem; display: none; position: relative; z-index: 1; }

/* DONATE CTA */
.donate-cta { background: var(--light-gray); padding: 7rem 8%; text-align: center; position: relative; overflow: hidden; }
.donate-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(200,37,45,0.05), transparent 60%); }
.donate-cta h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.donate-cta h2 span { color: var(--primary); }
.donate-cta p { color: var(--text-mid); max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.9; position: relative; z-index: 1; }
.donate-actions { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* TSHIRT */
.tshirt-section { padding: 7rem 8%; background: white; }
.tshirt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.tshirt-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.tshirt-img-wrap img { width: 100%; height: 300px; object-fit: cover; display: block; box-shadow: var(--shadow); }

/* VIDEO */
.video-section { padding: 7rem 8%; background: var(--secondary); }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.video-section .section-label { color: var(--accent); }
.video-section .section-title { color: white; }
.video-section .section-subtitle { color: rgba(255,255,255,0.65); }
.video-frame-wrap { position: relative; aspect-ratio: 16/9; background: #000; overflow: hidden; }
.video-placeholder-overlay { position: absolute; inset: 0; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
.video-placeholder-overlay img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.play-btn { width: 70px; height: 70px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: var(--transition); }
.play-btn::after { content: ''; border: solid transparent; border-width: 10px 0 10px 18px; border-left-color: white; margin-left: 4px; }
.video-placeholder-overlay:hover .play-btn { transform: scale(1.1); background: var(--primary-dark); }
.video-caption { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; letter-spacing: 0.1em; color: white; text-transform: uppercase; font-weight: 600; position: relative; z-index: 1; }
.video-list { list-style: none; margin-top: 2rem; }
.video-list-item { display: flex; align-items: center; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); cursor: pointer; transition: padding-left 0.3s ease; }
.video-list-item:hover { padding-left: 0.8rem; }
.video-list-num { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.video-list-title { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.3s; }
.video-list-item:hover .video-list-title { color: white; }

/* STICKY DONATE */
.sticky-donate { position: fixed; bottom: 0; left: 0; right: 0; background: var(--secondary); padding: 1rem 5%; display: none; align-items: center; justify-content: space-between; gap: 1rem; z-index: 700; border-top: 3px solid var(--primary); box-shadow: 0 -5px 30px rgba(0,0,0,0.2); }
.sticky-donate.show { display: flex; }
.sticky-donate p { color: white; font-size: 0.82rem; }
.sticky-donate p span { color: var(--accent); font-weight: 600; }
.sticky-donate-close { background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 1.4rem; line-height: 1; padding: 0 0.5rem; transition: color 0.3s; flex-shrink: 0; }
.sticky-donate-close:hover { color: white; }

/* PAGE HERO */
.page-hero { position: relative; min-height: 65vh; display: flex; align-items: flex-end; padding: 0 8% 5rem; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 35%; animation: slowZoom 12s ease-out forwards; }
@keyframes slowZoom { from { transform: scale(1.06); } to { transform: scale(1.0); } }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.2) 100%); }
.page-hero-content { position: relative; z-index: 2; padding-top: var(--nav-h); }
.page-hero-content .section-label { color: var(--accent); opacity: 0; animation: slideUp 0.8s ease 0.3s forwards; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; color: white; line-height: 1.1; opacity: 0; animation: slideUp 0.8s ease 0.5s forwards; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; opacity: 0; animation: slideUp 0.6s ease 0.8s forwards; }
.breadcrumb a, .breadcrumb span { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-decoration: none; letter-spacing: 0.08em; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--accent); }

/* FORM STYLES */
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 1rem 1.2rem; border: 2px solid var(--gray); background: white; font-family: 'Montserrat', sans-serif; font-size: 0.9rem; color: var(--text); outline: none; transition: border-color 0.3s; -webkit-appearance: none; appearance: none; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--primary); }
.form-group textarea { min-height: 140px; resize: vertical; }

/* FOOTER */
footer { background: #0F1E30; color: rgba(255,255,255,0.75); }
.footer-top { padding: 5rem 8%; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; }
.footer-brand .logo-main { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: white; display: block; margin-bottom: 0.3rem; }
.footer-brand .logo-sub { font-family: 'Montserrat', sans-serif; font-size: 0.52rem; letter-spacing: 0.3em; color: var(--primary); text-transform: uppercase; display: block; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.9; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; transition: background 0.3s; text-decoration: none; }
.footer-social a svg { width: 16px; fill: rgba(255,255,255,0.65); }
.footer-social a:hover { background: var(--primary); }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: white; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-col li a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }
.footer-contact-icon { width: 36px; height: 36px; background: rgba(200,37,45,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.footer-contact-icon svg { width: 16px; fill: var(--primary); }
.footer-contact-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.2rem; }
.footer-contact-item a, .footer-contact-item p { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; margin: 0; }
.footer-contact-item a:hover { color: white; }
.footer-bottom { padding: 1.8rem 8%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-bottom span { color: var(--primary); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .mission-grid { gap: 4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: 200px 200px; }
  .gallery-item:first-child { grid-column: span 1; grid-row: span 1; }
}
@media (max-width: 900px) {
  :root { --nav-h: 72px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mission-grid, .tshirt-grid, .video-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pillars-grid { grid-template-columns: 1fr; }
  .outreach-grid { grid-template-columns: 1fr 1fr; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
  .event-item { grid-template-columns: 70px 1fr; }
  .event-badge { display: none; }
  .mission-img-accent, .mission-badge { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mission-img-main { height: 380px; }
}
@media (max-width: 640px) {
  .hero-content { padding: 0 5%; padding-top: calc(var(--nav-h) + 2rem); }
  .outreach-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .newsletter-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .donate-actions { flex-direction: column; align-items: center; }
  .banner-cta-actions { flex-direction: column; }
  .tshirt-images { grid-template-columns: 1fr; }
  .page-hero { min-height: 50vh; }
  .hero-dots { display: none; }
  .hero-scroll { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-band-inner { grid-template-columns: 1fr; }
  .mission-features { grid-template-columns: 1fr; }
}
