/* Show Page Hero Override */
.hero--show {
    min-height: 60vh;
    background: #1a1a1a;
    color: #fff;
}

.hero--show .title-line-2 {
    color: #cc4400;
}

/* Show Content */
.show-content {
    background: #1a1a1a;
    color: #fff;
    padding: 0 40px 80px;
}

.show-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Event Info Bar */
.show-info-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 60px;
}

.show-info-item {
    text-align: center;
}

.show-info-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cc4400;
    margin-bottom: 8px;
}

.show-info-value {
    font-size: 18px;
    font-weight: 300;
    color: #eee;
}

/* Show Description */
.show-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.show-text h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    margin-bottom: 24px;
    color: #fff;
}

.show-text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 16px;
}

.show-text strong {
    color: #fff;
    font-weight: 600;
}

.show-poster {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.show-poster img {
    width: 100%;
    display: block;
}

/* Guest Artist */
.show-guest {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #333;
    margin-bottom: 60px;
}

.show-guest-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #cc4400;
    margin-bottom: 16px;
}

.show-guest-name {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 16px;
}

.show-guest-bio {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: #bbb;
    max-width: 600px;
    margin: 0 auto;
}

/* Tickets Section */
.show-tickets {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid #333;
}

.show-tickets h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    margin-bottom: 12px;
}

.show-tickets-price {
    font-size: 20px;
    font-weight: 300;
    color: #cc4400;
    margin-bottom: 8px;
}

.show-tickets-note {
    font-size: 14px;
    color: #888;
    margin-bottom: 32px;
}

.show-tickets-venue {
    margin-bottom: 32px;
}

.show-tickets-venue h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.show-tickets-venue p {
    font-size: 15px;
    font-weight: 300;
    color: #bbb;
    line-height: 1.6;
}

.show-tickets-venue a {
    color: #cc4400;
    transition: opacity 0.3s ease;
}

.show-tickets-venue a:hover {
    opacity: 0.7;
}

.show-tickets-btn {
    display: inline-block;
    padding: 16px 48px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: #cc4400;
    color: #fff;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.show-tickets-btn:hover {
    opacity: 0.85;
}

/* Show Footer Override */
.footer--dark {
    background: #1a1a1a;
    border-top-color: #333;
}

.footer--dark .footer-text {
    color: #666;
}

@media (max-width: 768px) {
    .show-content {
        padding: 0 20px 60px;
    }

    .show-info-bar {
        gap: 32px;
    }

    .show-description {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .show-poster {
        max-width: 400px;
        margin: 0 auto;
    }
}
