.show-section {
    padding-top: 120px;
}

.back-to-home {
    display: flex;
    align-items: center;
    color: var(--white);
    text-decoration: none;
    font-size: var(--big-text);
}

.back-triangle {
    width: 0;
    height: 0;
    margin-right: 10px;
    margin-bottom: 2px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 8px solid var(--yellow);
}

.show-title-on-mobile { 
    display: none;
}

.show-infos {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    margin-bottom: 75px;
}

.show-infos-left {
    width: 23%;
}

.show-poster {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 24px;
}

.show-poster > img {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
    object-fit: contain;
    border-radius: 0.5vw;
}

.show-poster > span {
    color: var(--white);
    text-align: end;
    font-size: 12px;
}

.show-credits-wrapper {
    margin-bottom: 20px;
}

.show-credits-wrapper > span {
    color: var(--white);
    line-height: 1.2rem;
    font-size: var(--big-text);
}

.show-credits-wrapper > p {
    font-weight: 300;
}

.show-infos-right {
    width: 73%;
}

.show-infos-right > h1 {
    margin-bottom: 10px;
    line-height: 3.8rem;
    font-size: var(--medium-h1);
}

.show-infos-right > span {
    color: var(--white);
    line-height: 1.2rem;
    font-size: var(--big-text);
}

.show-infos-right > h2 {
    margin-top: 45px;
    color: var(--yellow);
}

.show-description > p {
    margin-top: 20px;
}

.show-video-contact {
    display: flex;
    margin-top: 40px;
}

.show-video {
    position: relative;
    overflow: hidden;
    width: 54%;
    padding-top: 30.4%;
    margin-right: 46px;
}

.show-video > iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.7vw;
}

.show-contact-wrapper > span {
    color: var(--white);
    line-height: 1.2rem;
    font-size: var(--big-text);
    font-weight: 300;
}

.show-contact-wrapper:not(:last-child) {
    margin-bottom: 20px;
}

.show-socials {
    display: flex;
    margin-top: 20px;
}

.show-socials > a {
    display: block;
    height: 24px;
}

.show-socials > a:not(:first-child) {
    margin-left: 20px;
}

.show-socials > a > img {
    height: 100%;
    object-fit: contain;
}

.show-artist-website-wrapper {
    margin-top: 20px;
}

.show-artist-website {
    color: var(--yellow);
    font-size: var(--big-text);
    text-decoration: none;
}

.show-artist-website:hover {
    text-decoration: underline;
}

.review-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 60px;
    background-color: var(--yellow);
}

.review-wrapper {
    width: 31%;
    padding: 0 1%;
    padding-top: 30px;
    color: var(--dark-purple);
    text-align: center;
}

.review-wrapper > p {
    margin-bottom: 18px;
    color: var(--dark-purple);
    font-size: 1.5rem;
    line-height: 1.6rem;
}

.review-wrapper > span {
    color: var(--dark-purple);
    font-size: var(--small-text);
    font-weight: 300;
}

.gallery-section {
    padding-top: 60px;
    padding-bottom: 70px;
    background-color: var(--white);
}

.gallery-section > h2 {
    margin-bottom: 30px;
    color: var(--purple);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3vw;
}

.gallery-grid > img,
.gallery-video {
    width: 100%;
    border-radius: 0.7vw;
    overflow: hidden;
    aspect-ratio: 27 / 19;
    object-fit: cover;
}

.gallery-video > iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.ticketing-section {
    padding-top: 60px;
}

.ticketing-section > h2 {
    margin-bottom: 30px;
    color: var(--yellow);
}

.date-list-wrapper {
    max-height: 800px;
    overflow-y: scroll;
    margin-bottom: 48px;
}

.date-list {
    width: 100%;
    border-collapse: collapse;
    color: var(--white);
    font-size: var(--big-text);
}

.date-list tr {
    height: 48px;
}

.date-list tr.filtered-out {
    display: none;
}

.date-list tr:nth-child(odd of :not(.filtered-out)) {
    background-color: var(--purple);
}

.date-list tr:nth-child(even of :not(.filtered-out)) {
    background-color: var(--dark-purple);
}

.date-list td {
    padding-right: 4px;
    padding-left: 4px;
}

.date-list td:nth-child(1) {
    padding-left: 24px;
}

.date-list td:nth-child(2) {
    font-weight: 300;
}

.date-list td:nth-child(4) {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 48px;
}

.date-list td > a {
    margin-right: 24px;
    color: var(--white);
    text-decoration: none;
}

.date-list td > a:hover {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .back-to-home {
        font-size: calc(var(--big-text) - 6px);
    }

    .show-title-on-mobile { 
        display: initial;
        color: var(--yellow);
        margin-bottom: 24px;
        font-size: var(--big-h1);
    }
    .show-infos {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .show-infos-left {
        width: 100%;
    }

    .show-poster {
        align-items: center;
    }

    .show-poster > img {
        border-radius: 2.3vw;
        margin-bottom: 12px;
    }

    .show-credits-wrapper > span {
        line-height: 1.6rem;
    }

    .show-infos-right {
        width: 100%;
    }

    .show-infos-right > h1,
    .show-infos-right > span {
        display: none;
    }

    .show-video-contact {
        flex-direction: column;
    }

    .show-video {
        width: 100%;
        padding-top: 56.5%;
    }

    .show-video > iframe {
        border-radius: 3.5vw;
    }

    .show-contact {
        margin-top: 60px;
        margin-left: 0px;
    }

    .show-contact-wrapper > span {
        line-height: 1.6rem;
    }

    .review-section {
        flex-direction: column;
    }

    .review-wrapper {
        width: 100%;
        padding: 0;
        padding-top: 40px;
    }

    .gallery-section {
        padding-top: 40px;
        padding-bottom: 32px;
    }

    .gallery-grid {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 7.4vw;
    }

    .gallery-video {
        aspect-ratio: 16/9;
    }

    .gallery-grid > img, .gallery-video {
        border-radius: 3.5vw;
    }

    .ticketing-section {
        padding-top: 50px;
    }

    .date-list-wrapper {
        margin-right: -8.4vw;
        margin-left: -8.4vw;
        margin-bottom: 0;
    }

    .date-list {
        font-size: calc(var(--big-text) - 6px);
    }

    .date-list tr {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: initial;
        padding-top: 30px;
    }

    .date-list td {
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .date-list td > a {
        margin-right: 0px;
        text-decoration: underline;
    }
}