/* --- General Styles --- */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #F5F3EF; /* Updated */
    color: #2C2F33; /* Updated */
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    text-align: center;
}

.hero-banner {
    width: 40%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-text {
    padding: 20px;
    background-color: rgba(245, 243, 239, 0.2); /* Subtle overlay using new background color */
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2C2F33; /* Updated */
}

.hero-text p {
    font-size: 1.2rem;
    color: #3D404A; /* Updated */
}

.cta-button {
    display: inline-block;
    background-color: #2E4636; /* Updated */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #B48A52; /* Updated */
}

/* --- Content Sections --- */
.content-section {
    padding: 40px 20px;
    text-align: center;
}

#about {
    background-color: #ffffff;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #2E4636; /* Updated */
    display: inline-block;
    padding-bottom: 5px;
}

#about p {
    max-width: 800px;
    margin: 0 auto 15px auto;
    text-align: left;
}

/* --- Events Section --- */
.events-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.event-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.event-card h3 {
    margin-top: 0;
    color: #3D404A; /* Updated */
}

.event-card p {
    margin: 5px 0;
    font-size: 0.95rem;
}

/* --- Footer --- */
footer {
    background: #3D404A; /* Updated */
    color: #fff;
    text-align: center;
    padding: 20px;
}

footer .on-on {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 15px;
    color: #F5F3EF; /* Updated */
}

/* --- Media Queries for Responsiveness --- */
@media (max-width: 768px) {
    .hero-banner {
        width: 80%; /* Let the banner be a bit bigger on mobile */
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .content-section {
        padding: 30px 15px;
    }

    .event-card {
        width: 90%;
        max-width: 400px;
    }
}