/* GENERAL STYLING */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #fdf6e3; /* previous cream background */
    color: #2a6f4b;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 800px;
    padding: 20px;
}

/* HEADER */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

header img {
    height: 150px; 
    margin-bottom: 15px;
}


header h1 {
    font-size: 2em; /* slightly smaller for better balance */
    margin: 0;
    color: #2a6f4b;
}

header p {
    font-size: 1.1em;
    color: #a18f77; /* cream accent */
    margin-top: 5px;
}

/* ABOUT SECTION */
#about {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 25px 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

#about p {
    font-size: 1.05em;
    line-height: 1.6;
    color: #2a6f4b;
}

/* DONATE BUTTON */
#donate {
    margin-bottom: 30px;
}

.donate-btn {
    background-color: #2a6f4b; 
    color: #f5f5dc; 
    padding: 14px 32px;
    font-size: 1.1em;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.donate-btn:hover {
    background-color: #225d3b;
    transform: scale(1.05);
}

/* SOCIALS */
#socials {
    margin-bottom: 20px;
}

#socials a {
    color: #2a6f4b;
    font-weight: bold;
    margin: 0 10px;
    transition: color 0.3s ease;
    text-decoration: none;
}

#socials a:hover {
    color: #a18f77;
}

/* FOOTER */
footer {
    font-size: 0.9em;
    color: #555;
}

/* MOBILE STYLING */
@media (max-width: 600px) {
    header h1 {
        font-size: 1.6em;
    }

    header p {
        font-size: 1em;
    }

    #about p {
        font-size: 0.95em;
    }

    .donate-btn {
        font-size: 1em;
        padding: 12px 28px;
    }
}
