/*=========================================
            CONTACT CTA
=========================================*/

.contact-cta {
    position: relative;
    padding: 140px 20px;

    background-image: url("images/books-footer.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
}


/* CTA Overlay */

.cta-overlay {
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.78);
}


/* CTA Content */

.cta-content {
    position: relative;
    z-index: 2;

    max-width: 760px;
    margin: auto;

    text-align: center;
}


/* CTA Heading */

.cta-content h2 {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 700;

    font-size: 64px;

    color: #4a403a;

    margin-bottom: 25px;
}


/* CTA Paragraph */

.cta-content p {
    font-family: "Lato", sans-serif;

    font-size: 24px;
    line-height: 1.8;

    color: #4e4e4e;

    margin-bottom: 45px;
}


/* CTA Button */

.cta-btn {
    display: inline-block;

    width: 400px;
    max-width: 100%;

    padding: 18px 20px;

    background: #f5a623;
    color: #333;

    font-size: 28px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 50px;

    transition: 0.35s;
}


/* CTA Button Hover */

.cta-btn:hover {
    background: #e49412;
    color: #fff;

    transform: translateY(-3px);
}


/*=========================================
            RESPONSIVE
=========================================*/

@media (max-width: 768px) {

    .contact-cta {
        padding: 90px 20px;
    }

    .cta-content h2 {
        font-size: 42px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .cta-btn {
        width: 100%;
        font-size: 22px;
    }

}
/* =========================================================
   VIDEO HIGHLIGHTS / HOME TRAILER
========================================================= */

.home-trailer {
    padding: 110px 20px;
    background: #ffffff;
    text-align: center;
}

.home-trailer .container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}


/* =========================================================
   TRAILER CONTENT
========================================================= */

.trailer-content h2 {
    margin: 0 0 15px;

    font-family: "Playfair Display", serif;
    font-size: 52px;
    font-style: italic;
    font-weight: 800;
    line-height: 1.25;

    color: #4a403a;
}

.trailer-content > p {
    max-width: 700px;
    margin: 0 auto 40px;

    font-family: "Lato", "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.8;

    color: #5a5551;
}


/* =========================================================
   TRAILER VIDEO
========================================================= */

.trailer-video {
    position: relative;

    width: 100%;
    max-width: 900px;

    margin: 0 auto 35px;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    border-radius: 15px;

    background: #000000;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15);
}

.trailer-video iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================================
   TRAILER BUTTON
========================================================= */

.trailer-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 32px;

    background: #f5a623;
    color: #ffffff;

    border-radius: 50px;

    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.trailer-btn:hover {
    background: #df9015;
    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .home-trailer {
        padding-top: 80px;
        padding-bottom: 80px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .home-trailer {
        padding: 70px 20px;
    }

    .trailer-content h2 {
        font-size: 36px;
    }

    .trailer-content > p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .trailer-video {
        margin-bottom: 30px;
        border-radius: 10px;
    }

    .trailer-btn {
        width: 100%;
        max-width: 300px;

        padding: 14px 25px;

        font-size: 14px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .trailer-content h2 {
        font-size: 31px;
    }

    .trailer-content > p {
        font-size: 15px;
    }

    .trailer-btn {
        font-size: 13px;
    }

}
