/* Gallery Page Styles */
.gallery-grid {
  columns: 3;
  column-gap: var(--space-4);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--space-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__caption {
  color: white;
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
}

@media (max-width: 768px) { .gallery-grid { columns: 2; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

/* Volunteer Page Styles */
.volunteer-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
}
.volunteer-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--transition-base);
}
.volunteer-card:hover {
  border-color: var(--color-primary-100);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.volunteer-card__icon {
  width: 64px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-50);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-4);
}
.volunteer-card__icon svg { width: 28px; height: 28px; }

.volunteer-form-section {
  max-width: 700px;
  margin: 0 auto;
}
.volunteer-form {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

/* Reports Page Styles */
.reports-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}
.reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-4);
}
.report-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  transition: transform var(--transition-spring), box-shadow var(--transition-spring);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.report-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--color-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.report-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.report-card:hover::before {
  opacity: 1;
}
.report-card__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg-soft);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}
.report-card__icon svg { width: 28px; height: 28px; }
.report-card__info { flex: 1; display: flex; flex-direction: column; justify-content: center; }
.report-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--color-primary-dark);
  margin-bottom: var(--space-1);
}
.report-card__meta {
  font-size: var(--fs-caption);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: var(--ls-tight);
}
.report-card__download {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.report-card__download:hover { 
  color: var(--color-secondary-dark);
  transform: translateX(4px);
}
.report-card__download svg { width: 18px; height: 18px; }

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-10);
}
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.contact-info-card {
  padding: var(--space-5);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-100);
}
.contact-info-card__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-primary-50);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-3);
}
.contact-info-card__icon svg { width: 22px; height: 22px; }
.contact-info-card h4 { font-size: var(--fs-body-sm); margin-bottom: var(--space-2); }
.contact-info-card p { font-size: var(--fs-body-sm); color: var(--color-text-light); margin: 0; }
.contact-info-card a {
  color: var(--color-primary);
  font-weight: var(--fw-medium);
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

.contact-form-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-cards { grid-template-columns: 1fr; }
}
/* Thank You Page Styles */
.thank-you-section { max-width: 600px; margin: 0 auto; text-align: center; background: var(--color-bg); padding: var(--space-8); border-radius: var(--radius-2xl); box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); }
.thank-you-icon { width: 80px; height: 80px; margin: 0 auto var(--space-6); background: var(--color-primary-50); color: var(--color-primary); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; }
.thank-you-icon svg { width: 40px; height: 40px; }
.thank-you-title { font-family: var(--font-heading); font-size: var(--fs-h2); color: var(--color-primary-dark); margin-bottom: var(--space-4); }
.thank-you-message { font-size: var(--fs-body); color: var(--color-text); margin-bottom: var(--space-8); line-height: 1.6; }
.receipt-details { background: var(--color-bg-soft); padding: var(--space-6); border-radius: var(--radius-lg); margin-bottom: var(--space-8); text-align: left; }
.receipt-row { display: flex; justify-content: space-between; padding: var(--space-3) 0; border-bottom: 1px dashed var(--color-border); }
.receipt-row:last-child { border-bottom: none; }
.receipt-label { color: var(--color-text-muted); font-weight: var(--fw-medium); }
.receipt-value { color: var(--color-text); font-weight: var(--fw-semibold); }
