/* ============================================
   CHEETAHCONNECTION.COM — STYLE SYSTEM
   Kiran's Cheetah Rescue
   A warm, playful, kid-designed charity site
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Typography */
  --font-display: 'Gaegu', 'Patrick Hand', cursive;
  --font-body: 'Nunito', 'Segoe UI', sans-serif;
  --font-handwritten: 'Patrick Hand', 'Gaegu', cursive;

  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    7rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Colors — Warm savanna palette */
  --color-bg:           #FFF8ED;
  --color-surface:      #FFFAF2;
  --color-surface-warm: #FFF3DE;
  --color-border:       #E8D5B0;
  --color-text:         #3D2800;
  --color-text-muted:   #7A6240;
  --color-text-light:   #A08660;
  --color-primary:      #E87C1E;
  --color-primary-hover:#D06A10;
  --color-primary-dark: #B85A08;
  --color-secondary:    #2D8A4E;
  --color-secondary-hover: #236E3E;
  --color-accent:       #F5A623;
  --color-accent-light: #FFD88A;
  --color-danger:       #D64545;
  --color-cheetah-gold: #F5A623;
  --color-cheetah-dark: #4A3000;
  --color-savanna:      #8DB54F;
  --color-sky:          #6BB3D9;

  /* Card colors for fact cards */
  --color-card-1: #FFF3DE;
  --color-card-2: #E8F5E9;
  --color-card-3: #E3F2FD;
  --color-card-4: #FFF0E5;
  --color-card-5: #F3E5F5;
  --color-card-6: #FFFDE7;

  /* Radius — rounded and friendly */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm: 0 2px 8px rgba(74, 48, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(74, 48, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(74, 48, 0, 0.12);
  --shadow-fun: 4px 4px 0px rgba(74, 48, 0, 0.15);

  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1100px;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* --- Paw Prints Decoration --- */
.paw-prints {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.paw {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.06;
  transform: rotate(var(--rot, 0deg));
}
.paw-1 { top: 10%; left: 5%; --rot: -25deg; font-size: 2rem; }
.paw-2 { top: 30%; right: 8%; --rot: 15deg; }
.paw-3 { top: 55%; left: 3%; --rot: -40deg; font-size: 1.8rem; }
.paw-4 { top: 75%; right: 5%; --rot: 30deg; font-size: 2.2rem; }
.paw-5 { top: 90%; left: 12%; --rot: -10deg; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 237, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 3px dashed var(--color-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--content-wide);
  margin: 0 auto;
  padding: var(--space-3) var(--space-6);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-wrap: wrap;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-cheetah-dark);
}
.logo-tld {
  color: var(--color-primary);
}
.logo-subtitle {
  font-family: var(--font-handwritten);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: block;
  width: 100%;
  padding-left: calc(40px + var(--space-3));
  margin-top: -4px;
  letter-spacing: 0.02em;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.main-nav a {
  font-family: var(--font-handwritten);
  font-size: var(--text-sm);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 400;
  position: relative;
}
.main-nav a:hover {
  color: var(--color-primary);
}
.main-nav .nav-donate {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  box-shadow: var(--shadow-fun);
}
.main-nav .nav-donate:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 5px 5px 0px rgba(74, 48, 0, 0.18);
}

/* Language Switcher */
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  text-decoration: none;
  background: var(--color-surface-warm);
  border: 2px dashed var(--color-border);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  transition: all 0.2s ease;
}
.lang-switch:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  background: #FFF3DE;
  transform: translateY(-1px);
}
.mobile-nav .lang-switch {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--color-cheetah-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translateY(8px) translateX(2px);
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px) translateX(2px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 248, 237, 0.97);
  z-index: 99;
  align-items: center;
  justify-content: center;
}
.mobile-nav-overlay.active {
  display: flex;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-text);
  text-decoration: none;
  font-weight: 700;
}
.mobile-nav .nav-donate {
  background: var(--color-primary);
  color: #fff;
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  box-shadow: var(--shadow-fun);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61, 40, 0, 0.15) 0%,
    rgba(61, 40, 0, 0.4) 40%,
    rgba(61, 40, 0, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  max-width: 700px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-cheetah-dark);
  font-family: var(--font-handwritten);
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  color: #fff;
  margin-bottom: var(--space-6);
  text-shadow: 3px 3px 0px rgba(74, 48, 0, 0.35);
  line-height: 1;
}
.hero-highlight {
  color: var(--color-accent-light);
  display: inline-block;
  position: relative;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  margin-bottom: var(--space-4);
  letter-spacing: 0.01em;
  text-shadow: 2px 2px 0px rgba(74, 48, 0, 0.25);
}
.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero-subtitle strong {
  color: var(--color-accent-light);
  font-weight: 800;
}
.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.hero-doodle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.5;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-big {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-base);
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-fun);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px) rotate(-1deg);
  box-shadow: 5px 5px 0px rgba(74, 48, 0, 0.2);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* --- Section Base --- */
