:root {
    --amber: #FFBF00;
    --white: #FFFFFF;
    --dark-overlay: rgba(0, 0, 0, 0.6);
    --text-dark: #333;
    --text-light: #f4f4f4;
    --font-serif: "Lora", serif;
    --font-sans-serif: "Roboto", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans-serif);
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

/* Header */
.sticky-header {
    background: var(--white);
    color: var(--text-dark);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.5em;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    padding: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--amber);
}

.donate-button {
    background: var(--amber);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.donate-button:hover {
    background: #e6a700;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background: var(--text-dark);
}

/* Hero Section */
.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    height: 100vh;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    background: var(--dark-overlay);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 4em;
    margin-bottom: 0.5em;
}

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

.cta-button {
    background: var(--amber);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #e6a700;
}

/* About Us Section */
.about-us {
    padding: 4rem 0;
}

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

.about-content {
    flex: 2;
}

.about-content h2 {
    font-family: var(--font-serif);
    font-size: 2.5em;
    margin-bottom: 1rem;
}

.about-content h3 {
    font-family: var(--font-serif);
    font-size: 1.8em;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--amber);
}

.about-image {
    flex: 1;
}

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

/* Events Section */
.events {
    background: var(--text-light);
    padding: 4rem 0;
}

.events h2 {
    font-family: var(--font-serif);
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 2rem;
}

.event-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.event-item h3 {
    font-family: var(--font-serif);
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.support-info {
    text-align: center;
}

.support-info h3 {
    font-family: var(--font-serif);
    font-size: 1.8em;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #333;
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1;
}

.footer-col h3 {
    font-family: var(--font-serif);
    margin-bottom: 1rem;
}

.footer-email {
    font-size: 1.2em;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

.copyright {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 1rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.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;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#contact-form button {
    width: 100%;
    padding: 10px;
    background: var(--amber);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        position: absolute;
        top: 60px;
        left: 0;
        background: var(--white);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 15px 0;
    }

    .hamburger-menu {
        display: block;
    }

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

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