/* Breadcrumb style */
.page-header {
    background-color: #041E3E;
    padding: 35px 0;
    text-align: center;
}

.page-header__inner h2 {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.thm-breadcrumb__box {
    display: inline-block;
    margin-top: 10px;
}

.thm-breadcrumb {
    display: flex;
    gap: 5px;
    font-size: 16px;
    color: #666;
}

.thm-breadcrumb li {
    display: inline;
    color: #d7d7d7;
}

.thm-breadcrumb li a {
    color: #ffffff;
    text-decoration: none;
}

.thm-breadcrumb li a:hover {
    text-decoration: underline;
}

.thm-breadcrumb li span {
    color: #d7d7d7;
}

/* breadcrumb style end */

/* News style start */
.news-section {
    padding: 50px 0 0;
}

.news-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    transition: transform 0.3s ease;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.news-image {
    height: 170px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 8px 0 0 8px;
}

@media (max-width: 768px) {
    .news-image {
        height: auto !important;
    }
}

.news-content {
    padding: 20px;
    flex: 1;
}

.news-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #0ac9d9;
}

.news-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.news-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.news-read-more {
    font-size: 14px;
    color: #0ac9d9;
    text-decoration: none;
    font-weight: bold;
}

.news-read-more:hover {
    text-decoration: underline;
}

/* news style end */

