/* Global Styles */
:root {
    --primary-color: #ff7f00;
    --primary-color-light: #ffa64d;
    --primary-color-dark: #cc6600;
    --secondary-color: #333;
    --text-color: #333;
    --light-color: #f4f4f4;
    --dark-color: #222;
    --max-width: 1200px;
}

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Content should take available space, pushing footer down */
main, .crash-reports-content {
    flex: 1;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--primary-color-dark);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 120px;
    height: 120px;
    position: relative;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
}

nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    padding: 10px 5px;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover, .nav-menu .active a {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Event Banner Section */
.event-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.event-banner-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.event-banner-content {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 3px solid var(--primary-color);
}

.event-banner-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.event-banner-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.event-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-banner-text {
    flex: 1;
    padding: 40px;
}

.event-banner-text h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 2rem;
}

.event-banner-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.event-banner-text p i {
    color: var(--primary-color);
    margin-right: 8px;
}

.event-banner-text .btn {
    display: inline-block;
    margin-top: 10px;
}

/* Responsive event banner */
@media (max-width: 768px) {
    .event-banner-content {
        flex-direction: column-reverse;
    }
    
    .event-banner-image {
        flex: 0 0 100%;
        max-width: 100%;
        max-height: 300px;
    }
    
    .event-banner-text {
        padding: 30px 20px;
    }
    
    .event-banner-text h2 {
        font-size: 1.6rem;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    margin-bottom: 20px;
}

/* CTA Section */
.cta {
    background: var(--primary-color-dark);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 20px;
}

.cta p {
    margin-bottom: 30px;
}

/* Footer */
footer {
    margin-top: auto;
    background-color: var(--secondary-color);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color-light), var(--primary-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin: 0;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: 10px;
}
.breadcrumbs ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin: 8px 0 0 0;
}
.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    color: inherit;
}
.breadcrumbs li + li::before {
    content: "/";
    opacity: 0.8;
    margin: 0 8px;
}
.page-header .breadcrumbs a {
    color: #fff;
}
.page-header .breadcrumbs a:hover {
    text-decoration: underline;
}

/* About Page Styles */
.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    margin: 60px 0;
}

.about-text h2, .about-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.team-section {
    margin: 60px 0;
}

.team-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    margin: 15px 0 5px;
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Events Page Styles */
.events-grid {
    margin: 60px 0;
}

