/* Base and background setup */
body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-image: url('../assets/donate.jpeg'); /* Swap with your preferred image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #342E1D;
  display: flex;
  justify-content: center;
  align-items: start;
  min-height: 100vh;
}

/* Main donation container */
.donate-wrapper {
  background-color: rgba(255, 255, 240, 0.70);
  backdrop-filter: blur(1.5px);
  border-radius: 20px;
  padding: 60px 40px;
  max-width: 800px;
  margin: 60px auto;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
}

/* Headline and intro */
.donate-wrapper h1 {
  font-size: 2.5rem;
  color: #A40865; /* Beet purple */
  margin-bottom: 20px;
}

.donate-wrapper p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #3A1900;
}

/* Donation buttons */
.donation-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.donate-button {
  padding: 14px 28px;
  background: linear-gradient(to right, #FFA500, #E45811); /* Carrot to Chili */
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.donate-button:hover {
  transform: scale(1.05);
}

/* Food donation section */
.food-donation {
  margin-top: 30px;
  text-align: left;
  background-color: #FFF0DE;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.food-donation h2 {
  font-size: 1.8rem;
  color: #850001;
  margin-bottom: 15px;
  text-align: center;
}

.food-donation p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #3A1900;
  text-align: center;
}

.food-donation ul {
  list-style: disc;
  margin-left: 30px;
  color: #404040;
  margin-bottom: 20px;
}

.donate-food-button {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 24px;
  background: linear-gradient(to right, #FFA500, #A40865); /* Carrot to Beet */
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50px;
  transition: transform 0.2s ease;
}

.donate-food-button:hover {
  transform: scale(1.05);
}

/* Closing note */
.note {
  font-size: 0.95rem;
  color: #850001;
  margin: 40px 0 20px;
}

/* Back button */
.back-buttons {
  margin-top: 30px;
}

.back-buttons a {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(to right, #A40865, #E45811);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.back-buttons a:hover {
  transform: scale(1.05);
}
