:root {
  --primary-green: #3d6b4f;
  --earth-warm: #c45b28;
  --accent-sage: #7c9a70;
  --accent-mauve: #9e6381;
  --dark-forest: #2d3e35;
  /* Legacy aliases for compatibility */
  --primary-blue: var(--primary-green);
  --primary-red: var(--earth-warm);
  --accent-gold: var(--accent-sage);
  --dark-blue: var(--dark-forest);
}

.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--dark-forest) 100%
  );
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20 80 Q50 20 80 80" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/><circle cx="30" cy="70" r="8" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/><circle cx="70" cy="65" r="12" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>')
    repeat;
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.donate-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.amount-btn {
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
  background: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
}

.btn-donate {
  background: var(--earth-warm);
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.btn-donate:hover {
  background: #a34920;
  color: white;
  transform: scale(1.05);
}

.issue-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  border: none;
  border-radius: 1rem;
}

.issue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.issue-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-forest));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-sage);
  border-radius: 2px;
}

.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--dark-forest) 100%
  );
}

.about-image-placeholder {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #d4e4d1, #b8cbb3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid white;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.navbar-campaign {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.nav-link-campaign {
  color: var(--dark-forest) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link-campaign:hover {
  color: var(--earth-warm) !important;
}

/* Custom Bootstrap overrides for earthy theme */
.btn-outline-primary {
  color: var(--primary-green);
  border-color: var(--primary-green);
}

.btn-outline-primary:hover {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: white;
}

.btn-danger {
  background-color: var(--earth-warm);
  border-color: var(--earth-warm);
}

.btn-danger:hover {
  background-color: #a34920;
  border-color: #a34920;
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(158, 99, 129, 0.1),
    transparent
  );
}

.section-divider-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-divider-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-mauve));
}

.section-divider-line:last-child {
  background: linear-gradient(90deg, var(--accent-mauve), transparent);
}

.section-divider-icon {
  color: var(--accent-mauve);
  font-size: 1rem;
  opacity: 0.8;
}
