/* Main Stylesheet for Linden Creek Website */

:root {
    --primary: #2c5e1a;
    --secondary: #f9f3e5;
    --accent: #d4a520;
    --text: #333;
    --light: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: var(--secondary);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1200/500') center/cover;
    color: var(--light);
    padding: 2rem 0;
    text-align: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header.subpage-header {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/api/placeholder/1200/300') center/cover;
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Navigation */
nav {
    background-color: var(--primary);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1rem 0;
}

nav li {
    margin: 0 1.5rem;
}

nav a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
}

nav a:hover {
    color: var(--accent);
}

/* Main Content */
main {
    padding: 3rem 0;
}

section {
    margin-bottom: 4rem;
}

section h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

/* Home Page Specific Styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text {
    padding-right: 1rem;
}

.about-image {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.about-image img:hover {
    transform: scale(1.05);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    text-align: center;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.events-container {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.event {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.event:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.event-date {
    background-color: var(--primary);
    color: var(--light);
    border-radius: 5px;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.event-details h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.visit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.visit-info {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.visit-info h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-item {
    margin-bottom: 1rem;
}

.info-label {
    font-weight: bold;
    margin-right: 0.5rem;
}

.map {
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
    background-color: #eee;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Town Government Specific Styles */
.town-officials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.official-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.official-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary);
}

.official-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.official-title {
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 1rem;
}

.meeting-schedule {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.meeting-schedule h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.meeting-table {
    width: 100%;
    border-collapse: collapse;
}

.meeting-table th, .meeting-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.meeting-table th {
    text-align: left;
    color: var(--primary);
}

.departments {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.department {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.department h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

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

.document-links li {
    margin-bottom: 0.5rem;
}

.document-links a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

.document-links a:hover {
    color: var(--accent);
}

.document-icon {
    margin-right: 0.5rem;
}

/* Community Resources Specific Styles */
.resources-intro {
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.resource-card {
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.resource-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.resource-content {
    padding: 1.5rem;
}

.resource-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.resource-contact {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.resource-contact p {
    margin-bottom: 0.3rem;
}

.resource-website {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.resource-website:hover {
    background-color: var(--accent);
}

.emergency-services {
    background-color: #fff3f3;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 3rem;
    border-left: 5px solid #e74c3c;
}

.emergency-services h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.emergency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.emergency-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.emergency-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
}

.emergency-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.emergency-phone {
    font-size: 1.2rem;
    font-weight: bold;
}

.health-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.health-facility {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.health-facility h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.education-list {
    list-style: none;
}

.education-item {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.education-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.education-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}

.education-contact, .education-info {
    flex: 1;
    min-width: 300px;
    background-color: var(--secondary);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.featured-event h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.featured-event-date {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.submit-event {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.submit-event h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.event-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group-full {
    grid-column: 1 / -1;
}

.submit-button {
    grid-column: 1 / -1;
    padding: 1rem;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--accent);
}

/* Footer */
footer {
    background-color: var(--primary);
    color: var(--light);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-section p,
.footer-section address {
    margin-bottom: 1rem;
    font-style: normal;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--light);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .features,
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .town-officials {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .departments {
        grid-template-columns: 1fr;
    }
    
    .resources-grid,
    .emergency-grid,
    .groups-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .health-grid {
        grid-template-columns: 1fr;
    }
    
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .park-list,
    .program-categories,
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .event-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2.5rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav li {
        margin: 0.5rem 0;
    }
    
    .about-content,
    .visit-content {
        grid-template-columns: 1fr;
    }
    
    .features,
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .town-officials {
        grid-template-columns: 1fr;
    }
    
    .resources-grid,
    .emergency-grid,
    .groups-grid {
        grid-template-columns: 1fr;
    }
    
    .business-grid {
        grid-template-columns: 1fr;
    }
    
    .park-list,
    .program-categories,
    .facilities-grid,
    .register-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
} 250px;
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.group-card {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.group-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Business Directory Specific Styles */
.directory-intro {
    margin-bottom: 3rem;
}

.category-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-link {
    padding: 0.8rem 1.5rem;
    background-color: var(--light);
    color: var(--primary);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.category-link:hover {
    background-color: var(--primary);
    color: var(--light);
}

.business-category {
    margin-bottom: 4rem;
}

.business-category h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 0.5rem;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.business-card {
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.business-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.business-content {
    padding: 1.5rem;
}

.business-name {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.business-address {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.business-phone {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.business-hours {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: #666;
}

.business-website {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.business-website:hover {
    background-color: var(--accent);
}

.back-to-top {
    text-align: right;
    margin-top: 1rem;
}

.back-to-top a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-to-top a:hover {
    color: var(--accent);
}

.featured-businesses {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.featured-title {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.featured-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0.5rem;
    scroll-behavior: smooth;
}

.featured-business {
    min-width: 300px;
    background-color: var(--secondary);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.featured-business h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.business-search {
    margin-bottom: 3rem;
}

.search-container {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--primary);
    border-right: none;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.search-button {
    padding: 1rem 1.5rem;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: var(--accent);
}

/* Parks & Recreation Specific Styles */
.parks-intro {
    margin-bottom: 3rem;
}

.park-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.park-card {
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.park-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.park-content {
    padding: 1.5rem;
    flex: 1;
}

.park-name {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.park-features {
    margin: 1rem 0;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.feature-tag {
    background-color: var(--secondary);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.park-hours {
    font-style: italic;
    margin-top: 1rem;
    color: #666;
}

.park-link {
    align-self: flex-start;
    margin-top: auto;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.park-link:hover {
    background-color: var(--accent);
}

.trails-container {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.trail-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}

.trail-table th, .trail-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.trail-table th {
    background-color: var(--secondary);
    color: var(--primary);
}

.trail-difficulty {
    display: flex;
    align-items: center;
}

.difficulty-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.easy {
    background-color: #4CAF50;
}

.moderate {
    background-color: #FFC107;
}

.difficult {
    background-color: #F44336;
}

.program-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.program-category {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.program-category h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.program-list {
    list-style: none;
}

.program-item {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.program-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.program-title {
    font-weight: bold;
    color: var(--primary);
}

.program-details {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.facility-card {
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.facility-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.facility-content {
    padding: 1.5rem;
}

.facility-name {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.facility-address {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.facility-details {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.registration-info {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.register-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.registration-methods h3, .scholarships h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.registration-methods ul, .scholarships ul {
    list-style: none;
    margin-left: 1rem;
}

.registration-methods li, .scholarships li {
    margin-bottom: 0.5rem;
}

.registration-button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.registration-button:hover {
    background-color: var(--accent);
}

/* Events Calendar Specific Styles */
.calendar-intro {
    margin-bottom: 3rem;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    background-color: var(--light);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--primary);
}

.filter-select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.search-group {
    flex: 2;
    min-width: 300px;
}

.month-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.current-month {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: bold;
}

.month-buttons {
    display: flex;
    gap: 1rem;
}

.month-button {
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.month-button:hover {
    background-color: var(--accent);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background-color: var(--light);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s;
}

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

.event-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-content {
    padding: 1.5rem;
}

.calendar-event-date {
    background-color: var(--primary);
    color: var(--light);
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.event-title {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.event-location {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.event-description {
    margin-bottom: 1.5rem;
}

.event-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.event-link:hover {
    background-color: var(--accent);
}

.featured-events {
    background-color: var(--light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 3rem;
}

.featured-events h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.featured-event {
    min-width: