/* ============================
   Taking It To The Streets Outreach
   ============================ */

:root {
  --pink: #e91e63;
  --pink-dk: #c2185b;
  --pink-lt: #ff4d8c;
  --black: #0a0a0a;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --border: #ebebeb;
  --bg: #ffffff;
  --bg-soft: #f7f7f8;
  --white: #ffffff;
  --shadow-md: 0 14px 40px rgba(0,0,0,.10);
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', 'Inter', sans-serif; font-size: 16px; line-height: 1.7; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s; }
a:hover { color: var(--pink); }
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.2; color: var(--ink); font-weight: 800; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; font-size: 15px; font-weight: 600; border-radius: 50px; border: none; cursor: pointer; transition: all .3s; font-family: inherit; }
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-dk); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(233,30,99,.35); }
.btn-pink-outline { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
.btn-pink-outline:hover { background: var(--pink); color: #fff; }
.btn-ghost-white { background: transparent; color: #fff; border: 2px solid var(--pink); }
.btn-ghost-white:hover { background: var(--pink); color: #fff; }

/* ── Header ── */
.site-header { background: #000; color: #fff; padding: 14px 30px; position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header-logo img { height: 70px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 0; }
.header-nav a { color: #fff; font-size: 15px; font-weight: 600; padding: 10px 18px; transition: color .25s; position: relative; }
.header-nav a.active, .header-nav a:hover { color: var(--pink); }
.header-nav a.active::after { content: ''; position: absolute; bottom: 2px; left: 18px; right: 18px; height: 2px; background: var(--pink); }
.header-sep { color: rgba(255,255,255,.25); font-size: 18px; }
.header-call { display: inline-flex; align-items: center; gap: 12px; padding: 10px 22px; border: 1.5px solid var(--pink); border-radius: 50px; color: var(--pink); font-weight: 700; font-size: 14px; transition: all .25s; }
.header-call:hover { background: var(--pink); color: #fff; }
.header-call .ph { width: 36px; height: 36px; border-radius: 50%; background: var(--pink); color: #fff; display: grid; place-items: center; }
.header-call .ph svg { width: 16px; height: 16px; fill: currentColor; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 2px; background: #fff; transition: all .3s; }

/* ── Mobile menu ── */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; max-width: 85vw; height: 100vh; background: #000; color: #fff; z-index: 200; padding: 80px 28px 28px; transition: right .35s; box-shadow: -8px 0 30px rgba(0,0,0,.3); }
.mobile-menu.open { right: 0; }
.mobile-menu-close { position: absolute; top: 18px; right: 22px; background: none; border: none; color: #fff; font-size: 30px; cursor: pointer; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.mobile-menu a { color: #fff; font-size: 18px; font-weight: 600; }
.mobile-menu a:hover { color: var(--pink); }

/* ── Page label strip ── */
.page-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 30px; }
.page-strip-inner { max-width: 1320px; margin: 0 auto; font-size: 20px; font-weight: 700; color: var(--ink); }

/* ── Hero (slider with photo bg) ── */
.hero { position: relative; height: 720px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-bg .slide.active { opacity: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.32); z-index: 1; }
.hero-inner { position: relative; z-index: 2; height: 100%; max-width: 1100px; margin: 0 auto; padding: 0 80px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.hero h1 { color: #fff; font-size: clamp(32px, 4.5vw, 56px); margin-bottom: 24px; line-height: 1.2; letter-spacing: -.5px; max-width: 900px; }
.hero p { color: #fff; font-size: clamp(15px, 1.3vw, 18px); margin-bottom: 38px; max-width: 880px; line-height: 1.7; }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 50px; height: 50px; border-radius: 50%; background: rgba(0,0,0,.30); border: 1px solid rgba(255,255,255,.4); color: #fff; display: grid; place-items: center; cursor: pointer; transition: all .25s; padding: 0; }
.hero-arrow:hover { background: var(--pink); border-color: var(--pink); }
.hero-arrow svg { width: 24px; height: 24px; fill: currentColor; }
.hero-arrow.prev { left: 30px; }
.hero-arrow.next { right: 30px; }

/* ── Common section ── */
section { padding: 90px 30px; }
.section-wrap { max-width: 1280px; margin: 0 auto; }
.section-title { text-align: center; font-size: clamp(32px, 4vw, 48px); font-weight: 800; margin-bottom: 60px; color: var(--ink); letter-spacing: 1px; text-transform: uppercase; }

/* ── About-Us ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: center; }
.about-img { width: 100%; height: 100%; max-height: 540px; object-fit: cover; border-radius: var(--radius); }
.about-eyebrow { color: var(--pink); font-size: 20px; font-weight: 700; margin-bottom: 18px; }
.about-content h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 22px; line-height: 1.2; display: none; }
.about-content p { color: var(--ink); margin-bottom: 28px; font-size: 17px; line-height: 1.8; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.about-list li { display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 600; }
.about-list .tick { width: 24px; height: 24px; color: var(--pink); flex-shrink: 0; }
.about-list svg { width: 22px; height: 22px; fill: currentColor; }

/* ── Services ── */
.services { background: #fff; }
.svc-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 30px; }
.svc-row.two { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin: 0 auto; }
.svc-card { background: #000; color: #fff; border-radius: 18px; overflow: hidden; transition: all .3s; }
.svc-card.featured { box-shadow: 0 0 0 2px var(--pink), 0 10px 30px rgba(233,30,99,.25); }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 18px 50px rgba(0,0,0,.20); }
.svc-card-img { height: 320px; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body { padding: 26px 26px 32px; text-align: center; }
.svc-card-body h3 { color: var(--pink); font-size: 22px; margin-bottom: 16px; }
.svc-card-body p { color: rgba(255,255,255,.85); font-size: 14px; line-height: 1.8; margin-bottom: 22px; }
.svc-donate { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border: 1.5px solid #fff; border-radius: 50px; color: #fff; font-weight: 600; font-size: 14px; transition: all .25s; }
.svc-donate:hover { background: var(--pink); border-color: var(--pink); color: #fff; }
.svc-donate .coin { width: 22px; height: 22px; border-radius: 50%; background: #fff; color: #000; display: inline-grid; place-items: center; font-size: 12px; font-weight: 800; }

/* ── Gallery ── */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; transition: transform .4s, box-shadow .4s; cursor: pointer; }
.gallery-grid img:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; }
.contact-card { background: #000; color: #fff; border-radius: 18px; padding: 50px 44px; }
.contact-card h3 { color: #fff; font-size: 38px; font-weight: 800; margin-bottom: 22px; }
.contact-card .desc { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 15px; }
.contact-card .row { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; font-size: 16px; color: var(--pink); }
.contact-card .row svg { width: 20px; height: 20px; fill: var(--pink); flex-shrink: 0; }
.contact-card .row a { color: var(--pink); }
.contact-card .row a:hover { color: #fff; }
.contact-card .linktree-btn { display: inline-block; padding: 12px 36px; border: 1.5px solid var(--pink); color: var(--pink); border-radius: 50px; font-weight: 600; margin: 12px 0 26px; transition: all .25s; }
.contact-card .linktree-btn:hover { background: var(--pink); color: #fff; }
.contact-card .socials { display: flex; gap: 14px; }
.contact-card .socials a { width: 38px; height: 38px; border-radius: 50%; background: var(--pink); display: grid; place-items: center; transition: all .25s; }
.contact-card .socials a:hover { background: var(--pink-dk); transform: translateY(-2px); }
.contact-card .socials svg { width: 16px; height: 16px; fill: #fff; }

.contact-form h3 { color: #f5b800; font-size: 38px; font-weight: 800; margin-bottom: 12px; }
.contact-form .lead { color: var(--ink); font-size: 16px; margin-bottom: 26px; }
.contact-form input,
.contact-form textarea { width: 100%; padding: 16px 20px; border: 1px solid var(--border); border-radius: 6px; font-family: inherit; font-size: 15px; margin-bottom: 18px; background: #fff; transition: all .2s; }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(233,30,99,.15); }
.contact-form textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.contact-form .send-btn { padding: 12px 38px; background: #fff; color: #f5b800; border: 2px solid #f5b800; border-radius: 50px; font-weight: 700; cursor: pointer; transition: all .25s; font-family: inherit; }
.contact-form .send-btn:hover { background: #f5b800; color: #fff; }

/* ── Footer ── */
.site-footer { background: #000; color: rgba(255,255,255,.85); padding: 70px 30px 30px; }
.footer-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-brand img { height: 130px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 380px; }
.footer-col h4 { color: #fff; font-size: 30px; margin-bottom: 28px; text-align: center; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.footer-col a { font-size: 15px; transition: color .25s; }
.footer-col a:hover, .footer-col a.active { color: var(--pink); }
.footer-col .col-sub { text-align: center; margin-bottom: 22px; color: rgba(255,255,255,.7); font-size: 14px; }
.footer-col .linktree-btn { display: block; max-width: 280px; margin: 0 auto 20px; text-align: center; padding: 12px 28px; border: 1.5px solid var(--pink); color: var(--pink); border-radius: 50px; font-weight: 600; transition: all .25s; }
.footer-col .linktree-btn:hover { background: var(--pink); color: #fff; }
.footer-col .socials { display: flex; gap: 14px; justify-content: center; }
.footer-col .socials a { width: 42px; height: 42px; border-radius: 50%; background: var(--pink); display: grid; place-items: center; transition: all .25s; }
.footer-col .socials a:hover { background: var(--pink-dk); transform: translateY(-2px); }
.footer-col .socials svg { width: 18px; height: 18px; fill: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 25px; text-align: center; font-size: 14px; color: rgba(255,255,255,.85); max-width: 1280px; margin: 0 auto; }
.footer-bottom .credit { color: var(--pink); font-weight: 600; }

/* ── Animations & Transitions ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

/* Hero text entrance */
.hero h1 { animation: fadeUp 1s ease both; }
.hero p { animation: fadeUp 1s ease .2s both; }
.hero .btn { animation: fadeUp 1s ease .4s both; }

/* Hero active slide gets slow zoom (Ken Burns) */
.hero-bg .slide.active img { animation: slowZoom 10s ease-in-out infinite alternate; }

/* Reveal-on-scroll (JS adds .in class) */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }

/* Hover lifts */
.svc-card, .gallery-grid img, .about-list li { transition: transform .3s ease, box-shadow .3s ease, color .3s ease; }
.about-list li:hover { color: var(--pink); transform: translateX(6px); }
.btn-pink { transition: all .3s ease, transform .25s ease; }
.btn-pink:active { transform: translateY(0) scale(.97); }

/* Section title underline animation */
.section-title { position: relative; padding-bottom: 18px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--pink); border-radius: 2px; transition: width .5s ease; }
.section-title:hover::after { width: 120px; }

/* Smooth nav link underline */
.header-nav a { position: relative; }
.header-nav a::before { content: ''; position: absolute; bottom: 2px; left: 50%; right: 50%; height: 2px; background: var(--pink); transition: left .3s ease, right .3s ease; }
.header-nav a:hover::before { left: 18px; right: 18px; }

/* Service card image hover */
.svc-card-img img { transition: transform .6s ease, filter .3s ease; }
.svc-card:hover .svc-card-img img { transform: scale(1.08); }

/* Linktree button pulse on hover */
.linktree-btn { position: relative; overflow: hidden; }
.linktree-btn::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,.15); border-radius: 50%; transform: translate(-50%, -50%); transition: width .5s ease, height .5s ease; }
.linktree-btn:hover::before { width: 300px; height: 300px; }

/* Form field focus glow */
.contact-form input, .contact-form textarea { transition: all .3s ease; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .header-nav, .header-call { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-row, .svc-row.two { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { height: 560px; }
  .hero-inner { padding: 0 60px; }
}
@media (max-width: 600px) {
  .hero { height: 480px; }
  .hero-inner { padding: 0 40px; }
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow.prev { left: 12px; }
  .hero-arrow.next { right: 12px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-card { padding: 36px 28px; }
}
