/* intro start */
.hero {
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 40px;
}

.hero .container {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;

    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    /* font-size: 3rem;
    line-height: 1.25;
    font-weight: 700;
    color: #111; */
    margin-bottom: 32px;
}

.hero-content p {
    /* font-size: 1.15rem;
    line-height: 1.8;
    color: #555; */
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 220px;
    height: 64px;
    text-decoration: none;
    font-weight: 600;
    /* font-size: 1rem; */

    transition: 0.3s ease;
}

.btn-primary {
    background: #000;
    color: #fff;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    border: 2px solid #000;
    color: #000;
    background: transparent;
}

.btn-secondary:hover {
    background: #000;
    color: #fff;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    display: block;
}
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

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

    .btn {
        width: 100%;
    }
}
/* intro end */

/* statistic bar start */
.stats-bar {
    background: #000;
    color: #fff;

    padding: 32px 40px;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 1.75rem;
    font-weight: 500;

    padding: 0 60px;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 24px;
    }

    .divider {
        width: 100%;
        height: 1px;
    }

    .stat-item {
        padding: 0;
        justify-content: center;
        text-align: center;
        font-size: 1.125rem;
    }
}
/* statistic bar end */

/* featured films start */
.featured-films {
    background: #f5f5f5;
    padding: 100px 40px;
}

.featured-films .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 60px;
}

.films-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
}

.film-card {
    text-align: center;
}

.film-thumbnail {
    position: relative;
    display: block;

    overflow: hidden;
    border-radius: 12px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Image */
.film-thumbnail img {
    width: 100%;
    display: block;

    aspect-ratio: 16 / 9;
    object-fit: cover;

    transition: transform 0.4s ease;
}

/* Dark overlay */
.film-thumbnail::after {
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0);

    transition: background 0.4s ease;

    pointer-events: none;
}

/* Hover Effects */
.film-thumbnail:hover img {
    transform: scale(1.05);
}

.film-thumbnail:hover::after {
    background: rgba(0, 0, 0, 0.15);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 90px;
    height: 90px;

    transform: translate(-50%, -50%);
}

.play-icon svg {
    width: 100%;
    height: 100%;
    fill: rgba(255, 255, 255, 0.9);
}

.film-card h3 {
    margin-top: 18px;

    font-size: 1.4rem;
    font-weight: 500;
    color: #111;
}

.films-cta {
    text-align: center;
    margin-top: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 280px;
    height: 64px;

    background: #000;
    color: #fff;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}
@media (max-width: 992px) {
    .films-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .featured-films {
        padding: 80px 24px;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .play-icon {
        width: 70px;
        height: 70px;
    }

    .film-card h3 {
        font-size: 1.2rem;
    }
}
/* featured films end */

/* awards start */
.awards-section {
    background: #f5f5f5;
    padding: 100px 40px;
}

.awards-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.awards-section .section-title {
    text-align: center;
    margin-bottom: 70px;
    font-weight: 700;
    color: #111;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.award-card {
    display: flex;
    align-items: center;
    gap: 30px;
}

.award-line {
    width: 4px;
    min-height: 140px;
    background: #111;
    flex-shrink: 0;
}

.award-content {
    flex: 1;
    display: flex;
    gap: 15px;
}

.award-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.award-heading h3 {
    margin: 0;
    font-weight: 600;
    color: #111;
}

.award-icon {
    display: flex;
    align-items: flex-start;
}

.award-icon svg {
    width: 28px;
    height: 28px;
}

.festival {
    margin: 0 0 12px;
    color: #4a5568;
}

.award-meta {
    margin: 0;
    color: #718096;
}
@media (max-width: 992px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .award-line {
        min-height: 100px;
    }
}

@media (max-width: 640px) {
    .awards-section {
        padding: 80px 24px;
    }

    .award-heading h3 {
        font-size: 1.2rem;
    }

    .festival {
        font-size: 1rem;
    }
}
/* awards end */
/* about section start */
.about-section {
    background-color: #fbf9fa;
    padding-top: 30px;
}
.about-section .hero {
    background-color: #fbf9fa;
}
.about-title {
    text-align: center;
}
/* about section end */
/* cta start */
.home-cta {
    padding: 120px 0;
    background: #111;
    color: #fff;
    text-align: center;
}

.home-cta .cta-button {
    margin-top: 28px;
    background: #fff;
    color: #111;
}
.cta-button-rectangular {
    border-radius: 0;
}
/* cta end */

/* faq start */
.faq-section {
    padding: 120px 0;
    background: #fff;
}

.faq-list {
    margin-top: 50px;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 24px 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    font-size: 2rem;
    text-align: left;
    cursor: pointer;
    position: relative;
    font-family: inherit;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
}

.faq-item.active .faq-question::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding-top: 18px;
    line-height: 1.8;
    opacity: 0.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 640px) {
    .home-hero,
    .home-intro,
    .featured-content,
    .latest-posts,
    .faq-section,
    .home-cta {
        padding: 80px 20px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

    .hero-description,
    .home-intro p,
    .home-cta p {
        font-size: 1.6rem;
    }

    .faq-question {
        font-size: 1.8rem;
    }
}
/* faq end */
