/* Lyndon Food Shelf - Modern Redesign (2025)
   Mobile-first, flexbox, clean, accessible, with subtle animations
   Inspired by: Feeding America, Vermont Foodbank, and local food shelf sites
*/

:root {
  --primary: #2d6a4f;
  --accent: #40916c;
  --bg: #f8f9fa;
  --surface: #fff;
  --text: #222;
  --muted: #6c757d;
  --radius: 1.2rem;
  --shadow: 0 2px 16px rgba(44,62,80,0.08);
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
  --nav-height: 60px;
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
}


html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  height: 100%;
}
*, *:before, *:after { box-sizing: inherit; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
  background: url('../images/band2.jpg') center/cover no-repeat fixed;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 44, 34, 0.68);
  z-index: 0;
  pointer-events: none;
}

header, main {
  position: relative;
  z-index: 1;
  background: transparent;
  box-shadow: 0 2px 16px rgba(44,62,80,0.10);
  border-bottom: 1.5px solid rgba(255,255,255,0.13);
}

main > * {
  color: #fff;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

section h2, section h3 {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

@media (max-width: 700px) {
  main > * {
    padding: 0 0.2rem;
  }
}

/* Old header styles removed - using .site-header instead */

.btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  border: 1px solid #FFD700;
  border-radius: 15px;
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 15px rgba(255, 215, 0, 0.3), 
    0 2px 8px rgba(44,62,80,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover, .btn:focus {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 
    0 8px 25px rgba(255, 215, 0, 0.5), 
    0 4px 15px rgba(44,62,80,0.2),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.section {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2.2rem;
  padding: 1.5rem 1.2rem;
  animation: fadeInDown 0.7s;
}

.section h2 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-weight: 600;
  color: var(--primary);
}

.section ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0 0;
}

.section li {
  margin-bottom: 0.4rem;
  font-size: 1.01rem;
}

.info-block {
  background: var(--bg);
  border-left: 4px solid var(--accent);
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  color: var(--text);
  font-size: 1.01rem;
  box-shadow: 0 1px 4px rgba(44,62,80,0.04);
}

::-webkit-scrollbar {
  width: 10px;
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 8px;
}

/* Accessibility Focus States */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 3px solid #FFD700;
  outline-offset: 2px;
}

.btn:focus {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.site-nav a:focus {
  outline: 3px solid #FFD700;
  outline-offset: 2px;
}

.nav-toggle:focus {
  outline: 3px solid #FFD700;
  outline-offset: 2px;
}

.facebook-icon:focus {
  outline: 3px solid #FFD700;
  outline-offset: 2px;
}

/* Active Page Highlighting */
.site-nav a.active {
  background: var(--accent);
  color: #FFD700;
  font-weight: 700;
}

/* Mobile-Specific Enhancements */
/* Floating Action Button */
.floating-action {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  border: 2px solid #FFD700;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(64,145,108,0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.5s ease-out;
}

.floating-action:hover, .floating-action:focus {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 25px rgba(64,145,108,0.6);
}

@media (max-width: 768px) {
  .floating-action {
    display: flex;
  }
}

/* Swipe Gestures for Donation Cards */
@media (max-width: 900px) {
  .card-group {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 1rem;
    padding: 1rem 1rem 1rem 1rem;
    margin: 0 -1rem;
  }
  
  .card-group::-webkit-scrollbar {
    display: none;
  }
  
  .card-group .card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    margin: 0 0.5rem;
    max-width: none;
    min-width: 280px;
  }
  
  .card-group .card-cta {
    flex: 0 0 90%;
    max-width: none;
  }
}

/* Bottom Sheet Modal Styles */
.bottom-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-radius: 20px 20px 0 0;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  max-height: 80vh;
  overflow-y: auto;
  padding: 1.5rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.bottom-sheet.active {
  transform: translateY(0);
}

.bottom-sheet-handle {
  width: 40px;
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin: 0 auto 1rem auto;
}

.bottom-sheet-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1999;
}

.bottom-sheet-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Enhanced Touch Feedback */
@media (max-width: 768px) {
  .btn:active {
    transform: translateY(-2px) scale(0.98);
  }
  
  .card:active {
    transform: translateY(-2px) scale(0.99);
  }
  
  .site-nav a:active {
    transform: scale(0.95);
  }
}

/* Elastic Scroll Enhancement */
@media (max-width: 768px) {
  body {
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  
  main {
    scroll-behavior: smooth;
    overscroll-behavior-y: contain;
  }
}

/* Swipe Indicator */
@media (max-width: 900px) {
  .swipe-indicator {
    text-align: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin: 1rem 0 0.5rem 0;
    display: block;
  }
  
  .swipe-indicator::after {
    content: "👆 Swipe to see more";
    animation: pulse 2s infinite;
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Skeleton Screen Loading States */
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.1) 25%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.1) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
}