.section {
  position: relative;
  padding: clamp(var(--space-12), 6vw, var(--space-24)) 0;
  z-index: 1;
}
.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}
.section-emoji {
  font-size: var(--text-2xl);
  display: block;
  margin-bottom: var(--space-4);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--color-cheetah-dark);
  margin-bottom: var(--space-3);
}
.crayon-underline {
  width: 120px;
  height: 6px;
  background: var(--color-accent);
  margin: 0 auto;
  border-radius: var(--radius-full);
  transform: rotate(-1deg);
}

/* --- About Section --- */
.about-section {
  background: var(--color-surface);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.speech-bubble {
  background: #fff;
  border: 3px dashed var(--color-accent);
  border-radius: var(--radius-2xl);
  padding: var(--space-6) var(--space-8);
  position: relative;
  box-shadow: var(--shadow-md);
}
.speech-bubble p {
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}
.speech-bubble p:last-of-type {
  margin-bottom: 0;
}
.speech-arrow {
  position: absolute;
  bottom: -20px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px dashed var(--color-accent);
}
.kiran-signature {
  margin-top: var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.signature-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  transform: rotate(-3deg);
  display: inline-block;
}
.signature-doodle {
  font-size: var(--text-lg);
}
.image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
  position: relative;
}
.image-frame-tilted {
  transform: rotate(2deg);
}
.image-frame img {
  width: 100%;
  display: block;
}
.image-caption {
  display: block;
  background: #fff;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-handwritten);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-align: center;
}

/* --- Facts Section --- */
.facts-section {
  background: var(--color-bg);
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.fact-card {
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 3px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fact-card:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: var(--shadow-lg);
}
.fact-card-1 { background: var(--color-card-1); border-color: #F5D89A; }
.fact-card-2 { background: var(--color-card-2); border-color: #A5D6A7; }
.fact-card-3 { background: var(--color-card-3); border-color: #90CAF9; }
.fact-card-4 { background: var(--color-card-4); border-color: #FFCCBC; }
.fact-card-5 { background: var(--color-card-5); border-color: #CE93D8; }
.fact-card-6 { background: var(--color-card-6); border-color: #FFF176; }

.fact-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}
.fact-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-cheetah-dark);
  margin-bottom: var(--space-3);
}
.fact-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Image Break --- */
.image-break {
  position: relative;
  height: clamp(250px, 40vw, 450px);
  overflow: hidden;
  z-index: 1;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 40, 0, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: var(--space-8) var(--space-6);
}
.image-break-text {
  color: #fff;
  font-family: var(--font-handwritten);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* --- Why Section --- */
.why-section {
  background: var(--color-surface);
}
.danger-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}
.stat-card {
  text-align: center;
  padding: var(--space-6);
  background: #fff;
  border-radius: var(--radius-xl);
  border: 3px solid var(--color-danger);
  box-shadow: var(--shadow-md);
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-danger);
  line-height: 1.1;
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}
.threats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.threat-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border: 2px dashed var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.threat-icon {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-3);
}
.threat-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-cheetah-dark);
  margin-bottom: var(--space-3);
}
.threat-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- IZW Berlin Spotlight Section --- */
.izw-section {
  background: linear-gradient(135deg, #E3F2FD 0%, #E8F5E9 50%, #FFF8E1 100%);
}
.izw-spotlight {
  background: #fff;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 3px solid var(--color-sky);
  box-shadow: var(--shadow-lg);
}
.izw-badge {
  background: linear-gradient(90deg, #000 33%, #DD0000 33%, #DD0000 66%, #FFCC00 66%);
  color: #fff;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.izw-content {
  padding: var(--space-8);
}
.izw-text h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-cheetah-dark);
  margin-bottom: var(--space-4);
}
.izw-text > p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}
.izw-text > p a {
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(232, 124, 30, 0.3);
  text-underline-offset: 2px;
}
.izw-text > p a:hover {
  color: var(--color-primary-hover);
}
.izw-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.izw-fact {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--color-surface-warm);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}
.izw-fact-icon {
  font-size: var(--text-lg);
  flex-shrink: 0;
  margin-top: 2px;
}
.izw-fact strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-cheetah-dark);
  margin-bottom: 2px;
}
.izw-fact span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.4;
}
.izw-cta-text {
  font-size: var(--text-sm) !important;
  color: var(--color-text-muted) !important;
  margin-bottom: var(--space-6) !important;
}

