/* =========================
   SHOWS SECTION
   ========================= */
.shows-section {
    background-color: #0a0a0a;
    padding: 6rem 1rem;
    color: #fff;
    display: flex;
    justify-content: center;
}

.shows-wrapper {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Show Card */
.show-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 35px rgba(255, 0, 80, 0.4);
}

/* Poster */
.show-poster img {
    width: 70%;
    height: 70%;
    object-fit: cover;
    display: block;
}

/* Info */
.show-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.show-date {
    font-size: 1.8rem;
    color: #ff0050;
    font-family: 'Unbounded', sans-serif;
}

.show-venue {
    font-size: 1.3rem;
    font-weight: 600;
}

.show-time {
    font-size: 0.95rem;
    opacity: 0.75;
}

.show-lineup {
    font-size: 1rem;
    opacity: 0.85;
    margin-top: 0.5rem;
}

/* Ticket Buttons + Messages */
.tickets-btn {
    margin-top: 1.5rem;
    display: inline-block;
    background: linear-gradient(90deg, #ff0050, #8b00ff);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.tickets-btn:hover {
    opacity: 0.8;
}

.tickets-btn.disabled {
    background: rgba(255, 255, 255, 0.2);
    cursor: default;
    pointer-events: none;
}

/* At-Door Ticket Option */
.tickets-door {
    margin-top: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 6px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 800px) {
    .show-card {
        grid-template-columns: 1fr;
    }

    .show-info {
        padding: 1.5rem;
        text-align: center;
    }

    .show-poster img {
        max-height: 400px;
        object-fit: cover;
    }
}