/* ===================================
   EVENTS PAGE
=================================== */

.events-hero{
    background:linear-gradient(rgba(225,96,15,.90),rgba(225,96,15,.90)),
    url('../images/events/banner.jpg');
    background-size:cover;
    background-position:center;
    padding:120px 20px;
    text-align:center;
    color:#fff;
}

.events-hero h1{
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
}

.events-hero p{
    max-width:850px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
}

.events-section{
    padding:80px 0;
    background:#f9fafc;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    color:#0f172a;
    margin-bottom:10px;
}

.section-title p{
    color:#666;
}

.events-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.event-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.event-card:hover{
    transform:translateY(-8px);
}

.event-image{
    position:relative;
}

.event-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

.event-date{
    position:absolute;
    top:15px;
    right:15px;
    background:#E1600F;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.event-content{
    padding:25px;
}

.event-content h3{
    color:#0f172a;
    margin-bottom:15px;
    font-size:22px;
}

.event-content p{
    color:#666;
    line-height:1.8;
}

@media(max-width:991px){

.events-grid{
    grid-template-columns:repeat(2,1fr);
}

.events-hero h1{
    font-size:42px;
}

}

@media(max-width:768px){

.events-grid{
    grid-template-columns:1fr;
}

.events-hero{
    padding:90px 20px;
}

.events-hero h1{
    font-size:32px;
}

.events-hero p{
    font-size:15px;
}

.event-image img{
    height:220px;
}

}