/* Body background */
body {
  font-family: Verdana, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;

  background-image: url('clean_background.png');
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: scroll;
  background-size: cover;

  background-color: #fdfdfd; /* fallback after image ends */
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(47, 93, 49, 0.9);
  color: #fff;
  padding: 10px 20px;
  flex-wrap: wrap;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}
header nav a {
  color: #fff;
  text-decoration: none;
}
header nav a:hover {
  text-decoration: underline;
}

.site-title {
  text-align: center;
}

/* Hero section */
.hero {
  position: relative;
  text-align: center;
  padding: 120px 20px;
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: -1;
}
.hero h1, .hero p {
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

/* Main content sections */
section {
  position: relative;
  padding: 40px 20px;
  max-width: 800px;
  margin: 40px auto;

  background: rgba(255, 255, 255, 0.75); /* semi-transparent white */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

  z-index: 1;
}
section h2 {
  margin-bottom: 15px;
  color: #2c7a7b;
}

/* Buttons */
.button {
  display: inline-block;
  margin: 10px 5px;
  padding: 10px 15px;
  background: #2c7a7b;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
.button:hover {
  background: #285e61;
}
.donate {
  background: #e53e3e;
}
.donate:hover {
  background: #c53030;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background: rgba(47, 93, 49, 0.9);
  color: white;
  margin-top: 30px;
}

/* Donate page styling */
.donation-page { 
  max-width: 900px; 
  margin: 30px auto; 
  padding: 20px; 
}

.donation-block { 
  background: rgba(229, 62, 62, 0.05); 
  border-left: 5px solid #e53e3e; 
  padding: 15px; 
  margin: 20px 0; 
  border-radius: 6px; 
}

.donation-field {
  display: flex;
  align-items: center;
  margin: 6px 0;
  flex-wrap: wrap;
}

.donation-field strong { 
  margin-right: 5px; 
}

.donation-field span { 
  margin-right: 5px; 
  word-break: break-all; 
}

.copy-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  vertical-align: middle;
  color: #2c7a7b;
}

.copy-button:hover svg { 
  color: #285e61; 
}

.copy-button svg { 
  width: 16px; 
  height: 16px; 
  vertical-align: middle; 
}

/* Use a single reusable copy icon with CSS background 
.copy-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
} */

.copy-icon::before {
  content: url('copy-icon.svg'); /* path to your SVG file */
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
}

/* Hamburger menu button */
#menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0;
}

/* Mobile menu hidden by default */
#mobile-menu {
  display: flex;
  list-style: none;
  gap: 15px;
}

/* Stack menu vertically on small screens */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
  }

  #menu-toggle {
    display: block;
    margin: 5px 0;
  }

  #mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: center;
  }

  #mobile-menu.open {
    display: flex;
  }
}


#toggle-about {
  background: #2c7a7b;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 5px;
  cursor: pointer;
}
#toggle-about:hover {
  background: #285e61;
}
