.page-title {
    font-family: 'Pangolin', cursive;
    color: #4E342E;
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    margin: 80px;
    position: relative;
}

.page-description {
    font-family: 'Nunito';
    color: #4E342E;
    font-size: 22px;
    text-align: center;
    line-height: 1.8;
    padding-bottom: 40px;
}

.filter-section {
    background: #2e7d32;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(78, 52, 46, 0.08);
    position: sticky;
    top: 20px;
    border: 1px solid rgba(249, 168, 37, 0.1);
    backdrop-filter: blur(10px);
}

.filter-title {
    font-family: 'Pangolin', cursive;
    color: #f9a825;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.filter-label {
    font-family: 'Nunito', sans-serif;
    color: #f9a825;
    font-size: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.form-control {
    border: 2px solid rgba(78, 52, 46, 0.1);
    border-radius: 12px;
    font-family: 'Nunito';
    padding: 15px 18px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.form-control:focus {
    border-color: #F9A825;
    box-shadow: 0 0 0 0.2rem rgba(249, 168, 37, 0.25);
    background: #FFFFFF;
    transform: translateY(-2px);
}

.filter-btn {
    background: linear-gradient(135deg, #4E342E, #3E2723);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    padding: 15px 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.event-card {
    display: flex;
    background: #FFFFFF;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(78, 52, 46, 0.1);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid rgba(249, 168, 37, 0.1);
    position: relative;
}

.event-image {
    width: 280px;
    height: auto;
    overflow: hidden;
    background: linear-gradient(135deg, #2E7D32, #388E3C);
    position: relative;
    flex-shrink: 0;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: brightness(0.9);
}

.event-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.event-date {
    color: #2E7D32;
    font-family: 'Nunito';
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #F9A825;
    background-clip: text;
}

.event-title {
    font-family: 'Pangolin', cursive;
    color: #4E342E;
    font-weight: 600;
    font-size: 24px;
    margin-bottom: 5px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.event-card:hover .event-title {
    color: #F9A825;
}

.event-description {
    font-family: 'Nunito';
    color: #2E7D32;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 5px;
}

.event-link {
    color: #F9A825;
    font-family: 'Nunito';
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 0;
    display: inline-block;
    width: fit-content;
}

.event-link:hover {
    color: #3E2723;
    transform: translateX(5px);
}

.no-events {
    text-align: center;
    padding: 80px 20px;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(78, 52, 46, 0.1);
    border: 2px dashed rgba(249, 168, 37, 0.3);
}

.no-events i {
    font-size: 5rem;
    color: #F9A825;
    margin-bottom: 25px;
    opacity: 0.7;
    animation: pulse 2s infinite;
}

.no-events p {
    font-family: 'Nunito';
    color: #4E342E;
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    padding: 20px 0;
}

.pagination {
    display: flex;
    gap: 8px;
    background: #FFFFFF;
    padding: 15px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(78, 52, 46, 0.1);
}

.pagination .page-item .page-link {
    color: #4E342E;
    border: 2px solid rgba(78, 52, 46, 0.1);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 45px;
    text-align: center;
    background: #FFFFFF;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #4E342E, #3E2723);
    border-color: #4E342E;
    color: #FFFFFF;
    transform: scale(1.1);
}

.pagination .page-link:hover {
    background: linear-gradient(135deg, #F9A825, #FFB74D);
    border-color: #F9A825;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 168, 37, 0.3);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }

    .page-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .filter-section {
        margin-bottom: 30px;
        position: static;
        padding: 25px;
    }

    .event-card {
        flex-direction: column;
        margin-bottom: 25px;
    }

    .event-image {
        width: 100%;
        height: 220px;
    }

    .event-content {
        padding: 25px;
    }

    .event-title {
        font-size: 1.4rem;
    }

    .event-description {
        font-size: 15px;
    }

    .no-events {
        padding: 60px 20px;
    }

    .no-events i {
        font-size: 4rem;
    }

    .no-events p {
        font-size: 18px;
    }

    .pagination {
        padding: 12px 20px;
        gap: 6px;
    }

    .pagination .page-item .page-link {
        padding: 10px 15px;
        font-size: 14px;
        min-width: 40px;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }

    .page-description {
        font-size: 15px;
    }

    .filter-section {
        padding: 20px;
    }

    .event-content {
        padding: 20px;
    }

    .event-title {
        font-size: 1.2rem;
    }

    .event-description {
        font-size: 14px;
    }

    .event-link {
        font-size: 13px;
    }

    .pagination .page-item .page-link {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 35px;
    }
}