/*=========================================================
                    EVENTS PAGE
=========================================================*/

.events-section {
    background: #f8f9fc;
}


/*=========================================================
                    FILTER BUTTONS
=========================================================*/

.events-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.event-filter-btn {
    border: 2px solid #123b6d;
    background: #ffffff;
    color: #123b6d;

    padding: 10px 28px;

    border-radius: 30px;

    font-family: "Poppins", sans-serif;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;
}

.event-filter-btn:hover,
.event-filter-btn.active {
    background: #123b6d;
    color: #ffffff;
}


/*=========================================================
                    EVENT CARD
=========================================================*/

.event-card {

    height: 100%;

    background: #ffffff;

    border-radius: 16px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.event-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.14);
}


/*=========================================================
                    EVENT IMAGE
=========================================================*/

.event-image {

    height: 240px;

    position: relative;

    overflow: hidden;

    background: #eeeeee;
}

.event-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.event-card:hover .event-image img {

    transform: scale(1.06);
}


/*=========================================================
                    DATE BADGE
=========================================================*/

.event-date-badge {

    position: absolute;

    top: 15px;

    left: 15px;

    width: 65px;

    height: 70px;

    background: #ffffff;

    border-radius: 10px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    box-shadow:
        0 5px 15px rgba(0,0,0,.15);
}

.event-day {

    font-size: 25px;

    line-height: 25px;

    font-weight: 700;

    color: #123b6d;
}

.event-month {

    font-size: 13px;

    text-transform: uppercase;

    font-weight: 600;

    color: #e67e22;
}


/*=========================================================
                    STATUS
=========================================================*/

.event-status {

    position: absolute;

    top: 15px;

    right: 15px;

    padding: 7px 12px;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 600;

    color: #ffffff;
}

.event-status.upcoming {

    background: #198754;
}

.event-status.previous {

    background: #6c757d;
}


/*=========================================================
                    CONTENT
=========================================================*/

.event-content {

    padding: 25px;
}

.event-category {

    display: inline-block;

    margin-bottom: 10px;

    padding: 5px 12px;

    border-radius: 20px;

    background: #fff3cd;

    color: #996c00;

    font-size: 12px;

    font-weight: 600;
}

.event-content h3 {

    font-family: "Cinzel", serif;

    color: #123b6d;

    font-size: 22px;

    line-height: 1.4;

    margin-bottom: 15px;
}

.event-content p {

    color: #666;

    line-height: 1.7;

    margin-bottom: 20px;
}


/*=========================================================
                    META
=========================================================*/

.event-meta {

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin-bottom: 18px;

    font-size: 13px;

    color: #555;
}

.event-meta div {

    display: flex;

    align-items: center;

    gap: 8px;
}

.event-meta i {

    color: #e67e22;

    width: 16px;
}


/*=========================================================
                    BUTTON
=========================================================*/

.event-btn {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 18px;

    background: #123b6d;

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-size: 14px;

    font-weight: 600;

    transition: all .3s ease;
}

.event-btn:hover {

    background: #e67e22;

    color: #ffffff;
}


/*=========================================================
                    NO EVENTS
=========================================================*/

.no-events {

    text-align: center;

    padding: 70px 20px;

    color: #777;
}

.no-events i {

    font-size: 55px;

    color: #123b6d;

    margin-bottom: 20px;
}

.no-events h3 {

    color: #123b6d;

    margin-bottom: 10px;
}


/*=========================================================
                    RESPONSIVE
=========================================================*/

@media (max-width: 767px) {

    .events-filter {

        gap: 8px;
    }

    .event-filter-btn {

        padding: 8px 20px;

        font-size: 14px;
    }

    .event-image {

        height: 220px;
    }

    .event-content {

        padding: 20px;
    }

}