/* IZW responsive */
@media (max-width: 600px) {
  .izw-facts {
    grid-template-columns: 1fr;
  }
  .izw-content {
    padding: var(--space-5);
  }
}

/* --- Donate Section --- */
.donate-section {
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface-warm) 100%);
}
.donate-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
  margin-bottom: var(--space-10);
}
.speech-bubble-donate {
  border-color: var(--color-secondary);
}
.donate-list {
  list-style: none;
  padding: 0;
  margin-top: var(--space-4);
}
.donate-list li {
  padding: var(--space-3) 0;
  border-bottom: 1px dashed var(--color-border);
  font-size: var(--text-base);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.donate-list li:last-child { border-bottom: none; }
.donate-amount {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-secondary);
  font-weight: 700;
  min-width: 50px;
}
.donate-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  border: 3px solid var(--color-secondary);
  box-shadow: var(--shadow-lg);
}
.donate-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-secondary);
  margin-bottom: var(--space-3);
}
.donate-card > p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.charity-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.charity-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: var(--space-1) var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  text-decoration: none;
  transition: all 0.2s ease;
  align-items: center;
}
.charity-link:hover {
  border-color: var(--color-secondary);
  background: var(--color-card-2);
  transform: translateX(4px);
}
.charity-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--color-secondary);
  grid-column: 1;
}
.charity-desc {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  grid-column: 1;
}
.charity-arrow {
  grid-row: 1 / 3;
  grid-column: 2;
  font-size: var(--text-xl);
  color: var(--color-secondary);
}

/* Featured charity link (IZW) */
.charity-link-featured {
  border-color: var(--color-sky);
  background: #E3F2FD;
  position: relative;
  grid-template-rows: auto auto auto;
}
.charity-link-featured:hover {
  border-color: #1976D2;
  background: #BBDEFB;
}
.charity-link-featured .charity-name {
  color: #1565C0;
}
.charity-link-featured .charity-arrow {
  color: #1565C0;
}
.charity-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 800;
  color: #1565C0;
  background: rgba(25, 118, 210, 0.1);
  padding: 2px var(--space-3);
  border-radius: var(--radius-full);
  grid-column: 1;
  justify-self: start;
  margin-bottom: 2px;
}
.donate-footer-message {
  text-align: center;
  padding: var(--space-8);
  background: #fff;
  border-radius: var(--radius-2xl);
  border: 3px dashed var(--color-accent);
  box-shadow: var(--shadow-sm);
}
.donate-footer-message p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-cheetah-dark);
  margin: 0 auto var(--space-3);
}
.donate-footer-message .small-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* --- Goal Section --- */
.goal-section {
  background: var(--color-surface-warm);
}
.goal-card {
  background: #fff;
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  border: 3px solid var(--color-accent);
  box-shadow: var(--shadow-md);
  max-width: 600px;
  margin: 0 auto;
}
.goal-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-cheetah-dark);
  margin-bottom: var(--space-4);
}
.goal-card > p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  margin-left: auto;
  margin-right: auto;
}
.share-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.share-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.share-btn {
  background: var(--color-accent);
  color: var(--color-cheetah-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-fun);
}
.share-btn:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}
.copy-feedback {
  font-family: var(--font-handwritten);
  font-size: var(--text-sm);
  color: var(--color-secondary);
  margin-top: var(--space-3);
  min-height: 1.5em;
}

