﻿/* ==========================
   EVENT DETAILS PAGE
========================== */

.event-details-page{
    padding:70px 0;
    background:#f7f8f6;
}

/* Breadcrumb */

.event-breadcrumb{
    margin-bottom:30px;
    font-size:15px;
    color:#888;
}

.event-breadcrumb a{
    color:#666;
    text-decoration:none;
}

.event-breadcrumb span{
    margin:0 10px;
    color:#bbb;
}

.event-breadcrumb strong{
    color:#157347;
    font-weight:700;
}

/* Main Image */

.event-main-image img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    overflow-y :auto ;
}

/* Section Heading */

.section-heading-sm{
    font-size:30px;
    font-weight:700;
    color:#073b2b;
    margin-bottom:25px;
    display:flex;
    align-items:center;
    gap:12px;
}

.section-heading-sm i{
    color:#198754;
}

/* About Box */

.event-content-box{
    background:#fff;
    padding:35px;
    border-radius:22px;
    margin-top:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.event-content-box p{
    font-size:17px;
    line-height:1.9;
    color:#555;
}

/* Gallery */

.event-gallery-box{
    background:#fff;
    padding:35px;
    border-radius:22px;
    margin-top:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.gallery-img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:18px;
    transition:.4s;
    cursor:pointer;
    margin-top :20px;
}

.gallery-img:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.gallery-btn{
    display:inline-block;
    padding:12px 28px;
    background:#f4f4f4;
    border-radius:50px;
    color:#333;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.gallery-btn:hover{
    background:#198754;
    color:#fff;
}

/* Highlights */

.event-highlights{
    margin-top:35px;
}

.highlight-card{
    background:#fff;
    border-radius:20px;
    text-align:center;
    padding:25px 15px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.highlight-card:hover{
    transform:translateY(-8px);
}

.highlight-card .icon{
    width:65px;
    height:65px;
    margin:auto;
    margin-bottom:15px;
    border-radius:50%;
    background:rgba(25,135,84,.1);
    display:flex;
    align-items:center;
    justify-content:center;
}

.highlight-card .icon i{
    font-size:28px;
    color:#198754;
}

.highlight-card h3{
    color:#198754;
    font-size:34px;
    font-weight:800;
    margin-bottom:5px;
}

.highlight-card p{
    margin:0;
    color:#666;
    font-size:14px;
}

/* =====================
   RIGHT SIDE
===================== */

.event-summary-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    position:relative;
    overflow:hidden;
}

.event-summary-card:after{
    content:'';
    position:absolute;
    right:-50px;
    bottom:-50px;
    width:220px;
    height:220px;
    background:rgba(25,135,84,.03);
    border-radius:50%;
}

.event-badge{
    display:inline-block;
    background:#edf8f0;
    color:#198754;
    font-size:13px;
    font-weight:700;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.event-summary-card h1{
    font-size:52px;
    line-height:1.15;
    margin-bottom:15px;
    color:#042d1e;
    font-weight:800;
}

.event-summary-card h4{
    color:#444;
    font-size:24px;
    font-weight:500;
    margin-bottom:30px;
}

/* Meta */

.event-meta{
    border-top:1px solid #eee;
    border-bottom:1px solid #eee;
    padding:25px 0;
    margin-bottom:25px;
}

.meta-item{
    display:flex;
    align-items:center;
    margin-bottom:18px;
}

.meta-item:last-child{
    margin-bottom:0;
}

.meta-item i{
    width:45px;
    height:45px;
    background:#edf8f0;
    border-radius:50%;
    color:#198754;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:15px;
}

.meta-item span{
    color:#555;
    font-weight:600;
}

/* Event Buttons */

.event-actions{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-outline-event{
    border:2px solid #198754;
    color:#198754;
    padding:15px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-outline-event:hover{
    background:#198754;
    color:#fff;
}

/* Details Card */

.event-detail-card{
    margin-top:30px;
    background:#f2f7f2;
    border-radius:22px;
    padding:35px;
}

.event-detail-card h3{
    margin-bottom:25px;
    color:#073b2b;
    font-weight:700;
}

.event-detail-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.event-detail-card li{
    padding:15px 0;
    border-bottom:1px solid rgba(0,0,0,.08);
}

.event-detail-card li:last-child{
    border-bottom:none;
}

.event-detail-card strong{
    display:block;
    color:#222;
    margin-bottom:5px;
}

.event-detail-card span{
    color:#666;
}

/* CTA BOX */

.event-cta-box{
    margin-top:30px;
    background:linear-gradient(
    135deg,
    #003e2c,
    #0b6847,
    #003e2c
    );

    border-radius:24px;
    padding:40px;
    text-align:center;
    color:#fff;
}

.cta-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
}

.cta-icon i{
    font-size:40px;
    color:#ffd54f;
}

.event-cta-box h3{
    color:#fff;
    margin-bottom:15px;
    font-size:32px;
    font-weight:700;
}

.event-cta-box p{
    color:#e7e7e7;
    line-height:1.8;
    margin-bottom:25px;
}

/* =====================
   Responsive
===================== */

@media(max-width:991px){

.event-summary-card{
    margin-top:30px;
}

.event-main-image img{
    height:550px;
}

.event-summary-card h1{
    font-size:36px;
}

.section-heading-sm{
    font-size:24px;
}

}

@media(max-width:767px){

.event-details-page{
    padding:40px 0;
}

.event-main-image img{
    height:360px;
}

.event-summary-card h1{
    font-size:30px;
}

.highlight-card{
    margin-bottom:20px;
}

.gallery-img{
    margin-bottom:20px;
}

.event-actions{
    flex-direction:column;
}

.btn-outline-event,
.btn-default{
    width:100%;
    text-align:center;
}

}