.event-card {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.event-date {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 120px;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.event-date .year {
    font-size: 1rem;
}

.event-details {
    padding: 20px;
    flex-grow: 1;
}

.event-details h3 {
    color: var(--primary-color-dark);
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #777;
}

.event-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.calendar-section {
    text-align: center;
    margin: 60px 0;
}

.calendar-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.calendar-section p {
    margin-bottom: 30px;
}

.subscribe-section {
    background: var(--light-color);
    padding: 60px 0;
    text-align: center;
}

.subscribe-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.subscribe-section p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
}

.subscribe-form input {
    flex-grow: 1;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
    font-size: 1rem;
}

/* Projects Page Styles */
.filter-options {
    margin: 40px 0;
    text-align: center;
}

.filter-menu {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filter-menu li {
    cursor: pointer;
    padding: 8px 15px;
    background: #eee;
    border-radius: 20px;
    transition: all 0.3s;
}

.filter-menu li.active, .filter-menu li:hover {
    background: var(--primary-color);
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-details {
    padding: 20px;
}

.project-details h3 {
    color: var(--primary-color-dark);
    margin-bottom: 10px;
}

.project-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.project-category, .project-status {
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 15px;
    background: var(--light-color);
    display: inline-block;
}

.project-category {
    background: var(--primary-color-light);
    color: white;
}

.project-status {
    background: #e3f2fd;
    color: #0277bd;
}

.project-details p {
    margin-bottom: 20px;
    color: #666;
}

/* Resources Page Styles */
.resources-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color-dark);
}

.category-card p {
    margin-bottom: 20px;
    color: #666;
}

.resource-section {
    margin: 80px 0;
}

.resource-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.resource-section h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.resource-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.resource-item h3 {
    color: var(--primary-color-dark);
    margin-bottom: 15px;
}

.resource-item p {
    margin-bottom: 20px;
    color: #666;
}

.external-links {
    list-style: none;
}

.external-links li {
    margin-bottom: 10px;
}

.external-links li a {
    display: inline-block;
    transition: transform 0.3s;
}

.external-links li a:hover {
    transform: translateX(5px);
}

.external-links li a i {
    margin-right: 5px;
}

.video-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

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

.video-thumbnail {
    margin-bottom: 15px;
    cursor: pointer;
    transition: transform 0.3s;
}

.video-thumbnail:hover {
    transform: scale(1.05);
}

.video-item h3 {
    margin-bottom: 10px;
}

.contact-section {
    background: var(--primary-color-light);
    color: white;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.contact-section h2 {
    margin-bottom: 20px;
}

.contact-section p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Styles */
.contact-info-centered {
    max-width: 600px;
    margin: 60px auto 100px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-centered h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

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

.contact-email p {
    font-size: 1.1rem;
}

.contact-email a {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s;
}

.contact-email a:hover {
    color: var(--primary-color-dark);
}

.contact-email i {
    margin-right: 8px;
}

/* Update responsive styles for contact page */
@media screen and (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: -1;
    }
}

/* Events Preview Styles for Homepage */
.events-preview-container {
    margin: 15px 0;
}

.events-preview-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.event-preview-item {
    display: flex;
    margin-bottom: 12px;
    background: var(--light-color);
    border-radius: 5px;
    overflow: hidden;
}

.event-preview-date {
    background: var(--primary-color);
    color: white;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 70px;
}

.event-preview-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: bold;
}

.event-preview-date .day {
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1;
}

.event-preview-details {
    padding: 10px;
    flex-grow: 1;
}

.event-preview-details h4 {
    margin: 0 0 5px 0;
    font-size: 0.95rem;
    color: var(--primary-color-dark);
}

.event-preview-time {
    font-size: 0.8rem;
    color: #777;
    margin: 0;
}

.event-preview-time i {
    color: var(--primary-color);
    margin-right: 5px;
}

.view-all-events {
    text-align: right;
    font-size: 0.9rem;
    margin: 8px 0 0 0;
}

.view-all-events a {
    color: var(--primary-color-dark);
    font-weight: bold;
}

.view-all-events a:hover {
    text-decoration: underline;
}

.loading-events {
    text-align: center;
    padding: 15px;
    color: #777;
}

.no-events {
    text-align: center;
    padding: 15px;
    color: #777;
    font-style: italic;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 100px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        transition: right 0.3s;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        width: 60px;
        height: 60px;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

@media screen and (max-width: 768px) {
    .about-grid,
    .team-grid,
    .resources-categories {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        padding: 15px;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .filter-menu {
        gap: 10px;
    }

    .filter-menu li {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .resource-section h2 {
        font-size: 1.8rem;
    }
}

/* Events Loading States */
.loading-events {
    text-align: center;
    padding: 50px 0;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.loading-events::after {
    content: "...";
    animation: dots 1.5s infinite;
}

.no-events {
    text-align: center;
    padding: 50px 0;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.error-message {
    text-align: center;
    padding: 30px;
    color: #d9534f;
    background-color: #f9f2f2;
    border-radius: 5px;
    margin: 20px 0;
}

@keyframes dots {
    0%, 20% {
        content: ".";
    }
    40% {
        content: "..";
    }
    60%, 100% {
        content: "...";
    }
}

/* Form message styles */
.form-message {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Crash Reports Styles */
.crash-reports-intro {
    margin-bottom: 40px;
    max-width: 800px;
}

/* Improved Intro Card */
.intro-card {
    display: flex;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 40px 0;
    overflow: hidden;
    border-left: 5px solid var(--primary-color);
}

.intro-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    font-size: 3rem;
    color: var(--primary-color);
    background-color: rgba(255, 127, 0, 0.05);
}

.intro-text {
    padding: 30px;
    flex: 1;
}

.intro-text h2 {
    color: var(--primary-color-dark);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.intro-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.intro-text .btn {
    margin-top: 10px;
    display: inline-block;
}

.crash-reports-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.report-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
}

.report-header {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: var(--light-color);
    border-bottom: 1px solid #e0e0e0;
}

.report-date {
    background-color: var(--primary-color);
    color: white;
    min-width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 5px;
    margin-right: 15px;
}

.report-date .day {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.report-date .month {
    font-size: 1rem;
    text-transform: uppercase;
}

.report-date .year {
    font-size: 0.8rem;
}

.report-meta {
    flex-grow: 1;
}

.report-meta h3 {
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 1.3rem;
}

.report-body {
    padding: 20px;
}

.report-description {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.report-image {
    margin: 15px 0;
    border-radius: 5px;
    overflow: hidden;
}

.report-img {
    width: 100%;
    height: auto;
    display: block;
}

.report-details {
    margin-top: 15px;
    color: var(--text-color);
}

.loading-reports, .no-reports, .error-message {
    text-align: center;
    padding: 40px;
    font-style: italic;
    color: #777;
}

/* Media queries for responsiveness */
@media (min-width: 768px) {
    .crash-reports-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 992px) {
    .crash-reports-grid {
        grid-template-columns: repeat(1, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .intro-card {
        flex-direction: column;
    }

    .intro-icon {
        padding: 20px;
        background-color: rgba(255, 127, 0, 0.1);
    }

    .intro-text {
        padding: 20px;
    }
}

/* Pagination Controls for Crash Reports */
.pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0 40px;
    gap: 15px;
}

.pagination-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background-color: var(--primary-color-dark);
}

.pagination-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.page-indicator {
    font-weight: bold;
    color: var(--secondary-color);
}

/* Ensure crash reports content has proper spacing */
.crash-reports-content {
    padding: 40px 0;
}

/* Make report grid take more vertical space */
.crash-reports-grid {
    min-height: 400px;
}

/* Date Range Filter for Crash Reports */
.date-filter-container {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.date-filter-container h3 {
    color: var(--primary-color-dark);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.date-filter-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.date-filter-group {
    display: flex;
    flex-direction: column;
}

.date-filter-group label {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
    font-weight: 500;
}

.date-input {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.9rem;
}

.filter-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 23px; /* Align with inputs that have labels above */
}

.filter-btn:hover {
    background-color: var(--primary-color-dark);
}

.filter-btn.reset {
    background-color: #6c757d;
}

.filter-btn.reset:hover {
    background-color: #5a6268;
}

/* Make date filter responsive */
@media (max-width: 768px) {
    .date-filter-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        margin-top: 10px;
    }
}

/* Restore bullet points for content areas */
main ul,
.blog-content ul,
.about-content ul,
.content ul,
article ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

main ul li,
.blog-content ul li,
.about-content ul li,
.content ul li,
article ul li {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

/* Keep navigation and header lists clean */
header ul,
nav ul,
.nav ul,
footer ul {
    list-style: none;
    margin-left: 0;
}