/* --- Footer --- */
.site-footer {
  background: var(--color-cheetah-dark);
  color: rgba(255, 248, 237, 0.85);
  padding: var(--space-12) 0 var(--space-6);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.footer-logo span {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-accent);
}
.footer-left p {
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}
.footer-note {
  font-size: var(--text-xs) !important;
  opacity: 0.7;
}
.footer-note a {
  color: var(--color-accent-light);
  text-decoration: underline;
}
.footer-right {
  display: flex;
  align-items: center;
}
.footer-tagline {
  font-family: var(--font-handwritten);
  font-size: var(--text-lg);
  color: var(--color-accent);
  line-height: 1.5;
  transform: rotate(-1deg);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 248, 237, 0.15);
  padding-top: var(--space-4);
  text-align: center;
}
.pplx-link {
  font-size: var(--text-xs);
  color: rgba(255, 248, 237, 0.5);
  text-decoration: none;
}
.pplx-link:hover {
  color: rgba(255, 248, 237, 0.8);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.section-header,
.about-text,
.about-image,
.fact-card,
.stat-card,
.threat-card,
.donate-message,
.donate-actions,
.donate-footer-message,
.goal-card,
.izw-spotlight {
  opacity: 0;
  transform: translateY(24px);
}
.section-header.visible,
.about-text.visible,
.about-image.visible,
.fact-card.visible,
.stat-card.visible,
.threat-card.visible,
.izw-spotlight.visible,
.donate-message.visible,
.donate-actions.visible,
.donate-footer-message.visible,
.goal-card.visible {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger animations */
.fact-card.visible:nth-child(1) { animation-delay: 0ms; }
.fact-card.visible:nth-child(2) { animation-delay: 80ms; }
.fact-card.visible:nth-child(3) { animation-delay: 160ms; }
.fact-card.visible:nth-child(4) { animation-delay: 240ms; }
.fact-card.visible:nth-child(5) { animation-delay: 320ms; }
.fact-card.visible:nth-child(6) { animation-delay: 400ms; }

.stat-card.visible:nth-child(1) { animation-delay: 0ms; }
.stat-card.visible:nth-child(2) { animation-delay: 100ms; }
.stat-card.visible:nth-child(3) { animation-delay: 200ms; }

.threat-card.visible:nth-child(1) { animation-delay: 0ms; }
.threat-card.visible:nth-child(2) { animation-delay: 100ms; }
.threat-card.visible:nth-child(3) { animation-delay: 200ms; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .about-image { order: -1; }
  .image-frame-tilted { transform: rotate(1deg); }

  .facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .danger-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }

  .threats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .threats-grid .threat-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .donate-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 80vh;
  }
  .hero-badge {
    font-size: var(--text-xs);
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  .btn-big {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .danger-stats {
    grid-template-columns: 1fr;
  }
  .stat-card {
    padding: var(--space-4);
  }

  .threats-grid {
    grid-template-columns: 1fr;
  }
  .threats-grid .threat-card:last-child {
    max-width: none;
  }

  .speech-bubble {
    padding: var(--space-5) var(--space-5);
  }

  .donate-card {
    padding: var(--space-5);
  }

  .container {
    padding: 0 var(--space-4);
  }

  .paw-prints { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .section-header,
  .about-text,
  .about-image,
  .fact-card,
  .stat-card,
  .threat-card,
  .donate-message,
  .donate-actions,
  .donate-footer-message,
  .goal-card,
  .izw-spotlight {
    opacity: 1;
    transform: none;
  }
  .fact-card:hover,
  .btn-primary:hover,
  .btn-secondary:hover {
    transform: none;
  }
}
