.event-details-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff
}

.event-details-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5)
}

.event-details-hero .container {
    position: relative;
    z-index: 1
}

.event-content-section {
    padding: 80px 0
}

.event-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px
}

.event-main-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color)
}

.event-meta-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500
}

.meta-item i {
    color: var(--primary);
    font-size: 1.2rem
}

.event-description {
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px
}

.event-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px
}

.event-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px
}

.event-sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    position: sticky;
    top: 100px
}

.btn-book-stay,
.btn-official {
    display: block;
    width: 100%;
    padding: 15px;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    font-weight: 600
}

.sidebar-info h5 {
    margin-bottom: 15px;
    font-size: 1.1rem
}

.info-list {
    list-style: none;
    margin-bottom: 25px
}

.info-list li {
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    font-size: .95rem
}

.info-list li i {
    color: var(--primary);
    width: 20px
}

.btn-official {
    background: var(--primary-color);
    margin-bottom: 15px
}

.btn-book-stay {
    background: var(--primary)
}

@media (max-width:991px) {
    .event-details-grid {
        grid-template-columns: 1fr
    }

    .event-sidebar-card {
        position: static
    }
}