/* ============================================
   Red Noses Donation Landing Page
   Path: fileadmin/css/donation-landing.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body.donation-landing {
  font-family: 'Inter', sans-serif;
  background: #0A0A1A;
  color: #fff;
  overflow-x: hidden;
}

/* === HERO === */
.dl-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, #2a0a0e 0%, #0A0A1A 60%);
}

.dl-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(227,6,19,0.15) 0%, transparent 70%);
  animation: dl-pulse 4s ease-in-out infinite;
}

@keyframes dl-pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
  50% { transform: translateX(-50%) scale(1.15); opacity: 1; }
}

.dl-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: dl-float 20s infinite ease-in-out;
}
.dl-circle:nth-child(1) { width: 300px; height: 300px; background: #E30613; top: 10%; left: -5%; animation-delay: 0s; }
.dl-circle:nth-child(2) { width: 200px; height: 200px; background: #ff4d5a; top: 60%; right: -3%; animation-delay: -5s; }
.dl-circle:nth-child(3) { width: 150px; height: 150px; background: #E30613; bottom: 10%; left: 20%; animation-delay: -10s; }

@keyframes dl-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-30px) rotate(5deg); }
  66% { transform: translateY(20px) rotate(-3deg); }
}

.dl-hero-content { position: relative; z-index: 2; max-width: 750px; padding: 0 24px; }

.dl-hero-badge {
  display: inline-block;
  background: rgba(227,6,19,0.15);
  border: 1px solid rgba(227,6,19,0.3);
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: dl-fadeUp 0.8s ease-out;
}

.dl-hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: dl-fadeUp 0.8s ease-out 0.15s both;
}
.dl-hero h1 .red { color: #E30613; }

.dl-hero p {
  font-size: 18px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: dl-fadeUp 0.8s ease-out 0.3s both;
}

@keyframes dl-fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.dl-hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: dl-fadeUp 0.8s ease-out 0.45s both;
}

.dl-btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 60px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.dl-btn-primary {
  background: linear-gradient(135deg, #E30613 0%, #ff4d5a 100%);
  color: #fff;
  box-shadow: 0 8px 32px rgba(227,6,19,0.35);
}
.dl-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(227,6,19,0.5);
}
.dl-btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}
.dl-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.05);
  transform: translateY(-3px);
}

.dl-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  animation: dl-bounce 2s ease-in-out infinite;
  color: #555;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.dl-scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #555, transparent);
  margin: 8px auto 0;
}
@keyframes dl-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === IMPACT === */
.dl-impact {
  padding: 100px 24px;
  background: #0A0A1A;
  position: relative;
}
.dl-impact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(227,6,19,0.3), transparent);
}

.dl-impact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dl-impact-card {
  text-align: center;
  padding: 40px 16px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.dl-impact-card:hover {
  border-color: rgba(227,6,19,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(227,6,19,0.1);
}

.dl-impact-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #E30613, #ff6b6b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dl-impact-label { color: #888; font-size: 14px; margin-top: 8px; line-height: 1.5; }

/* === PROGRESS === */
.dl-progress {
  padding: 80px 24px;
  background: #0A0A1A;
  position: relative;
}
.dl-progress::before, .dl-progress::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(227,6,19,0.3), transparent);
}
.dl-progress::before { top: 0; }
.dl-progress::after { bottom: 0; }

