/*
 * Shows Page Styles
 * Theme: Stellar Lights
 */

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 0;
    padding-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    padding-top: 200px;
    box-sizing: border-box;
}

.hero-content h1 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 1364px;
    margin-top: -155px;
}

.hero-content p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    max-width: 1088px;
    margin: 0 auto 30px;
    text-align: center;
    letter-spacing: 2.5px;
}

/* Photo Credit Container */
.photo-credit-container {
    position: absolute;
    bottom: 50px;
    width: 100%;
    left: 0;
}

.photo-credit {
    position: relative;
    font-family: 'Titillium Web', sans-serif;
    font-size: 20px;
    color: white;
    opacity: 0.8;
    font-style: italic;
    text-align: right;
    margin-bottom: 15px;
    padding-right: 80px;
}

.photo-credit-line {
    width: 100%;
    height: 1px;
    background-color: #707070;
    opacity: 0.4;
}

/* Call to Action Section */
.cta-section {
    padding: 4rem 0;
    padding-bottom: 2rem;
    text-align: center;
    margin-top: 0;
}

.cta-content {
    max-width: 60rem;
    width: 100%;
    margin: 0 auto 2rem;
    padding: 0 clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
}

.cta-content h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    padding: 0 20px;
}

.enquire-button,
.cta-content .enquire-button {
    font-family: 'Titillium Web', sans-serif;
    font-size: 20px;
    color: white;
    background: transparent;
    border: 2px solid white;
    font-weight: bold;
    padding: 10px 27px;
    border-radius: 20px;
    letter-spacing: 2px;
    transition: background 0.3s, color 0.3s;
    display: inline-block;
    margin: 10px 0;
    text-decoration: none;
}

.enquire-button:hover,
.cta-content .enquire-button:hover {
    background: white;
    color: black;
    border: 2px solid white;
}

.additional-images {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 90%;
    margin: 0 auto;
    margin-top: 100px;
}

.additional-images .image-wrapper {
    width: 23%;
    height: 250px;
    position: relative;
    transition: transform 0.3s ease;
}

.additional-images .image-wrapper:hover {
    transform: scale(1.05);
}

.additional-images .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.additional-images .image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    padding: 0.5rem 1rem;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-align: center;
    white-space: normal;
    line-height: 1.3;
}

/* Shows Content Section */
.shows-content-section {
    color: #fff;
    padding: 6rem 0;
}

.shows-container {
    max-width: 1264px;
    margin: 0 auto;
    padding: 0 2rem;
}

.shows-intro {
    margin-bottom: 4rem;
}

.shows-intro p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 2.5px;
    max-width: 1088px;
    margin: 0 auto;
}

/* Interactive show Sections */
.interactive-show-section {
    margin-bottom: 2rem;
}

.show-card {
    border: 1px solid #707070;
    border-radius: 10px;
    padding: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.show-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

.show-card.expanded {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    cursor: default;
}

.show-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.show-header>div:first-child {
    flex-grow: 1;
}

.show-header h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    text-align: left;
}

.short-description {
    font-size: 18px;
    color: #ccc;
    text-align: left;
    margin: 0;
    transition: opacity 0.3s ease;
}

.show-card.expanded .short-description {
    display: none;
}

