﻿main {
    gap: 0;
}

.okd-header {
    background: #ffd900;
    border-radius: 20px;
    padding: 25px 48px;
}

/* =========================
   OKD SHOWBIZ PAGE
   ========================= */

.our-business {
    background: #f3f3f3;
    padding-bottom: 60px;
    font-family: 'Inter', 'Prompt', sans-serif;
}

/* ---------- Header ---------- */
.page-header {
    padding: 20px 0;
}

.back-link {
    font-weight: 700;
    color: #000;
    text-decoration: none;
    font-size: 18px;
}

/* ---------- Highlight ---------- */
.business-highlight {
    margin-bottom: 40px;
}

.highlight-box {
    background: #ffd900;
    border-radius: 20px;
    padding: 40px 48px;
    position: relative;
}

.highlight-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.highlight-desc {
    font-size: 16px;
    line-height: 1.6;
    max-width: 720px;
}


/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
}

.btn-yellow {
    background: #ffd900;
    color: #000;
}

.btn-outline {
    border: 2px solid #000;
    color: #000;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .featured-card {
        flex-direction: column;
    }

    .featured-image img {
        width: 100%;
    }

    .event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .event-grid {
        grid-template-columns: 1fr;
    }

    .highlight-title {
        font-size: 36px;
    }
}

/* =========================
   FEATURED EVENT
   ========================= */

.featured-event {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    gap: 40px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    align-items: flex-start;
}

/* LEFT */
.featured-left {
    position: relative;
    padding-left: 1%;
    width: 50%;
}

.featured-slider {
    position: relative;
}

.featured-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.featured-slider .slide.active {
    opacity: 1;
    position: relative;
}

.featured-slider img {
    height: auto;
    border-radius: 20px;    
    max-width: 800px;
    height: auto;
    width: 100%;
}

/* dots */
.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.6);
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #ffd900;
}

/* RIGHT */
.featured-right {
    width: 50%;
    padding-top: 1%;
}

.featured-right .event-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.featured-right .event-date {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-right .event-venue {
    font-size: 36px;
    margin-bottom: 24px;
}

.btn-buy-now {
    display: inline-block;
    background: #ffd900;
    color: #000;
    font-weight: 800;
    padding: 12px 34px;
    border-radius: 999px;
    text-decoration: none;
}

/* responsive */
@media (max-width: 991px) {
    .featured-event {
        flex-direction: column;
    }

    .featured-left,
    .featured-right {
        width: 100%;
    }

    .featured-right .event-title {
        font-size: 28px;
    }
    .featured-right .event-date {
        font-size: 28px;
    }
    .featured-right .event-venue {
        font-size: 28px;
    }
}

/* =========================
   SHOWBIZ MENU SECTION
   ========================= */

.showbiz-menu-section {
    position: relative;
    z-index: 5;
}

/* ---------- Black Curved Background ---------- */
.showbiz-black-bg {
    background: linear-gradient(to bottom, #000000 0%, #2a2a2a 50%, #444444 100%);
    padding-bottom: 1%;
    text-align: center;
}

/* ---------- Social ---------- */
.showbiz-social {
    margin-bottom: 80px;
}

.social-circle {
    width: 42px;
    height: 42px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 6px;
    font-size: 24px;
    text-decoration: none;
}

.social-sep {
    color: #000;
    margin: 0 14px;
    font-size: 24px;
    font-weight: 700;
}

.social-text {
    color: #000;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: .6px;
}

/* ---------- Category Menu ---------- */
.showbiz-category {
    display: flex;
    justify-content: center;
    gap: 62px;
    padding-top: 20px;
    padding-bottom: 5px;
}

.category-btn {
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    padding: 16px 52px;
    border-radius: 999px;
    text-decoration: none;
    transition: background .25s, box-shadow .25s, filter .15s;
}

.category-btn.active {
    background: linear-gradient(180deg, #FFF089 0%, #FEE502 100%);
    color: #000;
    box-shadow: 0 6px 14px rgba(254,229,2,.35);
}

.category-btn:hover {
    background: linear-gradient(180deg, #FFF089 0%, #FEE502 100%);
    color: #000;
    box-shadow: 0 6px 14px rgba(254,229,2,.35);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .showbiz-category {
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 40px;
    }

    .category-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .showbiz-black-bg {
        margin-top: 50px;
        padding-bottom: 10px;
    }

    .showbiz-social {        
        margin-bottom: 20px;
        margin-top: -40px;        
    }
    .social-circle {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .social-sep {
        font-size: 16px;
    }
    .social-text {
        font-size: 16px;
    }
}

/* =========================
   SHOWBIZ EVENT LIST
   ========================= */

.showbiz-event-section {
    background: #f3f3f3;
    padding: 40px 0 50px;
    margin-top:50px;
}

/* ---------- Grid ---------- */
.showbiz-event-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ---------- Card ---------- */
.event-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    gap: 30px;
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.event-thumb img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.event-content {
    flex: 1;
}

.event-title {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
}

.event-date {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.event-venue {
    font-size: 14px;
    margin-bottom: 14px;
}

.btn-more {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    border: 2px solid #000;
    font-weight: 700;
    font-size: 13px;
    color: #000;
    text-decoration: none;
}

/* ---------- Pagination ---------- */
.showbiz-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.page-box {
    width: 42px;
    height: 42px;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    text-decoration: none;
    color: #000;
    border-radius: 6px;
}

.page-box.active {
    background: #000;
    color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {    
    .showbiz-event-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 5%;
    }
    .event-thumb img {
        width: 100%;
    }
    .event-card {
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .showbiz-event-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-thumb img {
        width: 100%;
        max-width: 200px;
    }
}
