/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    font-weight: 400;
    line-height: 1.6;
}

header {
    background-color: #ffcc66; /* Primary Blue Color */
    padding: 10px 20px;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333333; /* White Color for Links */
    text-decoration: none;
    padding: 5px 10px;
}

nav ul li a:hover {
    background-color: #e6e6e6; /* Darker Blue on Hover */
}

.
.logo {
    width: 150px;
    position: absolute;
    left: 20px;
    top: 10px;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif; /* Merriweather for headings */
    font-weight: 700; /* Bold for headings */
    color: #0044cc; /* Optional: Adjust to match the color scheme */
}
p, li, label, input, textarea {
    font-family: 'Open Sans', sans-serif; /* Open Sans for all standard text */
    font-weight: 400;
    color: #333; /* Standard text color */
}

/* For Strong Emphasis */
strong {
    font-weight: 600;
}

/* Home Page Styles */
.hero {
    background-image: url('https://images.unsplash.com/photo-1697383904760-a366186acbf3?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    color: whitesmoke;
}
.hero h2, .hero h3 {
    color: whitesmoke;
}

.hero p {
    font-size: 20px;
    color: whitesmoke;
}

/* Brief Description Section */
.brief-description {
    background-color: #fff; /* White Background */
    padding: 40px 20px;
    text-align: center;
}

.brief-description .description-content {
    max-width: 800px;
    margin: 0 auto;
}

.brief-description h2 {
    font-size: 28px;
    color: #0044cc; /* Primary Blue */
    margin-bottom: 20px;
}

.brief-description p {
    font-size: 18px;
    color: #333; /* Dark Text */
    line-height: 1.6;
}

.donation-section {
    display: flex; /* Enables flexbox for centering */
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Aligns content vertically within its space */
    padding: 50px 20px; /* Adds space around the section */
    margin: 50px auto; /* Centers the section and adds spacing above/below */
    width: 90%; /* Limits the section width to fit within the viewport */
    max-width: 1200px; /* Prevents it from becoming too wide */
    background-color: #f9f9f9; /* Subtle background color */
    border: 2px solid #ddd; /* Light border for separation */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds depth with a soft shadow */
    text-align: center; /* Centers the text */
}

.donation-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.donation-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.donation-content blockquote {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #555;
    font-style: italic;
    margin: 20px 0;
    padding: 10px 20px;
    border-left: 4px solid #007BFF;
    background-color: #eef6fd;
}

.qr-code {
    margin: 20px 0;
    max-width: 150px; /* Restricts the QR code size */
    border: 2px solid #ddd; /* Light border around the QR code */
    border-radius: 8px; /* Rounded corners */
}

.banking-details {
    background-color: #eef6fd; /* Subtle blue background */
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px; /* Rounded corners */
    border: 2px solid #ddd; /* Light border */
    text-align: left; /* Left-align for better readability */
}

.banking-details h4 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.banking-details p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    color: #444;
    margin: 5px 0;
    line-height: 1.4;
}



/* Founder's Section */
.founder-section {
    background-color: #f4f4f4; /* Light background */
    padding: 40px 20px;
    text-align: center;
}

.founder-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image {
    flex: 1;
    padding: 20px;
}

.founder-image img {
    width: 220px;
    height: 240px;
    border-radius: 50%; /* Circular image */
    object-fit: cover;
}

.founder-bio {
    flex: 2;
    padding: 20px;
    text-align: left;
}

.founder-bio h2 {
    font-size: 24px;
    color: #0044cc; /* Primary Blue */
    margin-bottom: 10px;
}

.founder-bio h4 {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.founder-bio p {
    font-size: 16px;
    color: #333; /* Dark Text */
    line-height: 1.6;
}

/* About Page Styles */

.about {
    padding: 20px;
    text-align: center;
    color: #0044cc; /* Primary Blue Text */
}

/* Example for specific section titles */
.about-section h2, .objectives-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 28px;
    font-weight: 700;
    color: #0044cc;
}

