/* =========================================
   TRUE WORSHIPERS — GIVE PAGE
   ========================================= */

:root {
    --gold: #d4af37;
    --gold-light: #f5d76e;
    --dark: #050505;
    --dark-soft: #0d0d0d;
    --text: #f5f5f5;
    --muted: #b8b8b8;
}


/* =========================================
   GENERAL
   ========================================= */

body {
    margin: 0;
    background: var(--dark);
    color: var(--text);
    font-family: Arial, sans-serif;
}

section {
    position: relative;
    overflow: hidden;
}

.eyebrow {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 15px;
}

.gold-line {
    width: 70px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
}


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

header {
    position: relative;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 7%;

    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.logo {
    color: var(--gold);
    font-weight: bold;
    letter-spacing: 3px;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--gold);
}


/* =========================================
   GIVE HERO / HEADING IMAGE
   ========================================= */

.give-hero {
    min-height: 75vh;

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

    text-align: center;

    padding: 80px 20px;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.60),
            rgba(0, 0, 0, 0.88)
        ),
        url("../images/give.jpg") center/cover no-repeat;
}

.give-content {
    max-width: 750px;
}

.give-content h1 {
    font-size: clamp(60px, 12vw, 130px);

    letter-spacing: 15px;

    margin: 0;

    color: var(--gold);

    text-shadow:
        0 0 15px rgba(212, 175, 55, 0.35),
        0 0 40px rgba(212, 175, 55, 0.15);
}

.give-content h2 {
    font-size: clamp(28px, 5vw, 45px);
    margin-top: 30px;
}

.give-content > p:not(.eyebrow):not(.scripture):not(.reference) {
    max-width: 600px;

    margin: 20px auto;

    color: var(--muted);

    line-height: 1.8;

    font-size: 17px;
}

.scripture {
    margin-top: 35px;

    font-family: Georgia, serif;

    font-size: 22px;

    font-style: italic;

    color: white;
}

.reference {
    color: var(--gold);
    font-size: 14px;
}


/* =========================================
   WHY WE GIVE
   ========================================= */

.why-give {
    padding: 100px 8%;

    background: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.78)
        ),
        url("../images/twcm.jpg");

    background-size: cover;
    background-position: center;

    position: relative;
}


    text-align: center;
}

.section-heading {
    text-align: center;

    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: clamp(32px, 5vw, 55px);

    margin: 0;
}

.give-text {
    max-width: 800px;

    margin: auto;
}

.give-text p {
    color: var(--muted);

    line-height: 1.9;

    font-size: 17px;

    margin-bottom: 25px;
}


/* =========================================
   WAYS TO GIVE
   ========================================= */

.ways-to-give {
    padding: 100px 7%;

    background: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.78)
        ),
        url("../images/ftd.jpg");

    background-size: cover;
    background-position: center;

    position: relative;
}

}

.giving-cards {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.giving-card {
    padding: 40px 30px;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            rgba(212, 175, 55, 0.08),
            rgba(255, 255, 255, 0.02)
        );

    border: 1px solid rgba(212, 175, 55, 0.25);

    border-radius: 15px;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.giving-card:hover {
    transform: translateY(-8px);

    border-color: var(--gold);

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(212, 175, 55, 0.12);
}

.card-icon {
    font-size: 45px;

    margin-bottom: 20px;
}

.giving-card h3 {
    color: var(--gold);

    font-size: 24px;
}

.giving-card p {
    color: var(--muted);

    line-height: 1.7;

    min-height: 80px;
}

.giving-card button {
    margin-top: 20px;

    padding: 12px 25px;

    border: 1px solid var(--gold);

    border-radius: 30px;

    background: transparent;

    color: var(--gold);

    cursor: default;

    font-weight: bold;
}


/* =========================================
   GIVING DECLARATION
   ========================================= */

.giving-declaration {
    min-height: 450px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 70px 20px;

    background:
        radial-gradient(
            circle,
            rgba(212, 175, 55, 0.14),
            transparent 65%
        );
}

.giving-declaration h2 {
    font-size: clamp(38px, 7vw, 75px);

    line-height: 1.1;

    color: var(--gold);

    margin: 15px 0 25px;
}

.giving-declaration p:last-child {
    max-width: 550px;

    color: var(--muted);

    line-height: 1.8;
}


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

footer {
    padding: 30px 20px;

    text-align: center;

    background: linear-gradient(
            rgba(0, 0, 0, 0.6),
            rgba(0, 0, 0, 0.78)
        ),
        url("../images/logo-bg.jpg");

    background-size: cover;
    background-position: center;

    position: relative;
}


    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

footer p {
    margin: 0;

    color: #777;

    font-size: 13px;
}


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

@media (max-width: 800px) {

    header {
        flex-direction: column;

        gap: 18px;
    }

    nav {
        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;
    }

    .giving-cards {
        grid-template-columns: 1fr;

        max-width: 500px;
    }

    .give-hero {
        min-height: 65vh;
    }

    .give-content h1 {
        letter-spacing: 8px;
    }

}


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

@media (max-width: 450px) {

    .give-hero {
        padding: 60px 18px;
    }

    .give-content h1 {
        font-size: 55px;

        letter-spacing: 6px;
    }

    .giving-card {
        padding: 30px 20px;
    }

}