@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Apply the Montserrat font to the body */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333; /* Dark text color */
}

/* Style for the header */
header {
    color: #000000; 
    padding: 20px 0; /* Padding for the header */
    text-align: center; /* Centered text */
}

/* Style for h1 */
h1 {
    font-size: 2.5em; /* Larger font size for h1 */
    margin: 0; /* Remove default margin */
}

/* Style for h2 */
h2 {
    font-size: 2em; /* Font size for h2 */
    margin: 20px 0 10px; /* Margin for spacing */
}

/* Style for paragraphs */
p {
    font-size: 1em; /* Standard font size for paragraphs */
    margin: 10px 0; /* Margin for spacing */
}

/* Main content styling */
main {
    padding: 20px; /* Padding for the main content */
    background: #fff; /* White background for content */
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Style for the footer */
footer {
    text-align: center; /* Centered text */
    padding: 10px 0; /* Padding for the footer */
    background: #333; /* Dark background */
    color: #fff; /* White text */
    position: relative; /* Positioning */
    bottom: 0; /* Stick to the bottom */
    width: 100%; /* Full width */
}

/* Styling for the menu */
nav a {
    padding: 0 20px; /* 0 pixels on top and bottom, 20 pixels on left and right */
    text-decoration: none; /* Optional: removes the underline from links */
    transition: background-color 0.3s; /* Optional: adds a transition effect */
}

nav a:hover {
    text-decoration: underline;
}




/* Styling for the footer, primarily the donation box */
 .custom-footer {
  background-color: #f9f9f9;
   font-family: 'Montserrat', sans-serif;
  color: #333;
  padding: 2rem 1rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.donate-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  background: #fff;
  border: 5px solid #eeeeee;
  border-radius: 30px;
  padding: 1rem;
  min-width: 33vw;         /* 👈 Ensures it's at least 33% of the viewport width */
  max-width: 100%;         /* 👈 Prevents overflow on smaller screens */
  transition: box-shadow 0.3s ease;

.donate-box:hover {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.donate-icon {
  background-color: #eeeeee;
  border-radius: 200px;
  padding: 20px;
  margin-bottom: 10px;
}

.donate-icon svg {
  width: 50px;
  height: 50px;
}

.donate-text h2 {
  margin: 5px 0 10px;
  font-size: 1.5rem;
}

.donate-text p {
  margin: 0;
  font-size: 1rem;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}
/* End of styling for the footer, primarily the donation box */