.page-header {
    height: 70vh;
    position: relative;
    padding: 250px 0 100px;
    background: url('../images/hero2.JPG') center/cover no-repeat;
    color: var(--text-white);
    text-align: center;
    overflow: hidden;
    z-index: 1;
}

/* Dark + Blur Overlay */
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20); /* Dark overlay */
    backdrop-filter: blur(1px);      /* Blur effect */
    -webkit-backdrop-filter: blur(6px); /* Safari support */
    z-index: 1;
}

/* Optional golden gradient highlight */
.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 80% 20%,
        rgba(212, 175, 55, 0.10) 0%,
        transparent 50%
    );
    pointer-events: none;
    z-index: 2;
}

/* Keep text above overlays */
.page-header > * {
    position: relative;
    z-index: 3;
}


.header-content {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    color: var(--text-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--text-white);
    max-width: 700px;
    margin: 0 auto 50px;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    color: var(--text-white);
    padding: 0 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat:last-child {
    border-right: none;
}

.stat i {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    display: block;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-filters {
    background: var(--bg-white);
    padding: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.search-box input {
    width: 100%;
    padding: 14px 20px 14px 45px;
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

.featured-event-wrapper {
    margin: 40px 0 60px;
}

.featured-event {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(128, 0, 32, 0.1);
    position: relative;
}

.event-date-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    font-size: 0.9rem;
}

.ribbon-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.event-date-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.event-date-circle {
    text-align: center;
    margin-bottom: 30px;
}

.date-day {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--secondary-color);
}

.date-month {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 5px 0;
    text-transform: uppercase;
}

.date-year {
    font-size: 1.2rem;
    opacity: 0.9;
}

.countdown-timer {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

.countdown-timer h4 {
    color: var(--text-white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.countdown-container {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    min-width: 70px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 5px;
    font-family: 'Courier New', monospace;
}

.countdown-label {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
}

.event-registration-info {
    width: 100%;
    margin-top: auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
}

.info-item i {
    color: var(--secondary-color);
}

.event-content-main {
    padding: 40px;
}

.event-category-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.event-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.3;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary-color);
}

.event-description {
    margin: 20px 0;
    color: var(--text-light);
    line-height: 1.7;
}

.event-highlights {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
}

.event-highlights h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--bg-white);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 24px;
}

.event-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.btn-register, .btn-details, .btn-share {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-register {
    background: var(--primary-color);
    color: var(--text-white);
    border: 2px solid var(--primary-color);
}

.btn-register:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-details {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-details:hover {
    background: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-share {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    margin-left: auto;
}

.btn-share:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0 60px;
}

.event-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.event-date-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 6px 12px 6px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.2);
}

.event-day {
    display: inline;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
}

.event-month {
    display: inline;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-year {
    display: inline;
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 2px;
}

.event-card-content {
    padding: 30px;
    padding-top: 70px;
}

.event-category {
    display: inline-block;
    background: rgba(128, 0, 32, 0.08);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.event-card .event-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    min-height: 60px;
}

.event-card .event-description {
    font-size: 0.95rem;
    margin: 15px 0;
    min-height: 80px;
}

.event-progress {
    margin: 20px 0;
}

.progress-bar {
    height: 6px;
    background: var(--bg-gray);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 3px;
    transition: width 1s ease;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-light);
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
}

.tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-dark);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.event-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.event-card .btn {
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 30px;
}

/* ========== PAST EVENTS ========== */
.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0 60px;
}

.past-event-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.past-event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.past-event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.past-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.past-event-card:hover .past-event-image img {
    transform: scale(1.05);
}

.past-event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7));
}

.event-date-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.past-event-content {
    padding: 25px;
}

.past-event-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.past-event-stats .stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
    background: none;
    border: none;
    padding: 0;
    min-width: auto;
    backdrop-filter: none;
}

.past-event-stats .stat i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0;
}

.past-event-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    min-height: 60px;
}

.past-event-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 70px;
}

.view-gallery {
    width: 100%;
    justify-content: center;
    padding: 10px 20px;
}

.calendar-section {
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 15px;
    margin: 60px 0;
    text-align: center;
}

.calendar-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.calendar-month {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.calendar-month h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.calendar-dates {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calendar-date {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.calendar-date:hover {
    background: var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.calendar-date.event-date {
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.1), rgba(212, 175, 55, 0.1));
    border: 1px solid rgba(128, 0, 32, 0.2);
}

.date-number {
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 40px;
    color: var(--primary-color);
}

.date-event {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.4;
}

.calendar-actions {
    margin-top: 30px;
}

.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(128, 0, 32, 0.05), rgba(212, 175, 55, 0.05));
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 1px solid rgba(128, 0, 32, 0.1);
}

.testimonial-content {
    position: relative;
}

.testimonial-content i.fa-quote-left {
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 2.5rem;
    color: rgba(128, 0, 32, 0.1);
    z-index: 1;
}

.testimonial-content p {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-section {
    padding: 80px 0;
    background: #fff;
    color: var(--text-dark);
    text-align: center;
}

.cta-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

.payment-summary {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.payment-summary h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.payment-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
}

.payment-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    margin-top: 20px;
}

.btn-block:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(128, 0, 32, 0.2);
}

.event-details-modal {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate__animated {
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

@media (max-width: 1200px) {
    .event-grid {
        grid-template-columns: 280px 1fr;
    }
}

@media (max-width: 992px) {
    .page-title {
        font-size: 3rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .stat {
        min-width: 130px;
        padding: 15px 20px;
    }
    
    .event-grid {
        grid-template-columns: 1fr;
    }
    
    .event-date-section {
        flex-direction: row;
        justify-content: space-around;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .event-date-circle {
        margin-bottom: 0;
    }
    
    .countdown-timer {
        margin-bottom: 0;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .past-events-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .calendar-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .header-stats {
        gap: 20px;
    }
    
    .stat {
        min-width: 120px;
        padding: 15px;
    }
    
    .event-filters {
        position: static;
    }
    
    .event-date-ribbon {
        top: 15px;
        right: -30px;
        padding: 6px 35px;
        font-size: 0.8rem;
    }
    
    .event-date-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .event-content-main {
        padding: 30px;
    }
    
    .event-title {
        font-size: 1.8rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .btn-share {
        margin-left: 0;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card-content {
        padding: 25px;
        padding-top: 70px;
    }
    
    .calendar-section {
        padding: 40px 30px;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .header-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat {
        width: 100%;
        max-width: 200px;
    }
    
    .filter-container {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .featured-event-wrapper {
        margin: 20px -15px;
        border-radius: 0;
    }
    
    .event-content-main {
        padding: 25px 20px;
    }
    
    .event-title {
        font-size: 1.5rem;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card-content, .past-event-content {
        padding: 20px;
    }
    
    .past-event-image {
        height: 180px;
    }
    
    .calendar-section {
        padding: 30px 20px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
}