.skeleton-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  margin: 0.8rem 0.5rem;
  min-height: 200px;
}

.skeleton-text {
  height: 1.2rem;
  margin: 0.8rem 0;
  border-radius: 4px;
}

.skeleton-title {
  height: 2rem;
  width: 70%;
  margin-bottom: 1rem;
  border-radius: 6px;
}

@keyframes skeleton-loading {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Smooth Page Transitions */
.page-transition {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-transition.loaded {
  opacity: 1;
  transform: translateY(0);
}

/* Image Lazy Loading with Fade-in */
img {
  transition: opacity 0.3s ease;
}

img.lazy {
  opacity: 0;
}

img.lazy.loaded {
  opacity: 1;
}

.image-placeholder {
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  border-radius: 4px;
}

/* Form Validation Animations */
.form-field {
  position: relative;
  transition: all 0.3s ease;
}

.form-field.error {
  animation: shake 0.5s ease-in-out;
}

.form-field.error input, 
.form-field.error textarea {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.form-field.success input,
.form-field.success textarea {
  border-color: #27ae60;
  box-shadow: 0 0 0 2px rgba(39, 174, 96, 0.2);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* Success Feedback Animation */
.success-checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #27ae60;
  border-radius: 50%;
  position: relative;
  animation: checkmark-pop 0.3s ease;
}

.success-checkmark::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 6px;
  width: 6px;
  height: 10px;
  border: solid #27ae60;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  animation: checkmark-draw 0.3s ease 0.1s both;
}

@keyframes checkmark-pop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

@keyframes checkmark-draw {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* Micro-Interactions */
/* Facebook Icon Pulse Animation */
.facebook-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  padding: 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 1rem 0;
  position: relative;
}

.facebook-icon:hover, .facebook-icon:focus {
  background: rgba(24, 119, 242, 0.1);
  transform: translateY(-2px) scale(1.05);
  animation: pulse-facebook 1.5s infinite;
}

.facebook-icon img {
  width: 35px;
  height: 35px;
  transition: transform 0.3s ease;
}

.facebook-icon:hover img {
  transform: rotate(10deg) scale(1.1);
}

@keyframes pulse-facebook {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.4);
  }
  50% { 
    box-shadow: 0 0 0 10px rgba(24, 119, 242, 0);
  }
}

/* Phone Number Glow Effect */
a[href^="tel"] {
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
  padding: 0.2rem 0.4rem;
}

a[href^="tel"]:hover,
a[href^="tel"]:focus,
a[href^="tel"]:active {
  animation: phone-glow 0.6s ease;
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.05);
}

@keyframes phone-glow {
  0% { 
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
  }
  70% { 
    box-shadow: 0 0 0 8px rgba(255, 215, 0, 0);
  }
  100% { 
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}

/* Social Button Enhanced Animation */
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #1877F2, #0c5aa6);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '👥';
  margin-right: 0.3rem;
  animation: bounce-icon 2s infinite;
}

.social-btn:hover {
  background: linear-gradient(135deg, #0c5aa6, #0e3e73);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
  animation: social-pulse 1s infinite;
}

@keyframes bounce-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes social-pulse {
  0%, 100% { 
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
  }
  50% { 
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.6), 0 0 0 5px rgba(24, 119, 242, 0.2);
  }
}

/* Loading State for Cards */
.card.loading {
  pointer-events: none;
  position: relative;
}

.card.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  z-index: 1;
}

/* Notification Toast */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #27ae60;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 3000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.toast.show {
  transform: translateX(0);
}

.toast.error {
  background: #e74c3c;
}

.toast.success {
  background: #27ae60;
}

footer {
  background: var(--primary);
  color: #fff;
  padding: 2.2rem 2rem 1.2rem 2rem;
  text-align: center;
  position: relative;
  z-index: 10;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-sections {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  margin-bottom: 2rem;
  text-align: center;
}

footer section {
  margin-bottom: 0;
  flex: 0 1 auto;
  min-width: 200px;
}

footer section:first-child h3 {
  border-bottom: 3px solid #1a4a32;
  padding-bottom: 0.8rem;
  margin-bottom: 1.2rem;
}
footer h3 {
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0 auto 1rem auto;
  text-align: center;
}
footer li {
  margin: 1.2rem 0;
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
}
footer a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.18s;
}
footer a[href^="tel"] {
  color: #FFD700;
  font-weight: 600;
}

