/* =============================================
   SHOWS PAGE STYLES
   ============================================= */

/* ---- Hero — inline with card content ---- */
.shows-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    padding: 4rem 0 2rem;
    background: #000000;
}

.shows-hero-content {
    text-align: left;
    z-index: 2;
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 0 20px;
    margin: 0 auto;
}

.shows-hero-title h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
    border-bottom: 3px solid #0066ff;
    box-shadow: 0 3px 12px -3px rgba(0, 102, 255, 0.4);
}

/* ---- Shows Section ---- */
.shows-section {
    padding: 3rem 0 100px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

/* Background ambient elements */
.shows-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, rgba(0, 60, 180, 0.03) 40%, transparent 70%);
    pointer-events: none;
    animation: ambientDrift1 20s ease-in-out infinite alternate;
}

.shows-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 50, 180, 0.05) 0%, rgba(0, 20, 100, 0.02) 40%, transparent 70%);
    pointer-events: none;
    animation: ambientDrift2 25s ease-in-out infinite alternate;
}

@keyframes ambientDrift1 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-40px, 30px); }
}

@keyframes ambientDrift2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, -20px); }
}

/* Subtle grid pattern background */
.shows-section .container {
    position: relative;
    z-index: 1;
}

.shows-section .container::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Additional floating orbs */
.shows-hero::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
    animation: ambientDrift1 15s ease-in-out infinite alternate;
}

/* ---- Show Card — horizontal layout ---- */
.show-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto 3rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: visible;
    transition: all 0.4s ease;
}

.show-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.025);
}

/* Blue left accent bar */
.show-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #0066ff;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.4);
}

.show-card-inner {
    padding: 2.5rem 3rem;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 0;
    align-items: start;
}

/* Date tag — big bold date on the left */
.show-date-tag {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    letter-spacing: 3px;
    color: #0066ff;
    line-height: 1;
    grid-row: 1 / 4;
    grid-column: 1;
    padding-right: 2.5rem;
    margin-right: 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    min-width: 100px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
}

/* Artist Name */
.show-artist {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.3rem;
    color: #ffffff;
    grid-column: 2;
    grid-row: 1;
}

/* Supporting act / "WITH" line */
.show-with {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0;
    grid-column: 2;
    grid-row: 2;
}

.show-with strong {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Divider — hidden in grid layout */
.show-divider {
    display: none;
}

/* Details row */
.show-details {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    grid-column: 2;
    grid-row: 3;
    margin-top: 1.25rem;
    align-items: flex-start;
}

.show-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.show-detail-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.25);
}

.show-detail-value {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
}

/* Ticket CTA — positioned on the right side */
.show-ticket-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2rem;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    grid-column: 3;
    grid-row: 1 / 4;
    align-self: center;
    white-space: nowrap;
}

.show-ticket-btn:hover {
    border-color: #0066ff;
    color: #0066ff;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.15);
}

.show-ticket-btn .ticket-arrow {
    font-size: 1rem;
    transition: transform 0.3s ease;
    opacity: 0.4;
}

.show-ticket-btn:hover .ticket-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* ---- Show Card Header ---- */
.show-card-header {
    display: contents;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .shows-hero {
        padding: 3rem 0 1.5rem;
    }

    .show-card-inner {
        display: flex;
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .show-date-tag {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        margin-bottom: 1rem;
        text-align: left;
        justify-content: flex-start;
        font-size: 2.5rem;
    }

    .show-details {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .show-ticket-btn {
        width: 100%;
        justify-content: center;
        margin-top: 1.5rem;
    }

    .shows-section {
        padding: 2rem 0 60px;
    }

    .show-divider {
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.06);
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .shows-hero {
        margin-top: 60px;
        padding: 2.5rem 0 1rem;
    }

    .show-card-inner {
        padding: 1.5rem 1.25rem;
    }

    .show-date-tag {
        font-size: 2rem;
    }

    .show-artist {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .show-detail-value {
        font-size: 1.1rem;
    }

    .show-ticket-btn {
        font-size: 1rem;
        padding: 0.7rem 1.5rem;
    }
}
