/* style.css */
body {
    font-family: sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #0056b3; /* Example patriotic color */
    color: white;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    max-height: 50px; /* Adjust as needed */
}

nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

main {
    padding: 2rem;
    text-align: center;
}

#hero {
    background-image: url("hero-image.html"); /* Replace with your image */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-shadow: 2px 2px 4px #000000;
}

#donation-form {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 2rem auto;
}

input[type="text"],
input[type="tel"],
input[type="number"] {
    width: calc(100% - 22px);
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
#wallet-display{
    margin-bottom: 10px;
    font-weight: bold;
}
/* Responsive Design */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 10px;
    }
}