/* Detail Page Specific CSS */
        .event-detail-hero {
            background: linear-gradient(rgba(58, 61, 116, 0.9), rgba(58, 61, 116, 0.9)), url('assets/image/banner1.jpeg');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            text-align: center;
        }

        .event-main-content {
            padding: 80px 0;
            background: #fff;
        }

        .event-content-text {
            font-size: 17px;
            line-height: 1.8;
            color: #444;
            margin-bottom: 40px;
        }

        .event-meta-info {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 20px;
            border-left: 5px solid #e31e24;
            height: fit-content;
        }

        .meta-item {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .meta-item i {
            color: #3a3d74;
            font-size: 20px;
            width: 25px;
        }

        /* Gallery Grid */
        .event-gallery-section {
            padding-bottom: 80px;
        }

        .gallery-title {
            font-weight: 800;
            color: #3a3d74;
            margin-bottom: 40px;
            position: relative;
            padding-bottom: 15px;
        }

        .gallery-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: #e31e24;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            cursor: pointer;
            height: 250px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(58, 61, 116, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: 0.3s;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: white;
            font-size: 30px;
        }
/* Back button premium styling */
.back-to-events {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #ccc;
    color: white;
    background-color: #3a3d74;
    transition: all 0.3s ease;
}

.back-to-events:hover {
    background-color: #e31e24 !important;
    color: #ffffff !important;
    border-color: #3a3d74;
    transform: translateX(-3px);
}

/* Sidebar sticky logic for Desktop */
@media (min-width: 992px) {
    .event-meta-info {
        position: sticky;
        top: 110px; 
    }
}