/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
}

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

/* Color Variables */
:root {
    --primary-color: #8B0000; /* Dark Red */
    --secondary-color: #FFFFF0; /* Ivory */
    --dark-overlay: rgba(0, 0, 0, 0.6);
}

/* Header */
.sticky-header {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

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

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

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

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1.1em;
}

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

/* Hero Section */
.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    height: 100vh;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
}

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

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

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    border: 2px solid white;
}

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

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

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

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

/* Events Section */
.events-section {
    background: var(--secondary-color);
    padding: 4rem 0;
}

.event-list {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    flex: 1;
}

.event-item img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 2rem 0 1rem;
}

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

.footer-col {
    flex: 1;
}

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

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

/* Modals */
.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;
}

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

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

/* Responsive Design */
.hamburger-menu {
    display: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links, .donate-button {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        background: var(--primary-color);
        width: 100%;
        padding: 1rem 0;
    }

    .nav-links.active li {
        margin: 10px 20px;
    }

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

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