/* Durga Puja tab — QR/payment form styling (shown inside the "Contribution"
   sub-tab; the About/Contribution toggle itself is styled in css/base.css),
   plus the banner and gallery that only this event has. */

.qr-box {
  background: #fff;
  border: 1px solid #eadfc9;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  max-width: 320px;
}
.qr-box h4 { margin-top: 0; color: var(--maroon); }
.qr-img { width: 100%; max-width: 240px; border-radius: 14px; border: 1px solid #eee; }
.qr-note { font-size: 12px; color: #776a55; margin-top: 10px; }

.payment-form {
  background: #fff;
  border: 1px solid #eadfc9;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  max-width: 520px;
}
.payment-form h4 { margin-top: 0; color: var(--maroon); }

/* Banner styling (.event-banner, shared with other events' banners and the
   Home carousel) lives in css/base.css. */

/* Gallery */
.gallery-heading { margin-top: 40px; color: var(--maroon); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
  margin-top: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #eadfc9;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); }

.gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.gallery-nav-btn {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  font-size: 16px;
}
.gallery-page-indicator { font-size: 14px; font-weight: 600; color: var(--maroon); min-width: 48px; text-align: center; }
.gallery-empty { color: #776a55; font-style: italic; }
