/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #DA291C;
  --red-dark: #b01e13;
  --red-light:#fff0f0;
  --gray:     #555;
  --light:    #f8f8f8;
  --white:    #ffffff;
  --radius:   10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo .cross {
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}

.logo strong { display: block; font-size: 1rem; color: #111; }
.logo span   { display: block; font-size: .8rem; color: var(--gray); }

nav { display: flex; align-items: center; gap: 28px; }

nav a { font-size: .9rem; color: var(--gray); transition: color .2s; }
nav a:hover { color: var(--red); }

.btn-nav {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: background .2s;
}
.btn-nav:hover { background: var(--red-dark); }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 80px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.hero-content { max-width: 520px; }

.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,.2);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  opacity: .9;
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }

.hero-image { flex-shrink: 0; }

.image-placeholder {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 4px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cross-big { font-size: 7rem; color: rgba(255,255,255,.7); }

/* ── About ── */
.about {
  padding: 72px 0;
  background: var(--white);
  text-align: center;
}

.about h2 { font-size: 1.9rem; margin-bottom: 16px; color: var(--red); }
.about p  { max-width: 680px; margin: 0 auto; color: var(--gray); font-size: 1.05rem; }

/* ── Impact ── */
.impact {
  padding: 72px 0;
  background: var(--light);
  text-align: center;
}

.impact h2 { font-size: 1.9rem; margin-bottom: 40px; color: var(--red); }

.stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 40px;
  min-width: 180px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-number { font-size: 2.2rem; font-weight: 800; color: var(--red); }
.stat-label  { font-size: .9rem; color: var(--gray); text-align: center; }

/* ── Donate ── */
.donate {
  padding: 72px 0;
  background: var(--white);
  text-align: center;
}

.mp-alias     { font-size: 1.1rem; font-weight: 700; color: var(--red); letter-spacing: 0.04em; margin-bottom: 8px; }
.donate h2    { font-size: 1.9rem; margin-bottom: 10px; color: var(--red); }
.donate-sub   { color: var(--gray); margin-bottom: 36px; }

.donate-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,.1);
  padding: 40px;
  border: 1px solid #eee;
}

/* Amount buttons */
.amount-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.amount-btn {
  padding: 10px 24px;
  border: 2px solid #ddd;
  border-radius: 50px;
  background: var(--white);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
}
.amount-btn:hover  { border-color: var(--red); color: var(--red); }
.amount-btn.selected { border-color: var(--red); background: var(--red); color: var(--white); }

/* Custom amount */
.custom-amount {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}
.custom-amount label { color: var(--gray); font-size: .9rem; white-space: nowrap; }

.input-wrapper {
  display: flex;
  align-items: center;
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .15s;
}
.input-wrapper:focus-within { border-color: var(--red); }
.input-wrapper span { padding: 8px 10px; background: #f5f5f5; color: var(--gray); font-weight: 600; }
.input-wrapper input {
  border: none;
  outline: none;
  padding: 8px 12px;
  font-size: 1rem;
  width: 140px;
}

/* Donate type */
.donate-type {
  display: flex;
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.type-btn {
  padding: 10px 32px;
  border: none;
  background: var(--white);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--gray);
  transition: all .15s;
}
.type-btn.selected { background: var(--red); color: var(--white); }

/* Form */
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}
.form-group label { font-size: .85rem; color: var(--gray); font-weight: 600; }
.form-group input {
  padding: 10px 14px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: .95rem;
  outline: none;
  transition: border-color .15s;
  width: 100%;
}
.form-group input:focus { border-color: var(--red); }

.btn-donate {
  width: 100%;
  padding: 16px;
  background: var(--red);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.btn-donate:hover { background: var(--red-dark); transform: translateY(-1px); }

.secure-note {
  margin-top: 14px;
  font-size: .82rem;
  color: #aaa;
}

/* ── Footer ── */
footer {
  background: #111;
  color: #ccc;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 48px 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-brand .cross { font-size: 2rem; color: var(--red); }
.footer-brand strong { display: block; color: var(--white); }
.footer-brand span   { display: block; font-size: .8rem; }

.footer-info p { font-size: .88rem; margin-bottom: 6px; }

.footer-social { min-width: 200px; }

.social-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.social-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: #ccc;
  transition: color .2s;
}
.social-list a:hover { color: var(--white); }

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  flex-shrink: 0;
}
.facebook  { background: #1877f2; color: #fff; }
.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); color: #fff; }
.tiktok    { background: #010101; color: #fff; border: 1px solid #333; }
.youtube   { background: #ff0000; color: #fff; }

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 16px 24px;
  text-align: center;
  font-size: .8rem;
  color: #666;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  nav a:not(.btn-nav) { display: none; }
  .hero { padding: 60px 24px; gap: 40px; }
  .image-placeholder { width: 160px; height: 160px; }
  .cross-big { font-size: 5rem; }
  .form-row { flex-direction: column; }
  .donate-card { padding: 24px 16px; }
  .footer-inner { flex-direction: column; }
}
