/* Fairfax City Council Transcripts - Main Styles */

:root {
    --primary-color: #1a365d;      /* Navy blue - official government feel */
    --secondary-color: #2b6cb0;    /* Medium blue */
    --accent-color: #c53030;       /* Red accent */
    --bg-color: #f7fafc;
    --text-color: #1a202c;
    --light-text: #718096;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
}

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

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

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

/* Header */
.site-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.site-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.site-header h1 i {
    margin-right: 15px;
}

.tagline {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Main content */
main.container {
    padding: 40px 20px;
}

section {
    margin-bottom: 50px;
}

section h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--secondary-color);
}

section h2 i {
    margin-right: 10px;
}

/* Intro section */
.intro {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.intro p {
    margin-bottom: 15px;
}

.intro a {
    color: var(--secondary-color);
    text-decoration: none;
}

.intro a:hover {
    text-decoration: underline;
}

/* Meetings grid */
.meetings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.meeting-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid var(--secondary-color);
}

.meeting-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.meeting-card.placeholder {
    border-left-color: var(--light-text);
    opacity: 0.7;
}

.meeting-date {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.meeting-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.meeting-card p {
    color: var(--light-text);
}

.meeting-card a {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.meeting-card a:hover {
    color: var(--primary-color);
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.feature i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: white;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
}

.site-footer p {
    margin: 8px 0;
    opacity: 0.9;
}

.site-footer a {
    color: white;
    text-decoration: none;
}

.site-footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header h1 {
        font-size: 1.8rem;
    }

    .meetings-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
