/* styles.css */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #f5f5dc; /* Cream color for the entire page */
}

body {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
}

h1 {
  text-align: center;
  color: #333;
}

.content {
  flex: 1;
  padding: 20px;
}

form {
  max-width: 500px;
  margin: 20px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
  display: block;
  margin-bottom: 10px;
  color: #333;
}

input[type="file"],
input[type="text"],
select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

select {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

button[type="submit"] {
  background-color: #425e13; /* Olive green color for the submit button */
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

button[type="submit"]:hover {
  background-color: #6b8e23; /* Darker olive green color on hover */
}

/* Footer Styles */
footer {
  background-color: #425e13; /* Olive green color for the footer */
  color: #f5f5dc;
  padding: 10px 0; /* Reduce vertical padding */
  text-align: center;
  margin-top: auto; /* Push footer to the bottom */
  width: 100%; /* Ensure footer spans the entire width */
}

.contact-section {
  max-width: 500px;
  margin: 0 auto;
  background-color: #f5f5dc; /* Darker background color for the contact section */
  padding: 10px; /* Reduce padding */
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
  margin-top: 0;
  color: rgb(0, 0, 0);
  font-size: 20px; /* Reduce font size */
}

.contact-section p {
  margin: 5px 0;
  color: rgb(2, 2, 2);
  font-size: 14px; /* Reduce font size */
}

.contact-section a {
  color: #425e13; /* Olive green color for the email text */
  text-decoration: none; /* Remove underline */
}

.contact-section a:hover {
  color: #6b8e23; /* Darker olive green color on hover */
}

.paypal-donate-container {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 300px; /* Adjust the max-width to scale down the div */
  width: 50%;
  box-sizing: border-box;
  margin: 0 auto; /* Center horizontally */
}

.paypal-donate-container h2 {
  margin: 0 0 10px 0;
  font-size: 16px; /* Adjust the font size if necessary */
  text-align: center;
}

.paypal-donate-container form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.paypal-donate-container input[type="image"] {
  border: none; /* Remove the border from the PayPal button */
  max-width: 100%; /* Ensure the image scales down with the container */
  height: auto;
  color: #6b8e23;
}


/* Hamburger icon styles */
.hamburger {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  cursor: pointer;
  z-index: 2;  /* Ensure the hamburger icon stays above the menu */
}

.hamburger div {
  width: 100%;
  height: 4px;
  background-color: black;
}

/* Menu styles */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background-color: #425e13;
  display: none;
  flex-direction: column;
  padding-top: 60px;
  z-index: 1;  /* Ensure the menu is below the hamburger icon */
}

.menu a {
  padding: 15px;
  text-decoration: none;
  color: black;
  display: block;
}

.menu a:hover {
  background-color: #f5f5dc;
}