footer a:hover, footer a:focus {
  color: #FFD700;
  /* opacity: 0.8; */
}
footer p {
  color: #fff;
  margin: 0.5rem 0;
  font-size: 1rem;
}
footer strong {
  color: #fff;
}

@media (min-width: 900px) {
  footer h3 {
    font-size: 1.6rem;
  }
  
  footer li {
    font-size: 1.3rem;
  }
  
  footer p {
    font-size: 1.2rem;
  }
}
.facebook-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  padding: 0.8rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 1rem 0;
}
.facebook-icon:hover {
  background: rgba(24, 119, 242, 0.1);
  transform: translateY(-2px) scale(1.05);
}
.facebook-icon img {
  width: 35px;
  height: 35px;
}
@media (max-width: 700px) {
  .site-nav ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .site-nav ul::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 1.2rem;
    right: 1.2rem;
    height: 2px;
    background: #FFD700;
    border-radius: 2px;
    z-index: 1;
  }
  .site-nav ul li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: none;
    position: relative;
  }
}
/* Responsive header and nav */
.site-header {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: 72px;
}
/* Use CSS grid for robust header layout */
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.8rem 2.2rem 0.8rem 2.2rem;
  min-height: 72px;
  width: 100%;
}
.header-mountains {
  grid-column: 1;
  justify-self: start;
}
.header-center {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav-toggle, .site-nav {
  grid-column: 3;
}
/* Header brand with left mountains, centered title */
/* Remove .header-brand, not needed with new grid layout */
/* Duplicate .header-mountains and .header-center removed */
.header-title {
  font-family: 'Montserrat', 'Segoe UI', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0 0 0.2rem 0;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.13);
  z-index: 2;
  text-align: center;
}

@media (max-width: 700px) {
  .header-title {
    font-size: 1.2rem;
  }
  .header-mountains svg {
    width: 70px;
    height: 18px;
  }
}
.site-nav ul {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
}
.site-nav a.active, .site-nav a:hover, .site-nav a:focus {
  background: var(--accent);
  color: #FFD700;
}
/* Hamburger menu hidden by default (desktop), shown on mobile */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.7rem;
  height: 2.7rem;
  background: none;
  border: none;
  cursor: pointer;
  gap: 0.3rem;
  margin-left: 1.2rem;
  padding-right: 0.2rem;
}
@media (max-width: 700px) {
  .nav-toggle {
    display: flex !important;
    width: 3.2rem;
    height: 3.2rem;
    min-width: 48px;
    min-height: 48px;
    padding: 0.3rem 0.3rem 0.3rem 0.3rem;
    justify-content: center;
    align-items: center;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--primary);
    box-shadow: var(--shadow);
    border-radius: 0 0 1.2rem 1.2rem;
    padding: 0.7rem 0 0.7rem 0;
    display: none !important;
    flex-direction: column;
    align-items: flex-start;
    z-index: 200;
    animation: fadeInDown 0.3s;
  }
  .site-nav.open {
    display: flex !important;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding: 0;
  }
  .site-nav li {
    width: 100%;
  }
  .site-nav a {
    width: 100%;
    display: block;
    text-align: left;
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
  }
}
.nav-toggle-bar {
  width: 1.7rem;
  height: 0.22rem;
  background: #fff;
  border-radius: 2px;
  display: block;
  transition: all 0.2s;
}
@media (max-width: 800px) {
  .header-inner {
    padding: 0.6rem 1rem 0.6rem 1rem;
    min-height: 60px;
  }

  .site-nav ul {
    gap: 0.7rem;
  }
}
@media (max-width: 700px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 0.5rem 0.5rem;
    min-height: 54px;
  }

  .header-title {
    font-size: 1.2rem;
  }
  .header-mountains svg {
    width: 70px;
    height: 18px;
  }
}
main {
  position: relative;
  background: url('../images/band2.jpg') center/cover no-repeat;
  min-height: 60vh;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

main::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 21, 22, 0.55);
  z-index: 0;
}

main > * {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 700px;
  width: 90vw;
  margin: 1.2rem auto;
  text-align: center;
  box-sizing: border-box;
}

.content-section {
  
  border-radius: 20px;
  padding: 2.5rem 2rem;
  margin: 2rem auto;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  color: var(--text);
  border-left: 4px solid var(--accent);
  position: relative;
}

.mission-section {
  border-left: none;
  background: transparent;
}

.content-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  border-left-color: var(--primary);
}

.mission-section:hover {
  border-left: none;
}

.section-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.content-section h2 {
  font-size: 2.2rem;
  margin: 0 0 1.5rem 0;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.6);
  position: relative;
  padding-bottom: 0.5rem;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #FFD700;
  border-radius: 2px;
}