/* info style start */
.info-section {
    padding: 50px 0 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.info-section__inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.info-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.info-icon {
    font-size: 40px;
    color: #ffc307;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.info-box:hover .info-icon {
    color: #0cc2d6;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.info-box p {
    font-size: 18px;
    color: #666;
}

.coming-soon-container {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    text-align: center;
    flex-direction: column;
}

.coming-soon-container h1 {
    font-size: 64px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    animation: fadeInUp 1s ease forwards, bounce 2s infinite;
}


@media(max-width:756px) {
.coming-soon-container h1 {
    font-size: 36px;
    letter-spacing: 1px;
}
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

            
/* info style end */

/* Show Lineup style start */

.tabs {
    margin-top: 30px;
}

.tab-titles {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.tab-titles li {
    padding: 10px 20px;
    cursor: pointer;
    background: #f4f4f4;
    margin: 0 5px;
    border-radius: 5px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-titles li.active,
.tab-titles li:hover {
    background: #34d0d9;
    color: #fff;
}

.tab-content .tab {
    display: none;
    margin-top: 20px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
}

.tab-content .tab.active {
    display: block;
}

.event-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #f9f9f9;
    border-radius: 5px;
    overflow: hidden;
}

.event-table th,
.event-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.event-table th {
    background: #34d0d9;
    color: #fff;
}

.artists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.artist {
    text-align: center;
}

.artist img {
    width: 75px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.artist span {
    display: block;
    margin-top: 5px;
    font-weight: bold;
}

.price-details {
    margin-top: 20px;
    display: flex;
    font-size: 1.2em;
    gap: 30px;
    align-items: baseline;
}

@media (max-width: 768px) {

    .price-details {
        flex-direction: column;
        align-items: center;
    }
}

.price {
    font-weight: bold;
    color: #34d0d9;
}

.book-now {
    display: inline-block;
    padding: 10px 20px;
    background: #34d0d9;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    margin-top: 10px;
}

.book-now:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* show lineup end */

/* info page style */
.tab-section-modern {
    margin: 30px 0;
    background: linear-gradient(120deg, #f8fafc 0%, #fff 100%);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(80, 80, 180, 0.07);
    padding: 40px 0;
}

.tab-section__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.modern-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.modern-tabs {
    display: flex;
    flex-wrap: wrap;
    border: none;
    gap: 8px;
    background: transparent;
}

.modern-tabs .nav-link {
    border: none;
    background: #d6dcdd;
    color: #222;
    font-weight: 600;
    border-radius: 18px;
    padding: 14px 32px;
    margin-right: 0;
    box-shadow: 0 2px 12px rgba(80, 80, 180, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    transition:
        background 0.3s cubic-bezier(.4, 2, .6, 1),
        color 0.3s cubic-bezier(.4, 2, .6, 1),
        transform 0.2s cubic-bezier(.4, 2, .6, 1),
        box-shadow 0.3s;
    overflow: hidden;
    z-index: 1;
}

.modern-tabs .nav-link:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #041e3e 0%, #022857 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
    border-radius: 18px;
}

.modern-tabs .nav-link.active,
.modern-tabs .nav-link:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 6px 24px rgba(124, 92, 255, 0.13);
}

.modern-tabs .nav-link.active:before,
.modern-tabs .nav-link:hover:before {
    opacity: 1;
}

.modern-tabs .tab-icon {
    font-size: 1.4em;
    transition: color 0.3s;
}

.modern-tabs .nav-link.active .tab-icon,
.modern-tabs .nav-link:hover .tab-icon {
    color: #fff;
}

.tab-label {
    font-size: 1.08em;
    letter-spacing: 0.5px;
}

.tab-search {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 220px;
    width: 280px;
    max-width: 100%;
}

.tab-search input {
    border-radius: 18px;
    border: 1px solid #e5e5e5;
    padding: 10px 44px 10px 16px;
    font-size: 1em;
    background: #fff;
    transition: border 0.2s;
    width: 100%;
}

.tab-search input:focus {
    outline: none;
    border: 1.5px solid #0DCADF;
}

.tab-search .search-btn {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: #0DCADF;
    font-size: 1.2em;
    cursor: pointer;
    transition: color 0.2s;
}

.tab-search .search-btn:hover {
    color: #041e3e;
}

.modern-tab-content {
    background: #041e3e;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 4px 24px rgba(124, 92, 255, 0.07);
    padding: 36px 24px;
    animation: fadeInTab 0.7s cubic-bezier(.4, 2, .6, 1);
    min-height: 320px;
}

@keyframes fadeInTab {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-accordion .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(124, 92, 255, 0.06);
    transition: box-shadow 0.3s;
}

.modern-accordion .accordion-item:hover {
    box-shadow: 0 6px 24px rgba(124, 92, 255, 0.13);
}

.modern-accordion .accordion-button {
    background: linear-gradient(90deg, #f8fafc 0%, #f1f2fa 100%);
    color: #222;
    font-size: 1.13rem;
    font-weight: 500;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: background 0.2s, color 0.2s;
    position: relative;
}

.modern-accordion .accordion-button:focus {
    box-shadow: none;
}

.modern-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #10c3d4 0%, #058daf 100%);
    color: #fff;
}

.modern-accordion .accordion-body {
    background: #fff;
    color: #444;
    padding: 22px 28px;
    border-top: 1px solid #eee;
    font-size: 1.03rem;
    animation: fadeInAccordion 0.6s cubic-bezier(.4, 2, .6, 1);
}

@keyframes fadeInAccordion {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modern-accordion .accordion-button i {
    font-size: 1.3em;
    color: #0DCADF;
    transition: color 0.2s;
}

.modern-accordion .accordion-button:not(.collapsed) i {
    color: #fff;
}

@media (max-width: 991px) {
    .tab-section-modern {
        padding: 24px 0;
    }

    .modern-tab-content {
        padding: 20px 8px;
    }

    .tab-section__header {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .tab-search {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 600px) {
    .modern-tabs .nav-link {
        padding: 10px 14px;
        font-size: 0.97em;
    }

    .tab-label {
        display: none;
    }

    .tab-section-modern {
        margin: 32px 0;
        border-radius: 12px;
    }
}

/* info page style end */

.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.language-selector .btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.2s;
}

.language-selector .btn:focus,
.language-selector .btn:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    border-color: #bbb;
}

.language-selector .fa-globe {
    color: #34d0d9;
    font-size: 1.25em;
}

.language-selector .dropdown-menu {
    min-width: 90px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-top: 6px;
    padding: 0.25rem 0;
}

.language-selector .dropdown-item {
    font-size: 1em;
    padding: 8px 18px;
    color: #333;
    transition: background 0.15s;
}

.language-selector .dropdown-item:hover,
.language-selector .dropdown-item:focus {
    background: #f0f4fa;
    color: #34d0d9;
}


#selected-lang {
    font-weight: 600;
    letter-spacing: 1px;
}

/* ak */
.mb-bk {
    display: none;
}

@media screen and (max-width: 756px) {
    .mbl-v-h {
        display: none;
    }

    .Mmt-5 {
        margin-top: 20px;
    }

    /* .countdown-box {
        width: 165px !important;
    } */

    .tab-titles {
        flex-direction: column;
    }

    .tab-content .tab {
        padding: 4px;
    }

    .artist-card {
        width: 100% !important;
    }

    .mbl-drt-col {
        flex-direction: column !important;
    }

    .banner-one__category-search-box {
        width: 52%;
    }

    .main-menu-two__wrapper {
        padding-bottom: 10px;
        padding-top: 15px;
    }

    .banner-one__category-search-inner {
        flex-direction: unset !important;

    }

    .mbl-v-nav {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .mt-sm-3 {
        margin-top: 10px;
    }

    .mb-bk {
        position: absolute;
        display: block !important;
        left: -80%;
    }

    .search-bar-div {
        box-shadow: unset !important;
    }

    .main-slider {
        z-index: 4 !important;
    }
}

.site-footer__bottom-inner {
    justify-content: center;
}