/* Force all content sections to stay dark */
main, section {
    background-color: #121212;
}

/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Topbar / Header */
header {
    /* keep original header colour so join-us page remains unchanged */
    background-color: #1a2a4a;
    color: #ffffff;
    padding: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* slightly larger base text for readability */
body {
    font-size: 1.05rem;
}

/* restore original header-container layout styling */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
header .logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

header .logo {
    height: 75px;
    color: #ffffff;
    display: block;
}

.logo-text {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
}

/* Navigation */
/* Navigation */

header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

header nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.45rem;
    padding: 5px 10px;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #4a9eff;
}

/* Main Content */
main {
    padding: 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #121212;
    color: #ffffff;
}

/* Welcome Section */
.welcome {
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #121212;
    text-align: center;
}

.welcome h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.welcome p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 40px;
}

.featured-image {
    margin: 0 auto;
    max-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(26, 42, 74, 0.2);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Productions Content Section */
.productions-content {
    padding: 60px 40px;
    background-color: #0f0f0f;
    /* original narrower container width */
    max-width: 70vw;
    margin: 0 auto;
}

/* Production Card */
.production-card {
    display: flex;
        gap: 30px;
    align-items: flex-start;
    margin-bottom: 20px;
    background-color: #1a1a1a;
        padding: 10px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(26, 42, 74, 0.1);
    /* allow wrapping on narrow viewports and constrain overall width */
    flex-wrap: wrap;
           max-width: 65vw;
    margin-left: auto;
    margin-right: auto;
}

.production-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(26, 42, 74, 0.2);
    flex: 1 1 50%;
    max-width: 50%;
}

.production-image img {
    width: 100%;
    height: auto;
    display: block;
}

.production-info {
    flex: 1;
}

.production-info h3 {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.production-dates {
    color: #4a9eff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.production-info p {
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.production-buttons {
    margin-top: 25px;
}

/* adjust for small screens: image full width */
@media (max-width: 768px) {
    .production-card {
        flex-direction: column;
        padding: 30px;
    }

    .production-image {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .production-info h3 {
        font-size: 2.2rem;
    }
}

/* Coming Soon Section */
.coming-soon-section {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid #4a9eff;
}

.coming-soon-section h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.coming-soon-section p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Page Title Section */
.page-title {
    padding: 60px 40px;
    background-color: #121212;
    text-align: center;
    border-bottom: 2px solid #4a9eff;
}

.page-title h1 {
    font-size: 3rem;
    color: #4a9eff;
    font-family: 'Montserrat', sans-serif;
}

/* About Content Section */
.about-content {
    padding: 60px 40px;
    background-color: #0f0f0f;
    max-width: 1000px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.about-section p {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    background-color: #1a1a1a;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
}

.value-item h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

/* Meet the Director Section */
.meet-director {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid #4a9eff;
}

.meet-director h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

.director-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.director-image {
    flex: 0 0 280px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.3);
}

.director-image img {
    width: 100%;
    height: auto;
    display: block;
}

.director-bio {
    flex: 1;
}

.director-bio h3 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.director-bio p {
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}
.why-choose-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid #4a9eff;
}

.why-choose-section h2 {
    font-size: 2.5rem;
    color: #4a9eff;
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.2);
}

.feature h4 {
    color: #4a9eff;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.feature p {
    /* use white for better readability on darker backgrounds */
    color: #ffffff;
    font-size: 0.95rem;
}

/* Call to Action Section */
.cta {
    padding: 80px 40px;
    /* darker gradient for stronger navy presence */
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.2), rgba(26, 42, 74, 0.4));
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    color: #4a9eff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.cta p {
    font-size: 1.2rem;
    /* ensure high contrast on gradient background */
    color: #ffffff;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #4a9eff;
    color: #1a1a1a;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.4);
}

/* Call to Action Section */

/* Join Us Section */
.join-us {
    padding: 60px 40px;
    /* deepen the background slightly for more contrast */
    background-color: #121212;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.join-us h3 {
    font-size: 2rem;
    color: #4a9eff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.join-us h2 {
    font-size: 2.5rem;
    color: #4a9eff;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
}

.join-us p {
    font-size: 1.1rem;
    /* lighten text for readability on dark background */
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.8;
}

.join-button {
    background-color: #4a9eff;
    color: #1a1a1a;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.join-button:hover {
    background-color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.3);
}

