﻿main {
    gap: 0;
}

.okd-header {
    background: #ffd900;
    border-radius: 20px;
    padding: 25px 48px;
}

.logo-box {
    position: relative;
}

.logo-center {
    margin: 0 auto;
    text-align: center;
    margin-top: -100px;
    padding-right: 5%;
}

.logo-center img {
    width: 180px;
    height: auto;
}

/* =========================
   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: 18px;
    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 {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 28px 22px 32px 84px;
    display: flex;
    gap: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    align-items: flex-start;
    justify-content: flex-start;
    width: 80%;
    margin: 0 auto;
}

/* LEFT */
.featured-left {
    position: relative;
    padding-left: 1%;
    width: 40%;
}

.featured-slider {
    position: relative;
}

.featured-slider .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    text-align: center;
}

.featured-slider .slide.active {
    opacity: 1;
    position: relative;
    text-align: center;
}

.featured-slider img {
    height: auto;
    border-radius: 20px;    
    max-height: 400px;
    width: auto;
}

/* dots */
.slider-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,.6);
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #ffd900;
}

/* RIGHT */
.featured-right {
    width: 60%;
    padding-top: 1%;
}

.featured-right .event-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.featured-right .event-date {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-right .event-date i {
    padding-right: 10px;
}

.featured-right .event-venue {
    font-size: 28px;
    margin-bottom: 24px;
}

.featured-right .event-venue i {
    padding-right: 10px;
}

.btn-buy-now {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    font-weight: 800;
    padding: 12px 34px;
    border-radius: 999px;
    text-decoration: none;
}

/* ---------- Category Menu ---------- */
.showbiz-category {
    display: flex;
    justify-content: center;
    gap: 62px;
}

.category-btn {
    color: #fff;
    font-weight: 800;
    font-size: 24px;
    padding: 16px 52px;
    border-radius: 999px;
    text-decoration: none;
}

.category-btn.active {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 6px 14px rgba(254,229,2,.35);
}

.category-btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 6px 14px rgba(254,229,2,.35);
}

/* =========================
   SHOWBIZ MENU SECTION
   ========================= */

.showbiz-menu-section {
    position: relative;
    z-index: 5;
}

/* ---------- Black Curved Background ---------- */
.showbiz-black-bg {
    background: url('/images/bg_bizmenu.png') no-repeat top center;
    background-size: 100% auto;
    padding-top: 1.5%;
    padding-bottom: 1%;
    text-align: center;
    margin-top: 50px;
}

/* ---------- 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-circle img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.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;
}

/* =========================
   SHOWBIZ EVENT LIST
   ========================= */

.showbiz-event-section {
    background: #f3f3f3;
    padding: 60px 0 80px;
}

/* ---------- Grid ---------- */
.showbiz-event-grid {
    display: grid;
    grid-template-columns: repeat(3, 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: 200px;
    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-date i {
    padding-right: 8px;
}

.event-venue {
    font-size: 14px;
    margin-bottom: 14px;
}

.event-venue i {
    padding-right: 8px;
}

.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;
}

@media (min-width: 1600px) {
    .featured-event {
        padding: 28px 22px 32px 220px;
    }
}

@media (max-width: 1200px) {
    .featured-event {
        width: 100%;
    }
    .category-btn {
        font-size: 18px;
    }
    .showbiz-event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showbiz-social {
        margin-top: -20px;
        margin-bottom: 40px;
    }
}

/* responsive */
@media (max-width: 991px) {
    .featured-event {
        flex-direction: column;
        width: 100%;
    }

    .featured-left,
    .featured-right {
        width: 100%;
    }

    .featured-right .event-title {
        font-size: 21px;
    }
    .featured-right .event-date {
        font-size: 16px;
    }
    .featured-right .event-venue {
        font-size: 16px;
        margin-bottom: 12px;
    }
    .logo-center {
        margin-top: -10px;
    }
    .btn-buy-now {
        padding: 6px 17px;
        border-radius: 20px;
    }
    .slider-dots {
        bottom: 18px;
    }
}

/* ---------- 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-circle img {
        width: 15px;
        height: 15px;
    }
    .social-sep {
        font-size: 16px;
    }
    .social-text {
        font-size: 16px;
    }
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .showbiz-event-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .event-thumb img {
        width: 140px;
    }
    .event-card {
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .showbiz-event-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-thumb img {
        width: 100%;
        max-width: 200px;
    }
}

.social-circle:hover {
    background-color: var(--primary-color);
}

.event-link {
    text-decoration: none;
    color: var(--text-color);
}

.event-link:hover .event-card {
    transform: translateY(-6px);
}

.featured-slider {
    position: relative;
    overflow: hidden;
}

.slide {
    display: none;
    gap: 44px;
    align-items: flex-start;
    justify-content: flex-start;
}

.slide.active {
    display: flex;
}

.featured-left {
    flex: 0 0 320px;
    width: 320px;
    padding-left: 0;
}

.featured-left img {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    max-height: 400px;
}

.featured-right {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    padding-left: 0;
    text-align: left;
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: flex-start;
}

.featured-right h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 14px;
    line-height: 1.15;
    white-space: nowrap;
}

.featured-right .concert-date {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.featured-right .concert-date i {
    padding-right: 8px;
}

.featured-right .concert-location {
    font-size: 22px;
    margin-bottom: 20px;
}

.featured-right .concert-location i {
    padding-right: 8px;
}

.btn-buy-now {
    font-size: 18px;
    padding: 8px 24px;
    width: fit-content;
    align-self: flex-start;
}
