/* ===== Base styling ===== */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Nunito', sans-serif;
  background-color: #115741;  /* green */
  color: #fff5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color-scheme: only light;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}

/* Title */
.title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #ffb800;
  margin: 0;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
}

/* Logo image */
.placeholder-img {
  max-width: 70%;   /* smaller */
  height: auto;
  border-radius: 20px;
  border: 6px solid #ffb800;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  background: #fff5e9;
  padding: 6px;
}

/* Buttons (Donate + Store) */
.donate-btn, .store-btn {
  display: block;
  width: 80%;              /* wide buttons */
  margin-top: 12px;
  padding: 16px 0;         /* uniform height */
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-align: center;
}

/* Donate button colors */
.donate-btn {
  background-color: #ffb800;
  color: #115741;
}
.donate-btn:hover {
  background-color: #7a2f00;
  color: #fff5e9;
  transform: translateY(-2px);
}

/* Store button colors */
.store-btn {
  background-color: #fff5e9;
  color: #115741;
}
.store-btn:hover {
  background-color: #ffb800;
  color: #115741;
  transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .donate-btn, .store-btn {
    width: 100%;           /* full width on small screens */
    font-size: 1rem;
    padding: 14px 0;
  }
}