/* Join Us Content Section */
.join-us-content {
    padding: 60px 40px;
    background-color: #0f0f0f;
    max-width: 1200px;
    margin: 0 auto;
}

.join-intro {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #1a1a1a;
    border-radius: 10px;
}

.join-intro h2 {
    font-size: 2rem;
    color: #4a9eff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.join-intro p {
    font-size: 1rem;
    /* improve contrast against dark intro background */
    color: #ffffff;
    line-height: 1.8;
}

/* Roles Section */
.roles-section {
    margin-bottom: 80px;
}

.roles-section h2 {
    font-size: 2rem;
    color: #4a9eff;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.role-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4a9eff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.2);
}

.role-card h3 {
    color: #4a9eff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.role-card p {
    /* brighter for readability on dark card */
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.role-card ul {
    list-style: none;
    padding: 0;
}

.role-card li {
    /* lighten list items even more for readability */
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.role-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
}

/* Application Section */
.application-section {
    margin-bottom: 80px;
}

/* application section heading uses navy instead of previous gold */
.application-section h2 {
    font-size: 2rem;
    color: #3a8adf;
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.application-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.step {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
}

/* step numbers are navy-on-dark background for contrast */
.step-number {
    background-color: #0d1b2a;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    font-family: 'Montserrat', sans-serif;
}



.step p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Join CTA */
.join-cta {
    /* gradient softened with navy and grey tones instead of gold */
    background: linear-gradient(135deg, rgba(0, 0, 128, 0.1), rgba(128, 128, 128, 0.1));
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
}

/* call-to-action heading in navy */
.join-cta h2 {
    font-size: 2rem;
    color: #3a8adf;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.join-cta p {
    font-size: 1rem;
    /* brighter text in call-to-action block */
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* links in join CTA use navy blue */
.join-cta a {
    color: #3a8adf;
    text-decoration: none;
}

.join-cta a:hover {
    text-decoration: underline;
}

/* sponsors section heading uses dark navy */
.supported-by h2 {
    font-size: 2.5rem;
    color: #3a8adf;
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
}

.supported-by {
    margin-bottom: 60px;
}

.sponsors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.sponsor-logo {
    /* remove box look - transparent background and no padding */
    background-color: transparent;
    padding: 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-logo:hover {
    transform: scale(1.05);
    /* replaced gold shadow with subtle navy tint */
    box-shadow: 0 8px 20px rgba(0, 0, 128, 0.2);
}

.sponsor-logo img {
    max-width: 60%;
    height: auto;
    display: block;
}

/* Footer */
footer {
    /* use join-us dark background for footer as well */
    background-color: #121212;
    color: #ffffff;
    padding: 40px;
    margin-top: 0px;
    border-top: 2px solid #4a9eff;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    color: #4a9eff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.footer-section p {
    color: #b0bcc4;
    margin-bottom: 10px;
}

.footer-section a {
    color: #4a9eff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

/* ============================= */
/* MOBILE STYLES */
/* ============================= */
@media (max-width: 768px) {

    /* Header */
    .header-container {
        flex-direction: column;
        align-items: center;
        padding: 12px 20px;
        gap: 10px;
        width: 100%;
    }

    header .logo {
        height: 45px;
    }

    .logo-text {
        font-size: 1.2rem;
        text-align: center;
    }

    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 0;
    }

    header nav ul li a {
        font-size: 0.9rem;
        padding: 4px 6px;
    }

    /* General Section Padding */
    .welcome,
    .productions-content,
    .why-choose-section,
    .join-us,
    .supported-by,
    .cta,
    .about-content,
    .join-us-content {
        padding: 40px 20px;
    }

    /* Production Cards */
    .production-card {
        flex-direction: column;
        padding: 20px;
        max-width: 100%;
        width: 100%;
    }

    .production-image {
        max-width: 100%;
        width: 100%;
    }

    .production-info h3 {
        font-size: 1.5rem;
    }

    /* Director Section */
    .director-content {
        flex-direction: column;
    }

    /* Grids */
    .values-grid,
    .roles-grid,
    .application-steps {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sponsors {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Headings resize */
    .cta h2,
    .join-us h2,
    .join-us h3,
    .supported-by h2,
    .why-choose-section h2,
    .about-section h2 {
        font-size: 1.8rem;
    }

}