/*=====================================
    SHOWS / TOUR
======================================*/

#shows {

    width: 100%;

    background: var(--color-black);

    color: var(--color-white);

}


/*=====================================
    TOUR HERO IMAGE
======================================*/

.shows-hero {

    width: 100%;

    padding: 0;

    overflow: hidden;

}

.shows-hero img {

    display: block;

    width: 100%;

    height: auto;

    max-height: 760px;

    object-fit: cover;

}


/*=====================================
    SHOW LIST
======================================*/

.shows-list {

    width: 100%;

    padding: 40px 0 100px;

}


/*=====================================
    SHOW ROW
======================================*/

.show-item {

    display: grid;

    grid-template-columns: 1fr auto;

    column-gap: 40px;

    align-items: center;

    padding: 32px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

}


/*=====================================
    SHOW INFORMATION
======================================*/

.show-info {

    min-width: 0;

}

.show-date {

    margin-bottom: 7px;

    color: var(--color-white);

    font-size: 16px;

    font-weight: var(--font-weight-bold);

    line-height: 1.3;

    text-transform: uppercase;

}

.show-venue {

    margin-bottom: 5px;

    color: var(--color-white);

    font-size: 16px;

    font-weight: var(--font-weight-regular);

    line-height: 1.4;

}

.show-location {

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    line-height: 1.4;

}


/*=====================================
    SHOW ACTION
======================================*/

.show-action {

    display: flex;

    align-items: center;

    justify-content: flex-end;

}


/*=====================================
    SHOW BUTTON
======================================*/

.show-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 92px;

    min-height: 34px;

    padding: 9px 18px;

    border-radius: 999px;

    background: var(--color-olive);

    color: var(--color-white);

    font-size: 11px;

    font-weight: var(--font-weight-bold);

    line-height: 1;

    letter-spacing: 0.4px;

    text-transform: uppercase;

    text-align: center;

    transition:
        opacity var(--transition-fast),
        transform var(--transition-fast);

}

.show-btn:hover {

    opacity: 0.82;

    transform: translateY(-1px);

}


/*=====================================
    DIFFERENT ACTION TYPES
======================================*/

.show-btn.rsvp,
.show-btn.waitlist,
.show-btn.tickets,
.show-btn.presale {

    background: var(--color-olive);

}


/*=====================================
    SPECIAL SHOW MESSAGE
======================================*/

.show-special {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 35px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);

}

.show-special-text {

    color: var(--color-white);

    font-size: 15px;

    font-weight: var(--font-weight-medium);

    text-transform: uppercase;

}


/*=====================================
    DON'T SEE YOUR CITY
======================================*/

.show-city-request {

    padding: 70px 20px;

    text-align: center;

}

.show-city-request h2 {

    margin-bottom: 20px;

    color: var(--color-white);

    font-size: 24px;

    font-weight: var(--font-weight-bold);

    text-transform: uppercase;

}

.show-city-request p {

    max-width: 550px;

    margin: 0 auto 25px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    line-height: 1.7;

}


/*=====================================
    GENERAL SHOW CTA
======================================*/

.show-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 36px;

    padding: 10px 20px;

    border-radius: 999px;

    background: var(--color-olive);

    color: var(--color-white);

    font-size: 11px;

    font-weight: var(--font-weight-bold);

    letter-spacing: 0.4px;

    text-transform: uppercase;

    transition:
        opacity var(--transition-fast),
        transform var(--transition-fast);

}

.show-cta:hover {

    opacity: 0.82;

    transform: translateY(-1px);

}


/*=====================================
    EMPTY / LOADING STATE
======================================*/

.shows-loading {

    padding: 80px 20px;

    color: rgba(255, 255, 255, 0.6);

    text-align: center;

    font-size: 14px;

}


/*=====================================
    TABLET
======================================*/

@media (max-width: 900px) {

    .shows-hero img {

        max-height: 650px;

    }

    .shows-list {

        padding-top: 25px;

        padding-bottom: 80px;

    }

    .show-item {

        column-gap: 25px;

        padding: 28px 0;

    }

}


/*=====================================
    MOBILE
======================================*/

@media (max-width: 700px) {

    .shows-hero img {

        width: 100%;

        max-height: none;

        object-fit: cover;

    }

    .shows-list {

        padding: 15px 0 60px;

    }

    .show-item {

        grid-template-columns: 1fr auto;

        column-gap: 15px;

        padding: 25px 0;

    }

    .show-date {

        font-size: 14px;

    }

    .show-venue {

        font-size: 14px;

    }

    .show-location {

        font-size: 12px;

    }

    .show-btn {

        min-width: 78px;

        min-height: 32px;

        padding: 8px 13px;

        font-size: 10px;

    }

    .show-special {

        gap: 15px;

        padding: 28px 0;

    }

    .show-special-text {

        font-size: 13px;

    }

    .show-city-request {

        padding: 55px 15px;

    }

    .show-city-request h2 {

        font-size: 20px;

    }

}


/*=====================================
    SMALL MOBILE
======================================*/

@media (max-width: 420px) {

    .show-item {

        column-gap: 10px;

    }

    .show-btn {

        min-width: 72px;

        padding-left: 10px;

        padding-right: 10px;

    }

}

/*=====================================
    INQUIRY SECTION
======================================*/

.inquiry-section {

    width: 100%;

    padding: 90px 0 100px;

    background: var(--color-black);

    border-top: 1px solid rgba(255, 255, 255, 0.08);

}


/*=====================================
    INQUIRY GRID
======================================*/

.inquiry-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

}


/*=====================================
    INQUIRY CARD
======================================*/

.inquiry-card {

    min-height: 260px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 35px 30px;

    background: #0a0a0a;

    border: 1px solid rgba(255, 255, 255, 0.14);

    text-align: center;

    transition:
        border-color 0.25s ease,
        transform 0.25s ease;

}

.inquiry-card:hover {

    border-color: rgba(255, 255, 255, 0.35);

    transform: translateY(-4px);

}


/*=====================================
    INQUIRY CONTENT
======================================*/

.inquiry-content {

    max-width: 360px;

    margin: 0 auto;

}

.inquiry-content h2 {

    margin-bottom: 15px;

    color: var(--color-white);

    font-size: 21px;

    font-weight: 700;

    line-height: 1.2;

    text-transform: uppercase;

}

.inquiry-content p {

    margin-bottom: 25px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;

    line-height: 1.7;

}


/*=====================================
    INQUIRY BUTTON
======================================*/

.inquiry-content .show-cta {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 36px;

    padding: 10px 20px;

    border-radius: 999px;

    background: var(--color-olive);

    color: var(--color-white);

    font-size: 10px;

    font-weight: 700;

    line-height: 1;

    text-transform: uppercase;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;

}

.inquiry-content .show-cta:hover {

    opacity: 0.8;

    transform: translateY(-1px);

}


/*=====================================
    RESPONSIVE
======================================*/

@media (max-width: 1000px) {

    .inquiry-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media (max-width: 700px) {

    .inquiry-section {

        padding: 70px 0 80px;

    }

    .inquiry-grid {

        grid-template-columns: 1fr;

        gap: 15px;

    }

    .inquiry-card {

        min-height: 230px;

        padding: 30px 25px;

    }

}


@media (max-width: 420px) {

    .inquiry-card {

        min-height: 215px;

    }

    .inquiry-content h2 {

        font-size: 19px;

    }

    .inquiry-content p {

        font-size: 12px;

    }

}