.content-section p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #fff;
  opacity: 1;
}

.highlight-section {
  background: rgba(64, 145, 108, 0.12);
  border-left: 6px solid #FFD700;
  text-align: center;
}

.highlight-section:hover {
  border-left-color: #FFA500;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  
  background: linear-gradient(135deg, #1877F2, #0c5aa6);
  color: #fff;
  padding: .4rem .8rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '👥';
  margin-right: 0.3rem;
}

.social-btn:hover {
  background: linear-gradient(135deg, #0c5aa6, #0e3e73);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .content-section h2 {
    font-size: 1.8rem;
  }
  
  .content-section p {
    font-size: 1.25rem;
  }
  
  .site-nav a {
    font-size: 1.1rem;
  }
  
  footer h3 {
    font-size: 1.5rem;
  }
  
  footer li {
    font-size: 1.1rem;
  }
  
  footer p {
    font-size: 1rem;
  }
  
  .footer-sections {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 700px) {
  main {
    padding: 1.2rem 0.2rem;
    min-height: 50vh;
  }
  main > * {
    max-width: 98vw;
    padding: 0 0.2rem;
  }
}
#donation-list h2 {
  font-size: 2rem;
  text-align: center;
  margin: 0 0 3rem 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-shadow: 0 3px 12px rgba(0,0,0,0.25);
  position: relative;
}

#donation-list h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: #FFD700;
  border-radius: 2px;
}

/* Card group and card styles for donateItems page */
.card-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.card, .section, .info-block {
  background: transparent;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(44,62,80,0.18), 0 1.5px 8px rgba(64,145,108,0.10);
  padding: 2.1rem 1.5rem 1.5rem 1.5rem;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 300px;
  margin: 0.8rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(30px);
  animation: cardFadeIn 0.7s forwards;
  border-left: 4px solid var(--accent);
  position: relative;
  transition: box-shadow 0.3s, border-color 0.3s;
  text-align: left;
  font-size: 1.25rem;
}

.card:hover, .card:focus-within,
.section:hover, .section:focus-within,
.info-block:hover, .info-block:focus-within {
  box-shadow: 0 8px 32px rgba(44,62,80,0.28), 0 4px 16px rgba(64,145,108,0.18);
  border-left-color: #FFD700;
  z-index: 2;
}

.card:nth-child(1) { animation-delay: 0.05s; }
.card:nth-child(2) { animation-delay: 0.15s; }
.card:nth-child(3) { animation-delay: 0.25s; }
.card:nth-child(4) { animation-delay: 0.35s; }
.card:nth-child(5) { animation-delay: 0.45s; }

@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.card h3, .card h2,
.section h2, .section h3,
.info-block h2, .info-block h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  position: relative;
  text-align: left;
}
.card h3::after, .card h2::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: #FFD700;
  border-radius: 2px;
  margin: 0.5rem 0 0 0;
}
.card p {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  text-align: left;
}

.card ul,
.section ul,
.info-block ul {
  padding-left: 1.2rem;
  margin: 0.5rem 0 0 0;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.9;
  text-align: left;
}

.card li,
.section li,
.info-block li {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  padding-left: 0.2em;
  position: relative;
}
.card li::marker, .card ul li::before {
  color: #FFD700;
}

.card-cta {
  background: rgba(64,145,108,0.18);
  color: #fff;
  box-shadow: 0 4px 24px rgba(64,145,108,0.10);
  align-items: flex-start;
  border-left: 6px solid #FFD700;
}
.card-cta h3, .card-cta h2 {
  color: #FFD700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
  font-size: 1.7rem;
}
.card-cta a[href^="tel"] {
  color: #FFD700;
  font-weight: 600;
}

.card-cta a.btn {
  background: #FFD700;
  color: var(--primary);
  margin-top: 1rem;
  font-weight: 700;
  border: 2px solid #FFD700;
  transition: background var(--transition), color var(--transition), border var(--transition);
}
.card-cta a.btn:hover, .card-cta a.btn:focus {
  background: var(--primary);
  color: #FFD700;
  border: 2px solid var(--primary);
}

@media (min-width: 1400px) {
  .card-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 3.5rem;
    max-width: 1350px;
    margin: 0 auto 2.5rem auto;
  }
  
  .card:not(.card-cta) {
    grid-row: 1;
    max-width: none;
    flex: none;
    margin: 0 2.5rem;
  }
  
  .card-cta {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 600px;
    justify-self: center;
    margin: 1rem 0 0 0;
  }
}

@media (max-width: 900px) {
  .card-group {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .card {
    max-width: 98vw;
    min-width: 0;
    width: 100%;
  }
}

