/* Our Story Page Styles */
body {
    font-family: 'Titillium Web', sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 500px;
    max-height: 1200px;
    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);
}

.photo-credit-container {
    position: absolute;
    bottom: 50px;
    width: 100%;
    left: 0;
}

.photo-credit {
    position: relative;
    font-family: 'Titillium Web', sans-serif;
    font-size: clamp(14px, 2vw, 20px);
    color: white;
    opacity: 0.8;
    font-style: italic;
    text-align: right;
    margin-bottom: 15px;
    padding-right: 5%;
}

/* Hero Text Section */
.hero-text-section {
    padding: 8vw 0 5vw;
    text-align: center;
}

.hero-text-section p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    margin: 0 auto;
    max-width: 1000px;
    padding: 0 clamp(1rem, 4vw, 2rem);
    box-sizing: border-box;
}

/* Image Gallery Section */
.image-gallery {
    padding: 5vw 0;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .gallery-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 2%;
    }
}

.gallery-item {
    flex: 1;
    position: relative;
    margin-bottom: 20px;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image-wrapper {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 60vw;
    max-height: 500px;
    min-height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 600;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    width: 100%;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
}

/* Strengths Section */
.strengths-section {
    padding: 5vw 0;
    text-align: center;
}

.strengths-section h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.strengths-section p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    margin: 0 auto 20px;
    letter-spacing: 1.2px;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    color: #fff;
}

/* Shows Section */
.shows-section {
    padding: 5vw 0;
}

.shows-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
}

@media (min-width: 600px) {
    .shows-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .shows-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.show-item {
    text-align: center;
    padding: 10px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
}


.show-item h3 {
    font-size: clamp(18px, 2.5vw, 25px);
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.show-item p {
    font-size: clamp(14px, 1.8vw, 17px);
    line-height: 1.6;
    margin-bottom: 20px;
    color: #ccc;
    flex: 1;
}

.read-more {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid #fff;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-size: clamp(16px, 2vw, 20px);
    transition: all 0.3s;
    margin-top: 10px;
    align-self: center;
    background-color: transparent;
}

.read-more:hover {
    background-color: #fff;
    color: #000;
}

/* Call to Action Section */
.cta-section {
    padding: 4vw 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.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: 30px;
    color: #fff;
}

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

.cta-content .enquire-button:hover {
    background-color: white;
    color: black;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .hero-section {
        height: 70vh;
        min-height: 400px;
        margin-top: -60px;
        padding-top: 80px;
    }

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

    .gallery-container {
        flex-direction: column;
    }

    .gallery-item {
        margin-bottom: 15px;
    }

    .shows-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 60vh;
        min-height: 300px;
    }

    .hero-text-section p {
        text-align: left;
    }

    .strengths-section p {
        text-align: left;
    }

    .photo-credit {
        font-size: 12px;
    }
}

/* Footer styles (inherited from theme) */
.site-footer {
    color: white;
    position: relative;
    z-index: 1;
    font-family: 'Titillium Web', sans-serif;
}

/* Ensure footer elements are properly spaced */
.footer-collaborators,
.footer-logo,
.footer-address,
.footer-social-icons,
.footer-nav,
.footer-subscribe,
.footer-copyright {
    padding: 0 20px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}