.expand-icon {
    width: 40px;
    height: 40px;
    position: relative;
    margin-left: 2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.expand-icon::before,
.expand-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.expand-icon::before {
    width: 20px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.expand-icon::after {
    width: 2px;
    height: 20px;
    transform: translate(-50%, -50%);
}

.show-card:hover .expand-icon {
    transform: scale(1.1);
}

.show-card:hover .expand-icon::before,
.show-card:hover .expand-icon::after {
    background-color: #fff;
}

.show-card.expanded .expand-icon {
    transform: rotate(45deg);
}

.show-card.expanded .expand-icon::before,
.show-card.expanded .expand-icon::after {
    background-color: #fff;
}

.show-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, margin-top 0.5s ease, padding-top 0.5s ease;
}

.show-card.expanded .show-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.show-content p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Responsive Design */

@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 5vw;
    }

    .hero-content p {
        font-size: 20px;
    }

    .photo-credit {
        padding-right: 50px;
    }

    .additional-images .image-wrapper {
        width: 45%;
        height: 200px;
    }

    .additional-images .image-overlay {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 6vw;
    }

    .hero-content p {
        font-size: 18px;
    }

    .show-card {
        padding: 1.5rem;
    }

    .show-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .show-header h2 {
        font-size: 24px;
    }

    .short-description {
        font-size: 16px;
    }

    .expand-icon {
        align-self: flex-end;
        margin-top: -30px;
    }

    .expand-icon::before,
    .expand-icon::after {
        background-color: #fff;
    }

    .additional-images {
        flex-direction: column;
        align-items: center;
    }

    .additional-images .image-wrapper {
        width: 80%;
        margin-bottom: 1rem;
    }

    .additional-images .image-overlay {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 80vh;
        margin-top: -50px;
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 8vw;
        margin-top: -100px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .photo-credit-container {
        bottom: 30px;
    }

    .photo-credit {
        padding-right: 30px;
        font-size: 16px;
    }

    .cta-section {
        padding: 2rem 0;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .show-card {
        padding: 1rem;
    }

    .show-card.expanded {
        padding: 1rem;
    }

    .show-header {
        align-items: flex-start;
    }

    .expand-icon {
        width: 30px;
        height: 30px;
    }

    .expand-icon::before {
        width: 15px;
    }

    .expand-icon::after {
        height: 15px;
    }

    .show-header h2 {
        font-size: 20px;
    }

    .short-description {
        font-size: 14px;
    }

    .additional-images {
        margin-top: 50px;
    }

    .additional-images .image-wrapper {
        width: 100%;
        height: 200px;
    }

    .additional-images .image-overlay {
        font-size: 1rem;
    }
}

/* Shows Gallery Scrollable Section */
.shows-gallery-scroll {
    width: 100%;
    background: transparent;
    margin: 85px auto 3rem auto;
    padding: 0;
    overflow-x: auto;
}

.shows-gallery-scroll-inner {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.shows-gallery-image-link {
    display: block;
    width: 588px;
    height: 378px;
    max-width: 80vw;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.shows-gallery-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s;
}

.shows-gallery-image-link:hover .shows-gallery-image,
.shows-gallery-image-link:focus .shows-gallery-image {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.shows-gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2;
    width: 90%;
    max-width: 500px;
    pointer-events: none;
    padding: 20px;
    box-sizing: border-box;
}

.shows-gallery-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.shows-gallery-subtitle {
    font-size: 1.2rem;
    font-style: italic;
    margin-top: 0.5rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 900px) {
    .shows-gallery-scroll-inner {
        gap: 1rem;
    }

    .shows-gallery-image-link {
        width: 80vw;
        min-width: 250px;
        max-width: 400px;
    }

    .shows-gallery-overlay {
        width: 95%;
        max-width: 400px;
        padding: 15px;
    }

    .shows-gallery-title {
        font-size: 1.3rem;
        line-height: 1.1;
    }

    .shows-gallery-subtitle {
        font-size: 1rem;
        line-height: 1.3;
    }
}

@media (max-width: 600px) {
    .shows-gallery-scroll-inner {
        gap: 0.5rem;
    }

    .shows-gallery-image-link {
        width: 90vw;
        min-width: 180px;
        max-width: 95vw;
    }

    .shows-gallery-overlay {
        width: 98%;
        max-width: 350px;
        padding: 10px;
        top: 45%;
    }

    .shows-gallery-title {
        font-size: 1.1rem;
        line-height: 1.1;
        margin-bottom: 0.3rem;
    }

    .shows-gallery-subtitle {
        font-size: 0.9rem;
        line-height: 1.2;
        margin-top: 0.3rem;
    }
}

/* Extra small screens (below 400px) */
@media (max-width: 400px) {
    .shows-gallery-overlay {
        width: 100%;
        max-width: 300px;
        padding: 8px;
        top: 40%;
    }

    .shows-gallery-title {
        font-size: 1rem;
        line-height: 1.1;
        margin-bottom: 0.2rem;
    }

    .shows-gallery-subtitle {
        font-size: 0.8rem;
        line-height: 1.2;
        margin-top: 0.2rem;
    }

    .shows-gallery-image-link {
        width: 95vw;
        min-width: 160px;
    }
}

/* How We Work Section */
.shows-how-we-work {
    background: transparent;
    color: #fff;
    padding: 3rem 0 2.5rem 0;
    text-align: center;
}

.shows-how-we-work-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.shows-how-we-work-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: none;
}

.shows-how-we-work-desc {
    margin-bottom: 2.5rem;
}

.shows-how-we-work-desc p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #fff;
    margin: 0 0 1.1rem 0;
    text-align: center;
    letter-spacing: 0.5px;
}

.shows-how-we-work-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 2.5rem;
    text-decoration: none;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.shows-how-we-work-btn:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

@media (max-width: 600px) {
    .shows-how-we-work-title {
        font-size: 1.3rem;
    }

    .shows-how-we-work-desc p {
        font-size: 0.98rem;
    }

    .shows-how-we-work-btn {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

/* What We Offer Section */
.what-we-offer-section {
    padding: 4rem 2rem;
    text-align: center;
}

.what-we-offer-content {
    max-width: 1088px;
    margin: 0 auto 3rem auto;
}

.what-we-offer-content h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 35px;
    font-weight: 700;
    letter-spacing: 3.5px;
    margin-bottom: 1.5rem;
}

.what-we-offer-content p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: 2.5px;
    color: #fff;
    text-align: center;
}

.what-we-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 2rem;
    max-width: 1088px;
    margin: 0 auto;
    text-align: center;
}

.offer-item {
    display: flex;
    flex-direction: column;
}

.offer-item h3 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.offer-item p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #ccc;
}

.offer-button {
    font-family: 'Titillium Web', sans-serif;
    font-size: 18px;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    font-weight: 600;
    padding: 10px 0;
    text-decoration: none;
    border-radius: 20px;
    letter-spacing: 1.8px;
    transition: background-color 0.3s, color 0.3s;
    display: block;
    margin-top: auto;
    width: 200px;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
}

.offer-button:hover {
    background-color: white;
    color: black;
}

@media (max-width: 768px) {
    .what-we-offer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .what-we-offer-content h2 {
        font-size: 30px;
    }

    .what-we-offer-content p {
        font-size: 18px;
        text-align: center;
    }

    .offer-item {
        text-align: center;
    }
}

/* Shows Video Gallery Section */
.shows-video-gallery-section {
    padding: 4rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
    /* For Internet Explorer and Edge */
}

.shows-video-gallery-section::-webkit-scrollbar {
    display: none;
    /* For Chrome, Safari, and Opera */
}

.shows-video-gallery-inner {
    display: flex;
    gap: 1rem;
    padding: 0 2rem;
    width: max-content;
}

.shows-video-item {
    position: relative;
    cursor: pointer;
    width: 450px;
    /* Adjust as needed */
    height: 300px;
    /* Adjust as needed */
    overflow: hidden;
}

.shows-video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shows-video-item:hover img {
    transform: scale(1.05);
}

.shows-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.shows-video-text {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Video Player Overlay */
.video-player-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.video-player-overlay.active {
    display: flex;
}

.close-video-player {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.video-player-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    padding-bottom: 50.625%;
    /* 16:9 aspect ratio */
    height: 0;
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}