/*
Theme Name: Refreshing Word Online
Theme URI: https://refreshingwordchurch.org
Author: Refreshing Word Church
Description: Refreshing Word Church temporary ministry landing page.
Version: 4.1
*/


/* =========================================================
   VARIABLES
========================================================= */

:root {
    --rwc-green: #00594f;
    --rwc-dark-green: #003d38;
    --rwc-deep-green: #002f2c;

    --rwc-cream: #f4efe6;
    --rwc-light-cream: #faf7f1;

    --rwc-dark: #191817;
    --rwc-brown: #756960;
    --rwc-light-brown: #a69687;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;

    color: var(--rwc-dark);
    background: var(--rwc-cream);

    font-family: Georgia, "Times New Roman", serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

.rwc-homepage {
    margin: 0;
    padding: 0;
}


/* =========================================================
   HEADER
========================================================= */

.rwc-site-header {
    position: relative;
    z-index: 100;

    width: 100%;

    background: rgba(255,255,255,0.98);

    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.rwc-header-container {
    width: min(1320px, 94%);

    min-height: 165px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        420px 1fr 170px;

    align-items: center;

    gap: 30px;
}


/* HEADER LOGO */

.rwc-header-logo {
    display: flex;
    align-items: center;
}

.rwc-header-logo img {
    width: 330px;

    max-height: 145px;

    object-fit: contain;
}


/* HEADER NAV */

.rwc-main-nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 70px;
}

.rwc-main-nav a {
    color: #252321;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.18em;
}

.rwc-main-nav a:hover {
    color: var(--rwc-green);
}


/* HEADER GIVE */

.rwc-header-give-button {
    justify-self: end;

    min-width: 150px;

    min-height: 58px;

    padding: 0 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: #fff;

    background: var(--rwc-green);

    border-radius: 4px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.15em;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.rwc-header-give-button:hover {
    color: #fff;

    background: var(--rwc-dark-green);

    transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.rwc-hero {
    position: relative;

    min-height: 1100px;

    display: flex;

    justify-content: center;

    background-image:
        url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2400&q=90");

    background-size: cover;

    background-position: center 46%;

    background-repeat: no-repeat;
}

.rwc-hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(248,246,241,0.76) 0%,
            rgba(248,246,241,0.64) 34%,
            rgba(248,246,241,0.56) 68%,
            rgba(248,246,241,0.39) 100%
        );
}

.rwc-hero-content {
    position: relative;

    z-index: 2;

    width: min(1160px, 95%);

    margin: 0 auto;

    padding: 35px 20px 115px;

    text-align: center;
}


/* =========================================================
   MASSIVE HERO LOGO
========================================================= */

.rwc-main-logo {
    width: 800px;

    max-width: 95vw;

    height: 430px;

    margin: 0 auto 15px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.rwc-main-logo img {
    width: 100%;

    max-height: 420px;

    object-fit: contain;
}

.rwc-title-divider {
    width: 110px;

    height: 1px;

    margin: 5px auto 35px;

    background: rgba(0,89,79,0.60);
}


/* =========================================================
   REVAMP TEXT
========================================================= */

.rwc-revamp-content {
    max-width: 1050px;

    margin: 0 auto;
}

.rwc-script-title {
    margin: 0 0 -14px;

    color: #786d64;

    font-family:
        "Brush Script MT",
        "Segoe Script",
        cursive;

    font-size: clamp(65px, 8vw, 110px);

    line-height: 1;
}

.rwc-hero h1 {
    margin: 0;

    color: #171614;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(82px, 11vw, 145px);

    font-weight: 400;

    line-height: 0.95;

    text-transform: uppercase;

    letter-spacing: 0.12em;
}

.rwc-eyebrow {
    margin: 38px 0 34px;

    color: #34312e;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.36em;
}

.rwc-hero-copy {
    max-width: 820px;

    margin: 0 auto 10px;

    color: #2c2926;

    font-size: 25px;

    line-height: 1.6;
}

.rwc-secondary-copy {
    margin-bottom: 42px;

    color: #514943;
}


/* =========================================================
   MAIN BUTTON
========================================================= */

.rwc-main-button {
    width: min(540px, 100%);

    min-height: 76px;

    margin: 0 auto;

    padding: 20px 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 22px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #006058,
            #00473f
        );

    border-radius: 4px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.20em;

    box-shadow:
        0 15px 35px
        rgba(0,65,57,0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.rwc-main-button:hover {
    color: #fff;

    transform: translateY(-3px);

    box-shadow:
        0 20px 44px
        rgba(0,57,50,0.27);
}

.rwc-heart {
    font-size: 22px;
}

.rwc-arrow {
    font-size: 22px;
}


/* =========================================================
   SCRIPTURE
========================================================= */

.rwc-scripture {
    margin-top: 34px;
}

.rwc-scripture p {
    margin: 0 0 9px;

    font-size: 22px;

    font-style: italic;

    color: #2f2b28;
}

.rwc-scripture span {
    font-family: Arial, Helvetica, sans-serif;

    color: #4b4642;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.28em;
}


/* =========================================================
   GIVING SECTION
========================================================= */

.rwc-giving-section {
    position: relative;

    min-height: 700px;

    display: flex;

    align-items: center;

    justify-content: center;

    background-image:
        url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2400&q=90");

    background-size: cover;

    background-position: center 72%;
}

.rwc-giving-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,60,55,0.84),
            rgba(0,41,38,0.95)
        );
}

