﻿* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: white;
    overflow-x: hidden;
}

body {
    font-family: Georgia, serif;
}

/* HERO */

.hero {
    position: relative;
    height: 100svh;
    min-height: 500px;
    overflow: hidden;
    background: #000;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("/img/topimage.png");
    background-size: cover;
    background-position: center 43%;
    opacity: .82;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( to bottom, rgba(0,0,0,.18), rgba(0,0,0,.42) ), radial-gradient( circle at center, rgba(0,0,0,.05), rgba(0,0,0,.55) );
    backdrop-filter: blur(2px);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
}

.hero-small-title {
    font-size: 17px;
    letter-spacing: 12px;
    color: #c79a5c;
    line-height: 1.2;
}

.hero-present {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 8px;
    color: #c79a5c;
}

.title-logo {
    display: block;
    width: min(620px, 78vw);
    margin: 34px auto 30px;
}

.hero-tagline {
    margin-top: 0;
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 8px;
    color: #c79a5c;
}

/* GOLD LINE */

.gold-line {
    width: 100%;
    height: 2px;
    background: #b8864b;
    opacity: .85;
}

/* SCRIPTURE */

.scripture-section {
    padding: 90px 24px;
    text-align: center;
}

    .scripture-section blockquote {
        max-width: 980px;
        margin: 60px auto;
        font-size: 40px;
        line-height: 1.7;
        font-style: italic;
    }

.scripture-reference {
    font-size: 14px;
    letter-spacing: 10px;
    color: #b8864b;
    padding-bottom: 50px;
}

/* INTRO */

.intro-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 110px 40px 90px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 110px;
    align-items: center;
}

.poster-wrap img {
    width: 100%;
    display: block;
    box-shadow: 0 0 90px rgba(199,154,92,.18), 0 0 140px rgba(199,154,92,.10), 0 40px 100px rgba(0,0,0,.88);
}

.intro-text {
    max-width: 560px;
}

.intro-title-logo {
    display: block;
    width: 500px;
    max-width: 100%;
    margin: 0 auto 18px;
}

.intro-text h3 {
    margin: 0 0 34px;
    text-align: center;
    font-size: 22px;
    line-height: 1.45;
    font-weight: normal;
    color: #c79a5c;
    letter-spacing: 2px;
}

.intro-text p {
    margin: 0 0 22px;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,.88);
}

/* VIDEO */

.video-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 120px;
    text-align: center;
}

.watch-title {
    margin-bottom: 50px;
    font-size: 22px;
    letter-spacing: 12px;
    color: #c79a5c;
}

.video-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

    .video-thumb-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.92);
    color: #000;
    font-size: 52px;
    padding-left: 8px;
    cursor: pointer;
    transition: .2s ease;
}

    .play-button:hover {
        transform: translate(-50%, -50%) scale(1.08);
    }

.film-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: black;
}

/* QUOTE */

.quote-section {
    padding: 120px 24px 160px;
    text-align: center;
}

.quote-section blockquote {
    max-width: 980px;
    margin: 55px auto;
    font-size: 30px;
    line-height: 1.75;
    font-style: italic;
    font-weight: 400;
}

.quote-bottom {
    margin-top: 0;
}

.quote-author {
    font-size: 22px;
    letter-spacing: 10px;
    color: #b8864b;
}

/* MOBILE */

@media (max-width: 900px) {

    .hero-small-title {
        font-size: 14px;
        letter-spacing: 5px;
    }

    .hero-present {
        font-size: 12px;
    }

    .hero-tagline {
        font-size: 16px;
        letter-spacing: 4px;
    }

    .scripture-section blockquote {
        font-size: 24px;
    }

    .intro-section {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 70px 24px;
    }

    .poster-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

    .intro-text {
        max-width: 100%;
    }

    .intro-title-logo {
        width: 320px;
        margin: -50px auto -22px;
    }

    .intro-text h3 {
        font-size: 18px;
    }

    .intro-text p {
        font-size: 16px;
    }

    .quote-section blockquote {
        font-size: 24px;
    }

    .play-button {
        width: 80px;
        height: 80px;
        font-size: 34px;
    }
}
/* FOOTER */

.site-footer {
    background: #ffffff;
    padding: 42px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    width: 220px;
    max-width: 80%;
    display: block;
}