.dl-progress-box { max-width: 700px; margin: 0 auto; text-align: center; }
.dl-progress-title { font-size: 28px; font-weight: 900; margin-bottom: 8px; }
.dl-progress-sub { color: #888; font-size: 15px; margin-bottom: 32px; }

.dl-progress-bar-bg {
  width: 100%;
  height: 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 16px;
}
.dl-progress-bar-fill {
  height: 100%;
  width: 68%;
  background: linear-gradient(90deg, #E30613, #ff4d5a, #ff8a8a);
  background-size: 200% 100%;
  border-radius: 20px;
  animation: dl-shimmer 2s infinite linear;
}
@keyframes dl-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.dl-progress-stats { display: flex; justify-content: space-between; color: #888; font-size: 14px; }
.dl-progress-stats strong { color: #fff; font-size: 18px; }

/* === TIERS === */
.dl-tiers {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0A0A1A, #0f0f24);
}

.dl-section-label {
  text-align: center;
  color: #E30613;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.dl-section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  margin-bottom: 16px;
}
.dl-section-sub {
  text-align: center;
  color: #888;
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 56px auto;
  line-height: 1.6;
}

.dl-tiers-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dl-tier-card {
  padding: 40px 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.dl-tier-card:hover { transform: translateY(-6px); border-color: rgba(227,6,19,0.4); }
.dl-tier-card.featured {
  border-color: rgba(227,6,19,0.4);
  background: linear-gradient(145deg, rgba(227,6,19,0.08), rgba(255,255,255,0.02));
}
.dl-tier-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 16px; right: -28px;
  background: #E30613;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 36px;
  transform: rotate(45deg);
}

.dl-tier-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.dl-tier-icon.t1 { background: rgba(255,200,50,0.1); }
.dl-tier-icon.t2 { background: rgba(227,6,19,0.1); }
.dl-tier-icon.t3 { background: rgba(100,180,255,0.1); }

.dl-tier-name { font-size: 13px; color: #888; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.dl-tier-amount { font-size: 40px; font-weight: 900; margin-bottom: 6px; }
.dl-tier-amount span { font-size: 18px; font-weight: 600; color: #888; }
.dl-tier-desc { color: #777; font-size: 14px; line-height: 1.6; margin-bottom: 24px; }

.dl-tier-features { list-style: none; padding: 0; margin-bottom: 28px; }
.dl-tier-features li {
  color: #aaa; font-size: 14px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 10px;
}
.dl-tier-features li::before { content: '\2713'; color: #E30613; font-weight: 700; }

.dl-tier-btn {
  display: block; width: 100%; padding: 14px;
  text-align: center; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.3s ease;
}
.dl-tier-btn.outline { color: #fff; border: 1px solid rgba(255,255,255,0.15); background: transparent; }
.dl-tier-btn.outline:hover { border-color: #E30613; background: rgba(227,6,19,0.05); }
.dl-tier-btn.filled { color: #fff; background: linear-gradient(135deg, #E30613, #ff4d5a); border: none; }
.dl-tier-btn.filled:hover { box-shadow: 0 8px 24px rgba(227,6,19,0.4); }

/* === TESTIMONIAL === */
.dl-testimonial {
  padding: 100px 24px;
  background: linear-gradient(180deg, #0A0A1A, #0d0d22);
}

.dl-testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.dl-testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  color: #E30613;
  opacity: 0.3;
  line-height: 1;
}
.dl-testimonial-text { font-size: 20px; color: #ccc; line-height: 1.8; font-style: italic; margin-bottom: 28px; }
.dl-testimonial-author { font-weight: 700; font-size: 15px; }
.dl-testimonial-role { color: #888; font-size: 13px; margin-top: 4px; }

/* === FINAL CTA === */
.dl-final-cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 100%, #2a0a0e 0%, #0A0A1A 60%);
}
.dl-final-cta h2 { font-size: clamp(32px, 5vw, 52px); font-weight: 900; margin-bottom: 20px; position: relative; z-index: 2; }
.dl-final-cta p { color: #aaa; font-size: 18px; max-width: 550px; margin: 0 auto 40px auto; line-height: 1.6; position: relative; z-index: 2; }
.dl-final-cta .dl-btn { position: relative; z-index: 2; }

/* === FOOTER === */
.dl-footer {
  padding: 40px 24px;
  text-align: center;
  background: #060612;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.dl-footer p { color: #555; font-size: 13px; }
.dl-footer a { color: #E30613; text-decoration: none; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .dl-impact-grid { grid-template-columns: repeat(2, 1fr); }
  .dl-tiers-grid { grid-template-columns: 1fr; max-width: 400px; }
  .dl-tier-card.featured::before { display: none; }
}