/* Hero Section - matching pre-produced show styling */
.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: -70px;
    padding-top: 100px;
}

.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);
    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: 25px;
    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;
}

.feature-shows-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    color: #fff;
    box-sizing: border-box;
}

.feature-shows-content .breadcrumbs {
    padding: 2rem 0;
    font-family: 'Titillium Web', sans-serif;
    font-size: 20px;
    letter-spacing: 3.75px;
    margin-left: -20px;
}

.feature-shows-content .breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.feature-shows-content .breadcrumbs .current-page {
    font-weight: 700;
    color: #fff;
}

.feature-shows-content .show-intro-section p {
    font-family: 'Titillium Web', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    letter-spacing: 2.5px;
    text-align: center;
}

.feature-shows-carousel {
    display: flex;
    overflow-x: auto;
    padding: 20px;
    background: #000;
    width: 100%;
    box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.feature-shows-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    min-width: 600px;
    height: 500px;
    width: 600px;
    background-size: cover;
    background-position: center;
    margin-right: 20px;
    color: #fff;
    text-align: center;
    padding-top: 250px;
    box-sizing: border-box;
    text-decoration: none;
    /* Ensure no underline on the link itself */
}

.carousel-item.corporate-event {
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/corporate-event.jpg');
}

.carousel-item.brand-storytelling {
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/brand-storytelling.jpg');
}

.carousel-item.public-event {
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/public-event.jpg');
}

.carousel-item.private-event {
    background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/private-event.jpg');
}

.carousel-item h3 {
    font-size: 1.5em;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 5px;
}

.carousel-item p {
    font-size: 1.5em;
    font-style: italic;
    text-decoration: none;
    margin-top: 0;
    /* Ensure no extra top margin */
}

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

.cta-content {
    max-width: 60rem;
    margin: 0 auto 2rem;
}

.cta-content h2 {
    font-family: 'Titillium Web', sans-serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 3.5px;
    margin-bottom: 1.5rem;
}

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-shows-content .breadcrumbs {
        margin-left: 0;
        text-align: center;
        font-size: 16px;
    }

    .feature-shows-content .show-intro-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@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: 1.5rem;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .cta-section {
        padding: 3rem 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (min-width: 993px) {
    .cta-content h2 {
        font-size: 2rem;
    }
}