:root {
    --primary-color: #4169E1; /* Royal Blue */
    --secondary-color: #FFFDD0; /* Cream */
    --dark-overlay: rgba(0, 0, 0, 0.5);
    --text-color: #333;
    --light-text-color: #fff;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sticky-header {
    position: sticky;
    top: 0;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 1rem 0;
    z-index: 1000;
}

.sticky-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Lora', serif;
    font-size: 1.5em;
    font-weight: bold;
}

.donate-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.mobile-menu-icon {
    display: none;
    font-size: 2em;
    cursor: pointer;
}

.hero {
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background-color: var(--dark-overlay);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    color: var(--light-text-color);
}

.hero-content h1 {
    font-family: 'Lora', serif;
    font-size: 4em;
    margin-bottom: 0.5em;
}

.hero-content p {
    font-size: 1.5em;
    margin-bottom: 1.5em;
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
}

.about-us, .events {
    padding: 4em 0;
}

.about-us .container {
    display: flex;
    align-items: center;
    gap: 2em;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

.events .container {
    text-align: center;
}

.event-list {
    display: flex;
    justify-content: space-around;
    gap: 2em;
    margin-top: 2em;
}

.event {
    background-color: #f4f4f4;
    padding: 2em;
    border-radius: 10px;
    flex: 1;
}

.more-info {
    margin-top: 3em;
}

footer {
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 2em 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
}

.footer-col a {
    color: var(--light-text-color);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5em;
}

.email {
    font-size: 1.2em;
}

.copyright {
    text-align: center;
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid var(--secondary-color);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--dark-overlay);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    position: relative;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#contact-form button {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .sticky-header .container {
        flex-direction: column;
    }

    .donate-button {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .about-us .container {
        flex-direction: column;
    }

    .event-list {
        flex-direction: column;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 2em;
    }
}
