/* ==========================================================================
SINGLE SHOW SPECIFIC STYLES
========================================================================== */

/* Layout Grid */
.show-content-section {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 80px;
}

/* Hero Background for single-show */
.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Breadcrumbs */
.breadcrumbs-container {
    margin: 28px auto 32px;
    padding-left: 4rem;
    padding-right: 4rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.6rem;
    color: var(--of-text-color);
    font-weight: 400;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs a {
    text-decoration: none;
    color: var(--of-text-color);
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--of-accent-hover);
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: var(--of-text-color);
}

.breadcrumb-current {
    font-weight: 500;
}

.composer {
    font-size: 3rem;
    font-weight: 300;
    margin-top: 5px;
    opacity: 0.8;
}

/* Sticky Info Bar */
.show-info-bar {
    background-color: #ffffff;
    border-top: 1px solid var(--of-border-color);
    border-bottom: 1px solid var(--of-border-color);
    padding: 20px 0;
    position: sticky;
    top: var(--of-header-height);
    z-index: 9998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-grid {
    max-width: 1600px;
    padding: 0 5%;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr auto;
    gap: 40px;
    align-items: center;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 2.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.info-value {
    font-size: 2.6rem;
    font-weight: 600;
    color: #000000;
}

/* CTA Tickets Button Styles */
.btn-tickets {
    background-color: transparent;
    color: #000000;
    font-family: var(--of-avenir-font);
    font-size: 2.5rem;
    font-weight: 800;
    padding-right: 225px;
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-tickets span {
    position: relative;
    display: inline-block;
    padding-bottom: 2px;

}

.btn-tickets span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(1);
    transform-origin: bottom left;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-tickets .cta-arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-tickets:hover {
    color: var(--of-accent-hover) !important;
}

.btn-tickets:hover span::after {
    animation: underline-slide 0.45s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.btn-tickets:hover .cta-arrow {
    transform: translateX(6px);
}

.btn-tickets-purple {
    background-color: #cd40e0;
    border: 2px solid #cd40e0;
    border-radius: 4px;
    color: var(--text-color);
    font-family: var(--avenir-font);
    font-size: 2.6rem;
    font-weight: 800;
    padding: 10px 20px;
    margin-right: 220px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-tickets-purple:hover {
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(205, 64, 224, 0.2);
}

.info-item.cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Sidebar Right */
.sidebar-right {
    background-color: var(--of-card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--of-border-color);
    height: fit-content;
    position: sticky;
    top: calc(var(--of-header-height) + var(--of-info-bar-height, 100px) + 20px);
}

.sidebar-highlight {
    background: var(--of-accent-color);
    color: #000;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--of-avenir-font);
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 30px;
    display: inline-block;
}

.sidebar-block {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--of-border-color);
}

.sidebar-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-info-label {
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--of-text-color);
    margin-bottom: 8px;
    display: block;
}

.sidebar-info-value {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Ficha Artística & Crew Grid */
.ficha-artistica {
    max-width: 1600px;
    margin: 60px auto;
    width: 100%;
    padding: 60px 5% 80px;
}

.ficha-block {
    width: 100%;
    margin-bottom: 80px;
}

.ficha-block:last-child {
    margin-bottom: 0;
}

.ficha-block h3 {
    font-size: 2.6rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--of-text-color);
    padding-bottom: 15px;
    width: 100%;
}

.artists-grid {
    display: grid;
    gap: 40px 60px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.grid-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-col-3 {
    grid-template-columns: repeat(3, 1fr);
}

.artists-grid li {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--of-border-color);
    padding-bottom: 20px;
}

.artists-grid li strong {
    font-family: var(--of-avenir-font);
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--of-text-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.artists-grid li span {
    font-family: var(--of-avenir-font);
    font-size: 18px;
    font-weight: 800;
    color: var(--of-text-color);
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .show-content-section {
        grid-template-columns: 1fr;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .composer {
        font-size: 1.8rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sidebar-right {
        position: relative;
        top: 0;
    }

    .show-info-bar {
        top: var(--of-header-height);
    }
}

/* Additional Responsive Fixes to Prevent Overflow */
@media (max-width: 992px) {
    .btn-tickets-purple {
        margin-right: 0 !important;
    }

    .btn-tickets {
        padding-right: 0 !important;
    }
}

@media (max-width: 768px) {

    .grid-col-4,
    .grid-col-3 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px 40px !important;
    }
}

@media (max-width: 480px) {

    .grid-col-4,
    .grid-col-3 {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}