/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Global Styles */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Footer push */
main {
  flex: 1; /* pushes footer down */
}
#footer {
  margin-top: auto;
}

/* Hero background */
.hero-bg {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.6), 
      rgba(0, 0, 0, 0.6)
    ),
    url('/img/hero-medical.jpg'); /* replace with your local image */
  background-size: cover;
  background-position: center;
}

/* Donation page background */
.donation-bg {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0.6), 
      rgba(0, 0, 0, 0.6)
    ),
    url('/img/hero-red.jpg'); /* replace with your local image */
  background-size: cover;
  background-position: center;
}

/* Pulse animation */
.pulse-animation {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* Forms */
input[type="number"],
input[type="tel"],
select {
  transition: all 0.3s ease;
}

/* Buttons hover fixes */
button {
  transition: all 0.3s ease;
}

.details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