.rwc-giving-content {
    position: relative;

    z-index: 2;

    width: min(950px, 92%);

    margin: 0 auto;

    padding: 115px 20px;

    text-align: center;
}

.rwc-giving-kicker {
    margin: 0 0 24px;

    color: rgba(255,255,255,0.78);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.32em;
}

.rwc-giving-content h2 {
    margin: 0 auto 32px;

    color: #fff;

    font-size: clamp(56px, 7vw, 88px);

    font-weight: 400;

    line-height: 1.08;
}

.rwc-giving-content h2 span {
    display: block;
}

.rwc-giving-description {
    max-width: 780px;

    margin: 0 auto 45px;

    color: rgba(255,255,255,0.88);

    font-size: 21px;

    line-height: 1.75;
}


/* GIVE BUTTON */

.rwc-donate-button {
    width: min(520px, 100%);

    min-height: 72px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    padding: 18px 28px;

    color: #20201f;

    background: var(--rwc-light-cream);

    border-radius: 4px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.20em;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.rwc-donate-button:hover {
    color: #171716;

    background: #fff;

    transform: translateY(-3px);
}


/* REACH MESSAGE */

.rwc-reach-message {
    margin: 42px auto 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;
}

.rwc-reach-message span {
    width: 65px;

    height: 1px;

    background: rgba(255,255,255,0.36);
}

.rwc-reach-message p {
    margin: 0;

    color: rgba(255,255,255,0.68);

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.27em;
}


/* =========================================================
   CREAM FOOTER
========================================================= */

.rwc-footer {
    width: 100%;

    background: var(--rwc-cream);

    color: var(--rwc-dark);

    border-top: 1px solid rgba(0,0,0,0.08);
}

.rwc-footer-main {
    width: min(1280px, 94%);

    min-height: 360px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        380px 1fr 280px;

    align-items: center;

    gap: 60px;
}


/* FOOTER LOGO */

.rwc-footer-logo {
    padding-right: 50px;

    border-right:
        1px solid rgba(37,34,31,0.16);
}

.rwc-footer-logo img {
    width: 360px;

    max-width: 100%;

    max-height: 235px;

    object-fit: contain;
}


/* FOOTER NAV */

.rwc-footer-navigation {
    text-align: center;
}

.rwc-footer-navigation nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 65px;
}

.rwc-footer-navigation nav a {
    color: #292725;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.19em;
}

.rwc-footer-navigation nav a:hover {
    color: var(--rwc-green);
}

.rwc-footer-tagline {
    margin: 32px 0 0;

    color: #857b72;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 0.24em;
}

.rwc-footer-tagline span {
    margin: 0 10px;
}


/* SOCIAL */

.rwc-footer-connect {
    padding-left: 50px;

    border-left:
        1px solid rgba(37,34,31,0.16);

    text-align: center;
}

.rwc-footer-connect > p {
    margin: 0 0 22px;

    color: #796f67;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.24em;
}

.rwc-social-row {
    display: flex;

    justify-content: center;

    gap: 15px;
}

.rwc-social-row a {
    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--rwc-green);

    border:
        1px solid rgba(0,89,79,0.28);

    border-radius: 50%;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    font-weight: 700;
}

.rwc-social-row a:hover {
    color: #fff;

    background: var(--rwc-green);
}


/* FOOTER COPYRIGHT */

.rwc-footer-bottom {
    width: min(1280px, 94%);

    margin: 0 auto;

    padding: 28px 20px 38px;

    text-align: center;

    border-top:
        1px solid rgba(37,34,31,0.11);
}

.rwc-footer-bottom p {
    margin: 0;

    color: #81776f;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;
}


