/* :root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #2F4F4F;
    --text-color: #333;
    --light-gray: #e0e0e0;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #f5f5f5;
    font-size: 18px;
    font-weight: bold; /* Added this line to make text slightly bolder */
}

header {
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(5px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f5f5f5;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    font-size: 16px;
}

nav ul li a:hover {
    color: #2F4F4F;
}


section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 5px solid #2F4F4F;
    padding-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

#hero {
    background-color: #e0e0e0;
    height: auto;
    padding: 2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 0 1 45%;
    text-align: left;
    padding-right: 2rem;
}

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.hero-image {
    flex: 0 1 50%;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

#hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 1rem;
}

.subtitle {
    font-style: italic;
    font-size: 1.2rem;
    color: #2F4F4F;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #2F4F4F;
    color: #f5f5f5;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.button:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

blockquote {
    margin: 0;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.05);
    border-left: 4px solid #333;
}

blockquote p {
    font-style: italic;
    margin-bottom: 0.5rem;
}


.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.member {
    flex: 1 1 300px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.member:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.production-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.production-info div {
    flex: 1 1 100px;
    text-align: center;
}

.production-info img {
    width: 60px;
    margin-bottom: 0.5rem;
}

.deadline {
    text-align: center;
    font-weight: bold;
    font-style: italic;
}

#filmmaker, #production {
    background-color: #e0e0e0;
}

#filmmaker img {
    float: left;
    margin-right: 2rem;
    margin-bottom: 1rem;
    width: 200px;
    border-radius: 10px;
}



.accolades {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.accolades img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    #hero {
        padding: 4rem 1rem;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-text {
        flex: 1 1 100%;
        text-align: center;
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-image {
        flex: 1 1 100%;
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .button {
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
    }

    .team-members {
        grid-template-columns: 1fr;
    }

    .production-info {
        flex-direction: column;
        gap: 1rem;
    }

    #filmmaker img {
        float: none;
        display: block;
        margin: 0 auto 2rem;
        width: 100%;
        max-width: 200px;
    }

    .accolades {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .accolades img {
        height: 100px;
        max-width: none;
        width: auto;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    #hero h1 {
        font-size: 2.5rem;
    }

    #hero p {
        font-size: 1rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    section {
        padding: 2rem 1rem;
    }
}

footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    footer {
        padding: 1.5rem 1rem;
    }

    footer p {
        font-size: 0.8rem;
    }
}

#contact {
    background-color: #f5f5f5;
    padding: 4rem 2rem;
    text-align: center;
}

#contact h2 {
    margin-bottom: 2rem;
}

#contact p, #contact a {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

#contact a {
    color: #2F4F4F;
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact a:hover {
    color: #1a1a1a;
}

@media (max-width: 768px) {
    #contact {
        padding: 3rem 1rem;
    }

    #contact p, #contact a {
        font-size: 1rem;
    }
}