﻿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: -50px;
    padding-right: 5%;
}

.logo-center img {
    width: 180px;
    height: auto;
}

.okd-description {
    margin: 18px auto 0;
    max-width: 680px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
    text-align: center;
    letter-spacing: 0.2px;
}

/* =========================
   OKD TOP LAYOUT (two-column)
   ========================= */

.okd-top-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 0 2%;
}

.okd-desc-side {
    flex: 0 0 32%;
    max-width: 32%;
}


.okd-desc-heading {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1px;
    margin: 16px 0 14px;
}

.okd-desc-side .okd-description {
    text-align: left;
    margin: 0;
    max-width: none;
    font-size: clamp(14px, 1.1vw, 18px);
}

.okd-event-side {
    flex: 0 0 68%;
    max-width: 68%;
    min-width: 0;
}

.okd-event-side .featured-event {
    width: 100%;
    margin: 0;
}

/* =========================
   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 32px 32px;
    display: flex;
    gap: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    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 {
    flex-shrink: 0;
    width: 200px;
    height: 267px;
}

.event-thumb img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    display: block;
}

.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 (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 {
        width: 140px;
        height: 187px;
    }

    .event-thumb img {
        width: 140px;
        height: auto;
    }
    .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 {
        width: 100%;
        max-width: 200px;
        height: 267px;
    }

    .event-thumb img {
        width: 100%;
        height: auto;
    }
}

.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 280px;
    width: 280px;
    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.25;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.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;
}

@media (max-width: 767.98px) {
    html,
    body {
        overflow-x: hidden;
    }

    .music-label-wrapper {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .padding-right {
        padding-right: 0 !important;
    }

    .logo-center {
        margin-top: -10px;
        padding-right: 0;
    }

    .logo-center img {
        width: 140px;
    }

    .okd-description {
        font-size: 14px;
        margin-top: 14px;
        padding: 0 10px;
    }

    .okd-top-layout {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .okd-desc-side {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .okd-desc-side .okd-description {
        text-align: center;
        font-size: 14px;
    }

    .okd-desc-heading {
        text-align: center;
    }

    .okd-event-side {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .featured-event {
        width: 100%;
        padding: 18px;
        border-radius: 20px;
        display: block;
        margin: 0 auto;
    }

    .featured-slider {
        overflow: visible;
    }

    .featured-slider .slide,
    .slide {
        gap: 18px;
        align-items: stretch;
    }

    .featured-slider .slide.active,
    .slide.active {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .featured-left {
        flex: 0 0 auto;
        width: 100%;
        padding-left: 0;
    }

    .featured-left img,
    .featured-slider img {
        width: 100%;
        max-width: none;
        max-height: none;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        border-radius: 16px;
    }

    .featured-right {
        width: 100%;
        padding-top: 0;
        text-align: left;
    }

    .featured-right h2 {
        font-size: 24px;
        line-height: 1.2;
        white-space: normal;
        margin-bottom: 12px;
    }

    .featured-right .concert-date,
    .featured-right .concert-location {
        font-size: 16px;
        line-height: 1.45;
    }

    .featured-right .concert-location {
        margin-bottom: 16px;
    }

    .btn-buy-now {
        font-size: 15px;
        padding: 8px 22px;
        align-self: flex-start;
    }

    .slider-dots {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 18px;
    }

    .showbiz-black-bg {
        width: 100%;
        max-width: 100%;
        overflow: visible;
        background: url('/images/bg_bizmenu.png') no-repeat top center;
        background-size: 100% 100%;
        border-radius: 0;
        margin-top: 92px;
        padding: 52px 0 10px;
    }

    .showbiz-social {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        padding: 0 44px;
        max-width: 100%;
        margin-top: -86px;
        margin-bottom: 14px;
        min-height: 46px;
    }

    .social-circle {
        margin: 0;
        flex: 0 0 32px;
    }

    .social-sep {
        margin: 0 6px;
    }

    .social-text {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .showbiz-category {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        margin-top: 50px;
    }

    .category-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-width: 0;
        padding: 12px 16px;
        white-space: normal;
        text-align: center;
    }

    .showbiz-event-section {
        overflow-x: hidden;
    }

    .showbiz-event-grid {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
}
