/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.5;
  color: #74551b;
  background-color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

nav a {
  color: #d4a017;
  text-decoration: none;
  margin-left: 2rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffd700;
}

/* Hero section */
.hero {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(255, 227, 135);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 var(--spacing-md);
}

.hero-title {
  font-size: 2.5rem;

  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
}

/* Donation Section */
#donate {
  padding: 5rem 0;
  background-color: #000;
}

#donate h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #a57e1b;
}

.donation-card {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(212, 160, 23, 0.1);
  border: 1px solid rgba(212, 160, 23, 0.2);
  border-radius: 12px;
  padding: 2rem;
}

.donation-card h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #866a23;
}

.bank-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-item {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 160, 23, 0.2);
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  border-color: rgba(212, 160, 23, 0.4);
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.1);
}

.label {
  display: block;
  font-size: 0.875rem;
  color: #d4a017;
  margin-bottom: 0.5rem;
}

.value {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(212, 160, 23, 0.9);
}

.contact-info {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(212, 160, 23, 0.6);
}

.contact-info a {
  color: #d4a017;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #000;
  padding: 1.5rem 0;
  text-align: center;
  border-top: 1px solid rgba(212, 160, 23, 0.1);
}

footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.5rem;
  }

  nav a {
    margin-left: 1rem;
  }

  .donation-card {
    margin: 0 1rem;
  }
}
