/* HERO SECTION */
.kk-hero {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    border-bottom: 4px solid #eee;
}

.kk-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.kk-hero-text {
    position: relative;
    width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 3;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.kk-status-badge {
    background: #fff;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}

.kk-status-badge.old {
    background: #ccc;
}

.kk-status-badge.upcoming {
    background: #f3a852;
    color: #fff;
}

.kk-hero-text h1 {
    font-size: 42px;
    margin: 5px 0 15px;
}

.kk-hero-meta {
    font-size: 18px;
    display: flex;
    gap: 20px;
}

/* MAIN CONTENT */
.kk-event-content {
    display: flex;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    gap: 50px;
    padding: 60px 20px;
    align-items: flex-start;
}

/* POSTER LEFT SIDE */
.kk-event-poster {
    flex: 0 0 28%;
}

.kk-event-poster img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.15);
}

/* DETAILS RIGHT SIDE */
.kk-event-details {
    flex: 1;
}

.kk-short-intro {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.kk-description {
    font-size: 18px;
    line-height: 1.7;
    color: white;
    margin-bottom: 30px;
}

/* TICKET BUTTON */
.kk-ticket-btn {
    display: inline-block;
    background: transparent;
    padding: 10px 15px;
    color: #fff;
    border: 1px solid #f3a852;
    border-radius: 10px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    transition: 0.3s ease;
}

.kk-ticket-btn:hover {
    background: #f3a852;
}

.kk-event-details a:hover {
    color: white;
    border-color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .kk-event-content {
        flex-direction: column;
    }

    .kk-hero {
        height: 35vh;
        padding: 30px;
    }

    .kk-hero-text h1 {
        font-size: 30px;
    }

    .kk-hero-meta {
        flex-direction: column;
        gap: 6px;
    }

    .kk-event-poster {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .kk-hero-text h1, .kk-hero-meta div, .kk-hero-text, .kk-hero-text span.kk-status-badge {
        text-align: center !important;
    }
    .kk-short-intro {
        font-size: 18px;
    }
}