/* css/events.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    color:#111;
}

.events-page{
    padding:40px 60px;
}

.events-container{
    display:flex;
    gap:40px;
    align-items:flex-start;
}

/* SIDEBAR */

.filters-sidebar{
    width:330px;
}

.expand-filter{
    border:1px solid #d8d8d8;
    border-radius:18px;
    padding:18px 22px;
    font-weight:600;
    font-size:15px;
    background:#fff;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    gap:15px;
    cursor:pointer;
}

.filter-box{
    background:#fff;
    border:1px solid #ddd;
    border-radius:18px;
    padding:25px;
    margin-bottom:18px;
}

.filter-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.filter-header h3{
    font-size:20px;
    font-weight:600;
}

.filter-header i{
    font-size:10px;
}

.filter-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
    font-size:15px;
    cursor:pointer;
}

.filter-item input{
    width:18px;
    height:18px;
}

.apply-btn{
    background:#1565ff;
    color:#fff;
    border:none;
    padding:12px 22px;
    border-radius:6px;
    font-size:10px;
    cursor:pointer;
    margin-top:10px;
}

.date-group{
    margin-bottom:20px;
}

.date-group label{
    display:block;
    color:#ff6b2d;
    font-size:18px;
    margin-bottom:8px;
    font-weight:600;
}

.date-group input{
    width:100%;
    padding:12px;
    border:none;
    border-bottom:1px solid #ccc;
    font-size:10px;
    background:transparent;
}

/* EVENTS CONTENT */

.events-content{
    flex:1;
}

.events-title{
    font-size:30px;
    font-weight:500;
    margin-bottom:30px;
}

.events-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.event-card{
    background:#fff;
    box-shadow:0 4px 18px rgba(0,0,0,0.08);
}

.event-image{
    position:relative;
    overflow:hidden;
}

.event-image img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

.event-date{
    position:absolute;
    bottom:18px;
    left:25px;
    color:#fff;
    font-size:25px;
    font-weight:700;
}

.event-content{
    padding:30px;
}

.event-content h3{
    font-size:24px;
    line-height:1.5;
    color:#003d82;
    margin-bottom:18px;
}

.event-mode{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:25px;
}

.line{
    width:2px;
    height:28px;
    background:#ff6b2d;
}

.mode-text{
    color:#0095da;
    font-size:18px;
    font-weight:600;
}

.event-content p{
    font-size:10px;
    line-height:2;
    color:#222;
    margin-bottom:35px;
}

.view-more{
    color:#ff6b2d;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
}

.view-more i{
    margin-left:10px;
}

/* RESPONSIVE */

@media(max-width:1200px)
{
    .events-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:992px)
{
    .events-container{
        flex-direction:column;
    }

    .filters-sidebar{
        width:100%;
    }
}

@media(max-width:768px)
{
    .events-page{
        padding:20px;
    }

    .events-title{
        font-size:34px;
    }

    .event-image img{
        height:250px;
    }

    .event-date{
        font-size:18px;
    }

    .filter-header h3{
        font-size:24px;
    }

    .filter-item{
        font-size:18px;
    }
}