.about-section p, .objectives-section p {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

/* Main Objectives Section Styles */
.objectives {
    margin-top: 40px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
}

.objectives h3 {
    font-size: 24px;
    color: #0044cc; /* Primary Blue Color */
    margin-bottom: 20px;
}

.objectives ul {
    list-style-type: none;
    margin-left: 40px;
}

.objectives ul li {
    font-size: 16px;
    color: #333; /* Darker text color */
    margin-bottom: 10px;
}
.objectives p {
    color: black;
}


/* Contact Page Styles */

/* Board of Directors Section */
.board {
    background-color: #fff; /* White Background */
    padding: 40px 20px;
    text-align: center;
}

.board h2 {
    font-size: 28px;
    color: #0044cc; /* Primary Blue */
    margin-bottom: 40px;
}

.board-members {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.member {
    flex: 1 1 30%;
    margin: 20px;
    text-align: center;
}

.member img {
    width: 150px;
    height: 180px;
    border-radius: 5px; /* Circular headshots */
    object-fit: cover;
    margin-bottom: 10px;
}

.member h3 {
    font-size: 20px;
    color: #0044cc; /* Primary Blue */
    margin-bottom: 5px;
}

.member p {
    font-size: 16px;
    color: #666; /* Lighter gray text */
}



.contact {
    padding: 20px;
    text-align: center;
    color: #0044cc; /* Primary Blue Text */
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    margin: 10px 0 5px;
}

form input, form textarea {
    width: 50%;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #0044cc; /* Blue Border */
}

/* Button styling */
button {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
}

button {
    padding: 10px 20px;
    background-color: #0044cc; /* Primary Blue Background */
    color: #fff; /* White Text */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
button:hover {
    background-color: #002a80; /* Darker Blue on Hover */
}
/* Address Section Styling */
.contact-address {
    margin-top: 30px;
    text-align: center;
    padding: 15px; /* Adds breathing space inside the address box */
    border: 1px solid #000; /* 1px black border */
    border-radius: 5px; /* Optional: Adds slight rounding to the corners */
    width: fit-content; /* Ensures the container wraps tightly around the content */
    margin-left: auto; /* Center the container */
    margin-right: auto; /* Center the container */
}

.contact-address h3 {
    font-size: 22px;
    color: #0044cc; /* Matches the blue theme */
    margin-bottom: 10px;
}

.contact-address p {
    font-size: 18px;
    color: #333;
    margin: 0;
}



/* Map Section Styling */
.contact-map {
    margin-top: 30px;
    text-align: center;
}

.contact-map h3 {
    font-size: 22px;
    color: #0044cc; /* Matches the blue color palette */
    margin-bottom: 15px;
}

.contact-map iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adds shadow for better look */
}

.contact-map a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    font-size: 16px;
    color: #0044cc; /* Link color */
    border: 1px solid #0044cc; /* Adds a border around the link */
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-map a:hover {
    background-color: #0044cc;
    color: #fff;
}
/* Footer Links Styling */
.footer a {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

/* Footer Styles */
footer {
    background-color: #ffcc66; /* Primary Blue Background */
    color: #333333; /* White Text */
    padding: 20px 0;
    text-align: center;
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .footer-icons {
    margin-top: 15px;
}

footer .footer-icons a {
    margin: 0 10px;
    color: #333333;
}

footer .footer-icon {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

footer .footer-icon:hover {
    transform: scale(1.2); /* Slight zoom effect on hover */
}


.footer-left, .footer-center, .footer-right {
    width: 30%;
}

.footer-left h3, .footer-center h4, .footer-right h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-left p, .footer-center p, .footer-right a {
    font-size: 14px;
}

.footer-right a {
    color: #333333;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}
footer a {
    text-decoration: none;
    color: black;
}

/* Responsive Design */

/* For tablets (768px to 1024px) */
@media (max-width: 1024px) {
    nav ul {
        flex-direction: row;
        align-items: flex-end;
    }

    .hero {
        height: 300px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    .member {
        flex: 1 1 45%;
    }
    form input, form textarea {
        width: 70%;
    }
    .footer-left, .footer-center, .footer-right {
        width: 45%; /* Adjusting width to fit better on tablets */
    }
    .footer-left h3, .footer-center h4, .footer-right h4 {
        font-size: 18px; /* Slightly smaller heading */
    }

    .footer-left p, .footer-center p, .footer-right a {
        font-size: 13px; /* Slightly smaller text */
    }
}

/* For mobile devices (max-width 767px) */
@media (max-width: 767px) {
    .logo {
        width: 120px;
    }

    nav ul {
        flex-direction: row;
        align-items: center;
    }

    .hero {
        height: 250px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }
     .founder-content {
        flex-direction: column;
        text-align: center;
    }

    .founder-bio {
        text-align: center;
    }

    .gallery {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    /* Target the objectives list */
    .objectives ul {
        list-style-type: none; /* Remove bullet points */
        padding: 0;
        margin: 0 auto; /* Auto margins will center the <ul> */
        text-align: center; /* Center the text */
    }

    .objectives ul li {
        margin-bottom: 10px; /* Add some spacing between list items */
        display: inline-block; /* Keep items in their own block */
        width: 100%; /* Full width of the container */
    }
     .contact-map iframe {
        height: 200px; /* Reduce the height on mobile for a more compact view */
         width: 100%;
    }

    .contact-map h3 {
        font-size: 18px; /* Adjust font size for mobile */
    }

    .contact-map a {
        font-size: 14px; /* Smaller link text size for mobile */
        padding: 6px 10px; /* Adjust link padding for a tighter look */
    }
    .member {
        flex: 1 1 100%; /* Stack members vertically on smaller screens */
    }

    .member img {
        width: 120px;
        height: 120px;
    }

    .member h3 {
        font-size: 18px;
    }

    .member p {
        font-size: 14px;
    }

    form input, form textarea {
        width: 90%;
    }
    .footer-content {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align for better readability */
    }

    .footer-left, .footer-center, .footer-right {
        width: 100%; /* Full width for all sections */
        margin-bottom: 15px; /* Spacing between sections */
    }

    .footer-left h3, .footer-center h4, .footer-right h4 {
        font-size: 18px; /* Smaller font size */
    }

    .footer-left p, .footer-center p, .footer-right a {
        font-size: 13px; /* Adjust text size for smaller screens */
    }
}

/* For small mobile devices (max-width 480px) */
@media (max-width: 480px) {
    .logo {
        width: 100px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    form label {
        font-size: 14px;
    }

    button {
        padding: 8px 16px;
    }
    .contact-map iframe {
        height: 180px; /* Further reduce the height for very small screens */
        width: 100%;
    }

    .contact-map a {
        padding: 5px 8px; /* More compact padding for very small screens */
    }
    .footer-left h3, .footer-center h4, .footer-right h4 {
        font-size: 16px; /* Further reduce heading size */
    }

    .footer-left p, .footer-center p, .footer-right a {
        font-size: 12px; /* Smaller text for mobile devices */
    }

    .footer-left, .footer-center, .footer-right {
        text-align: center; /* Center-align text on mobile */
    }
    
    .footer-content {
        padding: 0 10px; /* Adjust padding for smaller screens */
    }
}