/* WOOFE Styles */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; color: #111827; background: #ffffff; }
html { scroll-behavior: smooth; }

:root { --color-primary: #EFBF07; --color-primary-shadow: rgba(239, 191, 7, 0.2); --color-secondary: #000000; }

.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 16px; }

.site-header { position: sticky; top: 0; z-index: 10; background: var(--color-primary); color: #111827; border-bottom: 1px solid rgba(0,0,0,0.08); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.header-content { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 800; letter-spacing: 0.02em; font-size: 22px; color: #111827; }
.brand-logo { height: 40px; width: auto; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,1,1); white-space: nowrap; border: 0; }
.nav .btn { margin-left: 8px; }

.hero { background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 100%), url("banner-1.png") center/cover no-repeat; color: #fff; padding: 108px 0; text-align: center; }
.hero-logo { height: 72px; width: auto; margin: 0 auto 12px; display: block; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25)); }
.hero h1 { margin: 0 0 12px; font-size: 40px; line-height: 1.2; letter-spacing: -0.01em; }
.hero p { margin: 0 0 20px; color: #e5e7eb; }

.donate-section { padding: 56px 0 72px; background: #fbfbf9; }
.donate-section h2 { margin: 0 0 8px; font-size: 34px; text-align: center; letter-spacing: -0.01em; color: #3b3b3b; }
.donate-section .sub { margin: 0 0 28px; color: #7b7b7b; text-align: center; }

/* Center the donation panels and content */
.donate-section .container { text-align: center; }
.panel { max-width: 980px; margin-left: auto; margin-right: auto; }
.panel h3 { text-align: center; }

.mission { padding: 32px 0; background: #ffffff; text-align: center; }
.mission h2 { margin: 0 0 8px; font-size: 28px; }
.mission p { margin: 0; color: #374151; }

fieldset { border: 1px solid #e5e7eb; padding: 12px 16px; border-radius: 12px; margin: 0 0 16px; }
legend { padding: 0 6px; color: #6b7280; }

.frequency-options { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.radio { display: inline-flex; align-items: center; gap: 8px; padding: 2px; border-radius: 9999px; cursor: pointer; user-select: none; background: #ffffff; border: 1px solid #ebebeb; }
.radio input { accent-color: var(--color-primary); }
.radio span { padding: 8px 12px; border-radius: 9999px; }
.radio:hover { background: #fff7ed; }
.radio input:checked + span { background: #f59e0b1a; color: #111827; box-shadow: inset 0 0 0 2px var(--color-primary); }

.segmented-card { background: #ffffff; border: 1px solid #efefef; border-radius: 16px; padding: 20px; margin: 0 auto 24px; max-width: 980px; box-shadow: 0 6px 18px rgba(17,24,39,0.06); }

.panel { border: 1px solid #e5e7eb; border-radius: 16px; padding: 20px; margin-top: 16px; background: #ffffff; box-shadow: 0 10px 24px rgba(17,24,39,0.06); }
.panel.is-hidden { display: none; }
.panel h3 { margin: 0 0 12px; }

.amounts { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.amount { appearance: none; border: 1px solid #d1d5db; background: #fff; color: #111827; padding: 10px 16px; border-radius: 9999px; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease; }
.amount:hover { border-color: var(--color-primary); box-shadow: 0 6px 16px rgba(17,24,39,0.08); transform: translateY(-1px); }
.amount.is-selected { border-color: var(--color-primary); background: #fffbeb; box-shadow: 0 0 0 3px var(--color-primary-shadow); }

.custom-amount { margin-top: 14px; }
.input-wrap { display: inline-flex; align-items: center; border: 1px solid #d1d5db; border-radius: 12px; overflow: hidden; }
.currency { background: #f3f4f6; padding: 8px 10px; border-right: 1px solid #d1d5db; color: #6b7280; }
input[type="number"] { border: 0; padding: 8px 10px; width: 160px; outline: none; }

.thanks { margin-top: 12px; font-weight: 600; color: #065f46; min-height: 1em; }

.btn { display: inline-block; padding: 10px 16px; border-radius: 9999px; text-decoration: none; font-weight: 600; border: 1px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn-primary { background: var(--color-primary); color: #111827; border-color: #cfa306; box-shadow: 0 8px 18px rgba(239,191,7,0.35); }
.btn-primary:hover { background: #ddb106; }
.btn-primary:disabled { background: #9ca3af; cursor: not-allowed; }
.btn-secondary { background: #fff; color: #111827; border-color: #d1d5db; }
.btn-accent { background: var(--color-secondary); color: #ffffff; }
.btn-hero-primary { background: var(--color-primary); color: #111827; border: 1px solid rgba(0,0,0,0.08); }
.btn-hero-primary:hover { box-shadow: 0 12px 24px rgba(0,0,0,0.2); }
.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0,0,0,0.15); }
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--color-primary-shadow), 0 0 0 4px #11182710; }
.cta { margin-top: 12px; }

.cash-yearly { margin-top: 16px; padding-top: 12px; border-top: 1px dashed #e5e7eb; }
.cash-info { margin-top: 10px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px; padding: 12px; }
.cash-info.is-hidden { display: none; }

.site-footer { border-top: 1px solid #e5e7eb; padding: 28px 0; color: #6b7280; text-align: center; background: #ffffff; }

@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
}

/* Social/TikTok */
.social { padding: 48px 0; background: #ffffff; text-align: center; }
.social h2 { margin: 0 0 16px; font-size: 28px; color: #3b3b3b; }

/* Floating WhatsApp button */
.whatsapp-fab { position: fixed; right: 16px; bottom: 16px; width: 56px; height: 56px; background: #25D366; color: #ffffff; border-radius: 9999px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px rgba(0,0,0,0.25); z-index: 50; border: 0; text-decoration: none; }
.whatsapp-fab:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,0.28); }
.whatsapp-fab:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(255,255,255,0.9), 0 0 0 5px rgba(37,211,102,0.6); }


