/* ─────────────────────────────────────────────
   Event Single Detail Page CSS
   ───────────────────────────────────────────── */

.event-single-main {
    background: #ffffff;
    padding-top: 60px;
    padding-bottom: 60px;
}

/* ── Back Link ── */
.event-single-back-wrapper {
    margin-bottom: 24px;
}

.event-single-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4D3766 !important;
    text-decoration: none !important;
    transition: color 0.2s ease, transform 0.2s ease;
}

.event-single-back-link:hover {
    color: #4D3766 !important;
    transform: translateX(-4px);
}

.event-single-back-link span[uk-icon] {
    transition: transform 0.2s ease;
}

/* ── Slideshow ── */
.event-slideshow-container {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
}

.event-slideshow-container .uk-slideshow-items {
    box-shadow: 0 15px 40px rgba(77, 55, 102, 0.08);
    border: 1px solid rgba(77, 55, 102, 0.05);
}

/* Rounded Slideshow Nav Buttons (Purple ovals matching design) */
.event-slideshow-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px !important;
}

.event-slideshow-btn {
    /* display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 36px;
    border-radius: 18px;
    background-color: #4D3766;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(77, 55, 102, 0.15);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
    text-decoration: none !important; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 32px;
    border-radius: 999px;
    background: #5d4a7a;
    color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    box-shadow: 0 4px 12px rgba(77, 55, 102, 0.12);
}

.event-slideshow-btn:hover {
    /* background-color: #fed305;
    color: #4D3766 !important; */
    background: #4D3766;
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(77, 55, 102, 0.25);
}

.event-slideshow-btn:active {
    transform: scale(0.94);
}

/* ── Event Details ── */
.event-single-details-wrapper {
    max-width: 580px;
    margin-top: 20px;
}

.event-single-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.35;
    color: #4D3766 !important;
    margin: 0 0 20px 0;
}

/* Meta Details Row */
.event-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(77, 55, 102, 0.08);
    padding-bottom: 20px;
}

.event-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(77, 55, 102, 0.6);
}

.event-copy-link {
    cursor: pointer;
    transition: color 0.2s ease;
    user-select: none;
}

.event-copy-link:hover {
    color: #fed305;
}

.event-copy-link.copied {
    color: #10b981;
    /* Success Green */
}

/* Description Content */
.event-single-content {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(77, 55, 102, 0.9);
}

.event-single-content p {
    margin-bottom: 24px;
}

.event-single-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Scaling */
@media (max-width: 959px) {
    .event-single-main {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .event-single-details-wrapper {
        margin-top: 40px;
        max-width: 100%;
    }

    .event-slideshow-container {
        max-width: 100%;
    }

    .event-single-title {
        font-size: 28px;
    }
}