body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}
header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    animation: gradientShift 30s ease infinite;
}
@keyframes gradientShift {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
header h1 {
    margin: 0;
    font-size: 2.4em;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
header p {
    margin: 0;
    font-size: 1.1em;
    opacity: 0.9;
}
header .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Logo styles */
.header-logo {
    max-height: 60px;
    vertical-align: middle;
    margin-right: 15px;
}
.footer-logo {
    max-height: 40px;
    vertical-align: middle;
    margin-right: 10px;
}

/* Navigation */
nav {
    background: #000;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    min-height: 60px;
}
nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.nav-logo h2 {
    margin: 0;
    font-size: 1.8em;
    color: #ffdd57;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
.nav-links li {
    margin: 0;
}
.nav-links a {
    display: block;
    padding: 10px 15px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #ffdd57;
}
.nav-links a:target {
    text-decoration: underline;
}

/* Hamburger menu for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Sections */
section {
    padding: 80px 0;
}
section:nth-child(even) {
    background: #fff;
}
section:nth-child(odd) {
    background: #f0f0f0;
}
section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
    font-size: 2.2em;
    position: relative;
}
section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #e74c3c;
    margin: 10px auto 0;
}

/* Placeholders */
.hero-placeholder, .about-placeholder, .events-placeholder, .getinvolved-placeholder {
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    border: none;
    border-radius: 12px;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    color: #555;
    font-style: italic;
    font-size: 1.1em;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.hero-placeholder::before,
.about-placeholder::before,
.events-placeholder::before,
.getinvolved-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M10,10 L90,90 M90,10 L10,90" stroke="%23ffffff" stroke-width="2" opacity="0.2"/></svg>');
    opacity: 0.3;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}
.btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}
.btn:active {
    transform: translateY(0);
}

/* Lists */
ul {
    padding-left: 20px;
}
li {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ddd;
    text-align: center;
    padding: 30px 0;
    font-size: 0.95em;
    border-top: 4px solid #e74c3c;
}
footer a {
    color: #ffdd57;
    text-decoration: none;
    margin: 0 10px;
}
footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 2.2em;
    }
    header p {
        font-size: 1.0em;
    }
    section h2 {
        font-size: 1.8em;
    }
    .nav-links {
        position: fixed;
        top: 60px; /* height of nav */
        left: 0;
        width: 100%;
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        align-items: stretch;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }
    .nav-links.active {
        max-height: 300px;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links li:first-child a {
        border-top: none;
    }
    .hamburger {
        display: flex;
    }
    .container {
        width: 95%;
    }
    .header-logo {
        max-height: 50px;
    }
}