/* =========================================
   Guardian Angels Evangelism Ministry
   International
   Main Website Stylesheet
========================================= */

:root {
    --navy: #081b33;
    --navy-light: #123153;
    --gold: #c79531;
    --bright-gold: #e0b84f;
    --cream: #f7efdf;
    --light-cream: #fcf9f2;
    --brown: #3a250f;
    --red: #a61f24;
    --white: #ffffff;
    --text: #2b2b2b;
    --muted-text: #655e55;
    --border: rgba(199, 149, 49, 0.32);
    --shadow: 0 18px 45px rgba(8, 27, 51, 0.12);
}

/* GENERAL RESET */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: relative;
    z-index: 10;
    background: var(--white);
    border-bottom: 4px solid var(--gold);
}

.header-inner {
    min-height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.brand-logo {
    width: 92px;
    height: 92px;
    object-fit: contain;
}

.brand-text {
    display: block;
}

.brand-name {
    margin: 0;
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: bold;
    line-height: 1.15;
    text-transform: uppercase;
}

.brand-tagline {
    margin: 7px 0 0;
    color: var(--gold);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* NAVIGATION */

.navigation {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navigation a {
    position: relative;
    display: block;
    padding: 15px 0;
    color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: bold;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.navigation a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.navigation a:hover,
.navigation a.active {
    color: var(--gold);
}

.navigation a:hover::after,
.navigation a.active::after {
    transform: scaleX(1);
}

/* HERO */

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(8, 27, 51, 0.98) 0%,
            rgba(8, 27, 51, 0.91) 47%,
            rgba(8, 27, 51, 0.54) 100%
        ),
        url("../images/gaemi-logo.png") right 7% center / 610px auto no-repeat,
        var(--navy);
}

.hero::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 8px;
    background: linear-gradient(
        90deg,
        var(--gold),
        var(--bright-gold),
        var(--gold)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 100px 0;
}

.hero-kicker {
    margin: 0 0 18px;
    color: var(--bright-gold);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.88rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(3.2rem, 7vw, 6rem);
    line-height: 0.98;
}

.hero h1 span {
    display: block;
    margin-top: 15px;
    color: var(--bright-gold);
    font-size: 0.5em;
}

.hero-description {
    max-width: 650px;
    margin: 28px 0;
    color: rgba(255, 255, 255, 0.92);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.15rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* BUTTONS */

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border: 2px solid var(--gold);
    background: var(--gold);
    color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.86rem;
    font-weight: bold;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.button:hover {
    background: var(--bright-gold);
    border-color: var(--bright-gold);
    transform: translateY(-2px);
}

.button-outline {
    background: transparent;
    color: var(--white);
}

.button-outline:hover {
    color: var(--navy);
}

/* SHARED SECTION STYLES */

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: bold;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-title {
    margin: 0 0 20px;
    color: var(--navy);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    line-height: 1.08;
}

.section-title-left {
    text-align: left;
}

.section-copy {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.08rem;
    line-height: 1.8;
}

.section-copy-left {
    margin: 0;
    text-align: left;
}

/* INTRO */

.intro {
    padding: 90px 0;
    background: var(--cream);
    text-align: center;
}

.scripture {
    max-width: 900px;
    margin: 34px auto 0;
    color: var(--brown);
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    font-style: italic;
    line-height: 1.5;
}

.scripture-reference {
    margin: 16px 0 0;
    color: var(--red);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* MISSION PREVIEW */

.mission-preview {
    padding: 100px 0;
    background: var(--white);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 70px;
}

.preview-content {
    max-width: 680px;
}

.text-link {
    display: inline-block;
    margin-top: 28px;
    color: var(--red);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.88rem;
    font-weight: bold;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--gold);
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.text-link:hover {
    color: var(--gold);
    border-color: var(--red);
}

.mission-card {
    padding: 48px;
    background: var(--navy);
    border-top: 7px solid var(--gold);
    box-shadow: var(--shadow);
}

.card-label {
    margin: 0 0 12px;
    color: var(--bright-gold);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
    font-weight: bold;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mission-card h3 {
    margin: 0 0 20px;
    color: var(--white);
    font-size: 2rem;
    line-height: 1.2;
}

.mission-card p {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.86);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.75;
}

/* VALUE PREVIEW */

.values-preview {
    padding: 95px 0;
    background: var(--light-cream);
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px;
}

.value-card {
    padding: 38px 30px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 5px solid var(--gold);
    box-shadow: 0 12px 30px rgba(8, 27, 51, 0.08);
    text-align: left;
}

.value-card h3 {
    margin: 0 0 15px;
    color: var(--navy);
    font-size: 1.45rem;
}

.value-card p {
    margin: 0;
    color: var(--muted-text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.75;
}

.centered-button {
    margin-top: 42px;
    text-align: center;
}

/* SCRIPTURE BANNER */

.scripture-banner {
    padding: 78px 0;
    background: var(--gold);
    text-align: center;
}

.scripture-banner blockquote {
    max-width: 920px;
    margin: 0 auto;
    color: var(--navy);
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-style: italic;
    font-weight: bold;
    line-height: 1.45;
}

.scripture-banner p {
    margin: 18px 0 0;
    color: var(--navy);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.88rem;
    font-weight: bold;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* FOOTER */

.site-footer {
    padding: 65px 0 35px;
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 22px;
}

.footer-name {
    margin: 0;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-tagline {
    margin: 8px 0 0;
    color: var(--bright-gold);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.86rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.84);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: bold;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--bright-gold);
}

.copyright {
    margin: 36px 0 0;
    padding-top: 25px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.62);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.78rem;
}

/* TABLET */

@media (max-width: 1050px) {

    .header-inner {
        flex-direction: column;
        padding: 20px 0;
    }

    .navigation {
        flex-wrap: wrap;
        justify-content: center;
    }

    .preview-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .preview-content {
        max-width: 800px;
    }

}

/* MOBILE */

@media (max-width: 760px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand {
        flex-direction: column;
        text-align: center;
    }

    .brand-logo {
        width: 110px;
        height: 110px;
    }

    .navigation {
        gap: 10px 18px;
    }

    .navigation a {
        font-size: 0.74rem;
    }

    .hero {
        min-height: auto;
        background:
            linear-gradient(
                rgba(8, 27, 51, 0.93),
                rgba(8, 27, 51, 0.93)
            ),
            url("../images/gaemi-logo.png") center / 500px auto no-repeat,
            var(--navy);
    }

    .hero-content {
        margin: 0 auto;
        padding: 80px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .intro,
    .mission-preview,
    .values-preview {
        padding: 65px 0;
    }

    .section-title-left,
    .section-copy-left {
        text-align: center;
    }

    .text-link {
        display: table;
        margin-right: auto;
        margin-left: auto;
    }

    .mission-card {
        padding: 35px 28px;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

}

/* SMALL MOBILE */

@media (max-width: 480px) {

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero h1 {
        font-size: 2.65rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .brand-name {
        font-size: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

}
/* =========================================
   INTERNAL PAGE STYLES
========================================= */

.page-hero {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(8, 27, 51, 0.98),
            rgba(8, 27, 51, 0.86)
        ),
        url("../images/gaemi-logo.png") right 8% center / 390px auto no-repeat,
        var(--navy);
    border-bottom: 7px solid var(--gold);
}

.page-hero h1 {
    max-width: 760px;
    margin: 0;
    color: var(--white);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1;
}

.page-hero-description {
    max-width: 720px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.15rem;
    line-height: 1.75;
}

.page-content-section {
    padding: 100px 0;
    background: var(--white);
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: start;
    gap: 70px;
}

.main-content {
    color: var(--muted-text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.05rem;
    line-height: 1.85;
}

.main-content > p {
    margin: 0 0 24px;
}

.main-content > h2:not(.section-title) {
    margin: 48px 0 18px;
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.8rem, 3vw, 2.35rem);
    line-height: 1.2;
}

.content-highlight {
    margin: 38px 0;
    padding: 30px 34px;
    background: var(--cream);
    border-left: 6px solid var(--gold);
}

.content-highlight p {
    margin: 0;
    color: var(--brown);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.6;
}

.sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-card {
    padding: 38px 34px;
    background: var(--navy);
    border-top: 7px solid var(--gold);
    box-shadow: var(--shadow);
}

.sidebar-card h2 {
    margin: 0 0 18px;
    color: var(--white);
    font-size: 2rem;
    line-height: 1.2;
}

.sidebar-card > p:not(.card-label) {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.84);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.75;
}

.sidebar-scripture {
    margin-top: 28px;
    padding: 34px;
    background: var(--cream);
    border: 1px solid var(--border);
}

.sidebar-scripture blockquote {
    margin: 0;
    color: var(--brown);
    font-size: 1.32rem;
    font-style: italic;
    line-height: 1.55;
}

.sidebar-scripture p {
    margin: 18px 0 0;
    color: var(--red);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    font-weight: bold;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-purpose {
    padding: 95px 0;
    background: var(--light-cream);
    text-align: center;
}

/* TABLET INTERNAL PAGES */

@media (max-width: 1000px) {

    .content-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .sidebar-scripture {
        margin-top: 0;
    }

}

/* MOBILE INTERNAL PAGES */

@media (max-width: 700px) {

    .page-hero {
        padding: 80px 0;
        text-align: center;
        background:
            linear-gradient(
                rgba(8, 27, 51, 0.94),
                rgba(8, 27, 51, 0.94)
            ),
            url("../images/gaemi-logo.png") center / 390px auto no-repeat,
            var(--navy);
    }

    .page-hero-description {
        margin-right: auto;
        margin-left: auto;
    }

    .page-content-section {
        padding: 65px 0;
    }

    .main-content .section-title-left {
        text-align: left;
    }

    .sidebar {
        grid-template-columns: 1fr;
    }

    .content-highlight {
        padding: 25px;
    }

    .content-highlight p {
        font-size: 1.18rem;
    }

    .about-purpose {
        padding: 65px 0;
    }

}
/* OBJECTIVES PAGE */

.objectives-list{
    display:grid;
    gap:30px;
    margin-top:50px;
}

.objective-item{
    background:#ffffff;
    border-left:6px solid var(--gold);
    padding:28px 32px;
    box-shadow:0 8px 22px rgba(8,27,51,.08);
}

.objective-item h3{
    margin:0 0 12px;
    color:var(--navy);
    font-size:1.45rem;
}

.objective-item p{
    margin:0;
    color:var(--muted-text);
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.8;
}
/* FIXED HEADER */

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* FOOTER */

.site-footer {
    position: static;
    width: 100%;
    margin-top: auto;
}

/* PAGE LAYOUT */

html,
body {
    min-height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}

main {
    flex: 1;
}
/* Contact Sidebar Cards */

.contact-sidebar .sidebar-card {
    background: var(--navy);
    color: #ffffff;
    padding: 30px;
    border-top: 5px solid var(--gold);
    box-shadow: 0 8px 25px rgba(0,0,0,.12);
}

.contact-sidebar .sidebar-card h3 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 25px;
}

.contact-sidebar .sidebar-card h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin: 20px 0 8px;
}

.contact-sidebar .sidebar-card p,
.contact-sidebar .sidebar-card li {
    color: rgba(255,255,255,.92);
    font-size: 1rem;
    line-height: 1.8;
}

.contact-sidebar .sidebar-card a {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
}

.contact-sidebar .sidebar-card a:hover {
    color: var(--gold);
    text-decoration: underline;
}