/* ==========================================================================
   ORCHID SOCIETY OF ASSAM - DONATIONS PAGE STYLESHEET
   Matching Notifications Hero Banner (notif-hero-bg-2.jpg), Shiny Effects & Watermarks
   ========================================================================== */

:root {
  --color-primary-dark: #124427;
  --color-primary-deep: #0b331c;
  --color-primary-medium: #1b7a43;
  --color-primary-light: #22c55e;
  
  --color-mint-bg: #f4f8f5;
  --color-mint-card: #ffffff;
  --color-card-border: #e2ece4;
  
  --color-text-dark: #122218;
  --color-text-muted: #586c60;
  --color-gold: #cca730;
  
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  
  --shadow-sm: 0 4px 16px rgba(18, 68, 39, 0.04);
  --shadow-card: 0 8px 24px rgba(18, 68, 39, 0.06);
  --shadow-hover: 0 12px 28px rgba(18, 68, 39, 0.12);
}

/* --------------------------------------------------------------------------
   1. HERO HEADER BANNER (Exact Notifications Background Image & Shiny Overlays)
   -------------------------------------------------------------------------- */
.donations-hero-section {
  position: relative;
  background: url('/designs/notif-hero-bg-2.jpg') no-repeat center top / cover;
  background-color: #082916;
  color: #ffffff;
  padding: 115px 0 65px 0;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}

/* Shiny Shimmer Overlay */
.donations-hero-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.15), transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(204, 167, 48, 0.12), transparent 45%);
  pointer-events: none;
  z-index: 1;
  animation: floatShimmer 8s ease-in-out infinite alternate;
}

@keyframes floatShimmer {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-20px, 15px) scale(1.05); }
}

.donations-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.donations-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 14px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.donations-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.donations-hero-title span {
  color: #22c55e;
}

.donations-hero-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* --------------------------------------------------------------------------
   2. DONATION CARDS GRID & BOXES (With Watermarks & Glossy Accents)
   -------------------------------------------------------------------------- */
.donations-main-section {
  padding: 40px 0 60px 0;
  background-color: var(--color-mint-bg);
  position: relative;
  overflow: hidden;
}

/* Background Botanical Line Art Watermark */
.donations-bg-watermark {
  position: absolute;
  right: -60px;
  top: 60px;
  width: 340px;
  height: 340px;
  background: url('/designs/about-orchid-corner-lineart.png') no-repeat center / contain;
  opacity: 0.04;
  pointer-events: none;
}

.donations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.donation-card {
  background: var(--color-mint-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.donation-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.donation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 80px;
  height: 4px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, #1b7a43, #22c55e, #cca730);
}

.donation-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.donation-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eaf4ee;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--color-primary-dark);
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(27, 122, 67, 0.1);
}

.donation-card h2 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 2px;
}

.donation-card p.card-subtext {
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

/* Info Box & Value Rows */
.donation-info-box {
  background: #fcfdfe;
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: 12px;
}

.donation-label {
  font-size: 0.75rem;
  color: var(--color-primary-medium);
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.donation-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.donation-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  word-break: break-word;
}

.donation-value.small {
  font-size: 0.94rem;
  font-weight: 600;
}

/* Action Buttons */
.btn-copy-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.80rem;
  font-weight: 600;
  cursor: pointer;
  background: #eaf4ee;
  color: var(--color-primary-dark);
  transition: all 0.2s ease;
}

.btn-copy-action:hover {
  background: #1b7a43;
  color: #ffffff;
}

.btn-pay-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  background: linear-gradient(180deg, #1b7a43 0%, #124427 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(18, 68, 39, 0.2);
  transition: all 0.2s ease;
  width: fit-content;
}

.btn-pay-action:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(18, 68, 39, 0.3);
}

.qr-code-img {
  margin: 24px auto 0;
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   3. THANK YOU / CONFIRMATION CARD
   -------------------------------------------------------------------------- */
.donation-thankyou-box {
  background: var(--color-mint-card);
  border: 1px solid var(--color-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.donation-thankyou-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #22c55e, #cca730, transparent);
}

.donation-thankyou-box h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}

.donation-thankyou-box p {
  color: var(--color-text-muted);
  max-width: 720px;
  margin: 0 auto 10px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.highlight-green {
  color: var(--color-primary-medium);
  font-weight: 700;
}

/* Responsive Layout */
@media (max-width: 820px) {
  .donations-grid {
    grid-template-columns: 1fr;
  }
  
  .donations-hero-section {
    padding: 40px 0 50px 0;
  }
  
  .donation-card {
    padding: 20px;
  }
}
