/*
Theme Name: VoicesAlive
Theme URI: https://voicesaliveoc.org
Author: VoicesAlive
Author URI: https://voicesaliveoc.org
Description: Custom WordPress theme for VoicesAlive - Orange County's premier LGBTQ+ performing arts organization
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: voicesalive
Tags: custom, modern, nonprofit, lgbtq
*/

:root {
    --primary: #00415D;
    --secondary: #21BDC9;
    --light: #F8FAFB;
    --dark: #0A1A1F;
    --accent: #FF6B9D;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 250, 251, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 65, 93, 0.1);
}

nav.main-nav .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.02em;
}

nav.main-nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav.main-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

nav.main-nav a:hover {
    color: var(--secondary);
}

nav.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

nav.main-nav a:hover::after {
    width: 100%;
}

/* Footer */
footer.main-footer {
    background: var(--dark);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

footer.main-footer h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

footer.main-footer p, 
footer.main-footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s ease;
}

footer.main-footer a:hover {
    color: var(--secondary);
}

footer.main-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav.main-nav ul {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
