/* style.css */
:root {
    --primary-color: #321FB7; /* Deep Blue */
    --secondary-color: #F7A10C; /* Bright Orange */
    --accent-color: #F31C09; /* Red */
    --bg-light: #ffffff; /* White */
    --bg-gray: #f4f4f4;
    --text-dark: #000000; /* Black */
    --text-light: #ffffff;
    --font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-family);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

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

.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}
.btn:hover { background-color: var(--accent-color); }
.btn-accent { background-color: var(--secondary-color); color: var(--text-dark); }
.btn-accent:hover { background-color: var(--primary-color); color: var(--text-light); }
.btn-alert { background-color: var(--accent-color); }

/* Navigation */
nav {
    background: var(--primary-color);
    padding: 10px 0;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}
nav a:hover { color: var(--secondary-color); }

/* Hero Section */
.hero {
    background: linear-gradient(rgba(50, 31, 183, 0.8), rgba(0, 0, 0, 0.8)), url('images/tahoe-bg.jpg') center/cover;
    color: var(--text-light);
    padding: 4rem 1rem;
}
.hero h1 { margin: 0; font-size: 3rem; color: var(--secondary-color); }
.hero h2 { margin: 10px 0 20px; font-weight: 300; }
.hero-buttons { display: flex; gap: 15px; justify-content: center; margin-top: 2rem; }

/* Layout grids */
.main-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
    align-items: start;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.main-content { display: flex; flex-direction: column; gap: 2rem; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }

/* Sidebar */
.sidebar { position: sticky; top: 20px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { background: var(--bg-gray); border-radius: 10px; padding: 1.25rem; box-shadow: 0 2px 8px rgba(0,0,0,0.05); border-top: 4px solid var(--secondary-color); }
.sidebar-card h3 { margin-top: 0; margin-bottom: 1rem; color: var(--primary-color); font-size: 1.1rem; border-bottom: 2px solid var(--accent-color); padding-bottom: 0.5rem; }
.sidebar-links { list-style: none; padding: 0; margin: 0; }
.sidebar-links li { margin-bottom: 0.75rem; }
.sidebar-links a { text-decoration: none; color: var(--text-dark); font-weight: 500; transition: color 0.2s ease; }
.sidebar-links a:hover { color: var(--accent-color); }
.mini-news-item { margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid #ddd; }
.mini-news-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.mini-news-item small { display: block; color: #666; margin-top: 4px; }

/* Priorities */
.priorities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.card { background: var(--bg-light); border: 1px solid #ddd; padding: 1.5rem; border-radius: 8px; border-left: 5px solid var(--primary-color); }
.card h3 { margin-top: 0; color: var(--primary-color); }

/* Events */
.events-list { list-style: none; padding: 0; }
.events-list li { display: flex; justify-content: space-between; padding: 1rem; border-bottom: 1px solid #ccc; }

@media (max-width: 900px) {
    .main-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .story-grid { grid-template-columns: 1fr; }
    .priorities-grid { grid-template-columns: 1fr; }
}