/* Base Styles */
:root {
    --primary-color: #2c5282; /* A nice community blue */
    --secondary-color: #f7fafc;
    --text-color: #2d3748;
    --nav-bg: #1a365d;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

/* Navigation */
header {
    background-color: var(--nav-bg);
    color: white;
    padding: 1rem 0;
}

nav {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.nav-links a:hover {
    background-color: rgba(255,255,255,0.2);
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    border-radius: 8px;
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}
.hero h1 {
    color: white;
    border: none;
    margin: 0;
    font-size: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

/* Main Content */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
    min-height: 60vh;
}

h1 {
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

h2 {
    margin: 20px 0 15px;
    color: var(--primary-color);
}

p {
    margin-bottom: 15px;
}

/* Calendar Placeholder */
.calendar-container {
    background: white;
    padding: 20px;
    border: 1px dashed #cbd5e0;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cards / Boxes */
.card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

/* Organization Table */
.org-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}
.org-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}
.org-table tr:last-child td {
    border-bottom: none;
}
.org-logo {
    width: 120px;
    text-align: center;
}
.org-logo img {
    max-width: 100px;
    max-height: 100px;
    object-fit: contain;
    border-radius: 4px;
}
.org-info p {
    margin: 5px 0 0 0;
    font-size: 0.95rem;
    color: #4a5568;
}

/* Images */
.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #e2e8f0;
    margin-top: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
        padding: 10px 20px;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}