/* =========================================================
   WORDPRESS CLEANUP
========================================================= */

body.home #page,
body.home #content,
body.home .site,
body.home .site-content {
    max-width: none !important;

    width: 100% !important;

    margin: 0 !important;

    padding: 0 !important;
}

body.home .entry-header,
body.home .entry-footer {
    display: none !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .rwc-header-container {
        width: 92%;
        min-height: 115px;
        grid-template-columns: 1fr auto;
        gap: 20px;
    }

    .rwc-header-logo img {
        width: 230px;
        max-height: 95px;
    }

    .rwc-main-nav {
        display: none;
    }

    .rwc-header-give-button {
        min-width: 115px;
        min-height: 48px;
        padding: 0 18px;
        font-size: 10px;
    }


    /* HERO */

    .rwc-hero {
        min-height: 930px;
        background-position: center center;
    }

    .rwc-hero-content {
        width: 100%;
        padding: 25px 20px 75px;
    }

    .rwc-main-logo {
        width: 520px;
        max-width: 90vw;
        height: 300px;
        margin: 0 auto 10px;
    }

    .rwc-main-logo img {
        width: 100%;
        max-height: 290px;
        object-fit: contain;
    }

    .rwc-title-divider {
        width: 85px;
        margin: 5px auto 26px;
    }

    .rwc-script-title {
        font-size: 58px;
        margin-bottom: -8px;
    }

    .rwc-hero h1 {
        font-size: 72px;
        letter-spacing: 0.07em;
        line-height: 1;
        white-space: nowrap;
    }

    .rwc-eyebrow {
        font-size: 11px;
        line-height: 1.6;
        letter-spacing: 0.24em;
        margin: 24px 0;
    }

    .rwc-hero-copy {
        max-width: 620px;
        font-size: 19px;
        line-height: 1.55;
    }

    .rwc-secondary-copy {
        margin-bottom: 32px;
    }


    /* GIVING */

    .rwc-giving-content {
        width: 92%;
        padding: 85px 20px;
    }

    .rwc-giving-content h2 {
        font-size: 54px;
    }

    .rwc-giving-description {
        font-size: 17px;
    }


    /* FOOTER */

    .rwc-footer-main {
        width: 92%;
        padding: 60px 0;
        grid-template-columns: 1fr;
        gap: 42px;
        text-align: center;
    }

    .rwc-footer-logo {
        padding: 0;
        border-right: 0;
    }

    .rwc-footer-logo img {
        width: 330px;
        margin: 0 auto;
    }

    .rwc-footer-navigation nav {
        gap: 45px;
    }

    .rwc-footer-connect {
        padding: 0;
        border-left: 0;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* HEADER */

    .rwc-site-header {
        position: relative;
    }

    .rwc-header-container {
        width: 92%;
        min-height: 95px;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .rwc-header-logo img {
        width: 180px;
        max-height: 78px;
    }

    .rwc-main-nav {
        display: none;
    }

    .rwc-header-give-button {
        min-width: 96px;
        min-height: 44px;
        padding: 0 14px;
        gap: 7px;
        font-size: 9px;
        letter-spacing: 0.12em;
    }

    .rwc-header-give-button .rwc-heart {
        font-size: 14px;
    }


    /* HERO */

    .rwc-hero {
        min-height: auto;
        background-position: 53% center;
    }

    .rwc-hero-overlay {
        background:
            linear-gradient(
                to bottom,
                rgba(248,246,241,0.74) 0%,
                rgba(248,246,241,0.66) 48%,
                rgba(248,246,241,0.50) 100%
            );
    }

    .rwc-hero-content {
        width: 100%;
        padding: 18px 18px 70px;
    }


    /* LARGE MOBILE LOGO */

    .rwc-main-logo {
        width: 360px;
        max-width: 94vw;
        height: 245px;
        margin: 0 auto 4px;
    }

    .rwc-main-logo img {
        width: 100%;
        max-height: 235px;
        object-fit: contain;
    }

    .rwc-title-divider {
        width: 75px;
        margin: 0 auto 24px;
    }


    /* REVAMP WORDING */

    .rwc-revamp-content {
        width: 100%;
        max-width: 100%;
    }

    .rwc-script-title {
        margin: 0 0 -5px;
        font-size: 48px;
        line-height: 1;
    }

    .rwc-hero h1 {
        width: 100%;
        margin: 0 auto;
        font-size: clamp(42px, 13vw, 58px);
        line-height: 1;
        letter-spacing: 0.045em;
        white-space: normal;
        overflow-wrap: normal;
        word-break: normal;
        text-align: center;
    }

    .rwc-eyebrow {
        margin: 24px auto 22px;
        padding: 0 5px;
        font-size: 9px;
        line-height: 1.7;
        letter-spacing: 0.22em;
    }

    .rwc-hero-copy {
        max-width: 340px;
        margin-left: auto;
        margin-right: auto;
        font-size: 17px;
        line-height: 1.55;
    }

    .rwc-secondary-copy {
        margin-bottom: 28px;
    }


    /* MAIN GIVE BUTTON */

    .rwc-main-button {
        width: min(340px, 92vw);
        min-height: 58px;
        padding: 15px 18px;
        gap: 11px;
        font-size: 9px;
        letter-spacing: 0.12em;
    }

    .rwc-main-button .rwc-heart,
    .rwc-main-button .rwc-arrow {
        font-size: 16px;
    }


    /* SCRIPTURE */

    .rwc-scripture {
        margin-top: 25px;
    }

    .rwc-scripture p {
        max-width: 300px;
        margin: 0 auto 7px;
        font-size: 17px;
        line-height: 1.35;
    }

    .rwc-scripture span {
        font-size: 8px;
        letter-spacing: 0.22em;
    }


    /* GIVING SECTION */

    .rwc-giving-section {
        min-height: auto;
        background-position: 52% center;
    }

    .rwc-giving-content {
        width: 100%;
        padding: 75px 20px;
    }

    .rwc-giving-kicker {
        max-width: 270px;
        margin: 0 auto 18px;
        font-size: 9px;
        line-height: 1.5;
        letter-spacing: 0.25em;
    }

    .rwc-giving-content h2 {
        max-width: 340px;
        margin: 0 auto 25px;
        font-size: 42px;
        line-height: 1.08;
    }

    .rwc-giving-content h2 span {
        display: block;
    }

    .rwc-giving-description {
        max-width: 330px;
        margin: 0 auto 32px;
        font-size: 16px;
        line-height: 1.6;
    }

    .rwc-donate-button {
        width: min(340px, 92vw);
        min-height: 58px;
        padding: 15px 16px;
        gap: 10px;
        font-size: 9px;
        letter-spacing: 0.11em;
    }

    .rwc-donate-button .rwc-heart,
    .rwc-donate-button .rwc-arrow {
        font-size: 15px;
    }

    .rwc-reach-message {
        margin-top: 30px;
        gap: 10px;
    }

    .rwc-reach-message span {
        width: 25px;
    }

    .rwc-reach-message p {
        font-size: 7px;
        letter-spacing: 0.13em;
        white-space: nowrap;
    }


    /* FOOTER */

    .rwc-footer-main {
        width: 90%;
        min-height: auto;
        padding: 55px 0 45px;
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .rwc-footer-logo {
        padding: 0;
        border: 0;
    }

    .rwc-footer-logo img {
        width: 280px;
        max-width: 85vw;
        margin: 0 auto;
    }

    .rwc-footer-navigation nav {
        gap: 42px;
    }

    .rwc-footer-navigation nav a {
        font-size: 12px;
        letter-spacing: 0.16em;
    }

    .rwc-footer-tagline {
        max-width: 280px;
        margin: 24px auto 0;
        font-size: 9px;
        line-height: 1.8;
        letter-spacing: 0.17em;
    }

    .rwc-footer-tagline span {
        margin: 0 5px;
    }

    .rwc-footer-connect {
        padding: 0;
        border: 0;
    }

    .rwc-footer-connect > p {
        font-size: 10px;
    }

    .rwc-social-row a {
        width: 43px;
        height: 43px;
        font-size: 10px;
    }

    .rwc-footer-bottom {
        width: 90%;
        padding: 22px 10px 28px;
    }

    .rwc-footer-bottom p {
        font-size: 9px;
        line-height: 1.5;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .rwc-header-logo img {
        width: 155px;
    }

    .rwc-header-give-button {
        min-width: 88px;
        padding: 0 11px;
    }

    .rwc-main-logo {
        width: 320px;
        height: 220px;
    }

    .rwc-main-logo img {
        max-height: 210px;
    }

    .rwc-script-title {
        font-size: 43px;
    }

    .rwc-hero h1 {
        font-size: 42px;
        letter-spacing: 0.025em;
    }

    .rwc-eyebrow {
        font-size: 8px;
        letter-spacing: 0.18em;
    }

    .rwc-hero-copy {
        font-size: 16px;
    }

    .rwc-giving-content h2 {
        font-size: 37px;
    }

    .rwc-footer-logo img {
        width: 250px;
    }
}