.trailer-hero {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    padding: 120px 20px 60px;

    box-sizing: border-box;
}


/* VIDEO CONTAINER */

.trailer-video-wrapper {
    position: relative;

    width: 100%;
    max-width: 1100px;

    aspect-ratio: 16 / 9;

    overflow: hidden;

    background: #000;

    border: 1px solid #ddd;
    border-radius: 6px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.18);
}


/* YOUTUBE VIDEO */

.trailer-video-wrapper iframe {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


/* TABLET */

@media (max-width: 991px) {

    .trailer-hero {
        min-height: auto;

        padding:
            100px 25px
            60px;
    }

}


/* MOBILE */

@media (max-width: 576px) {

    .trailer-hero {
        padding:
            90px 15px
            40px;
    }

    .trailer-video-wrapper {
        border-radius: 3px;

        box-shadow:
            0 15px 40px rgba(0, 0, 0, 0.15);
    }

}
/*=========================================
            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;
    }

}
