/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: #2d5755;
    color: #f4f1e8;
    line-height: 1.7;
    overflow-x: hidden;
}
a {
    color: inherit;
    text-decoration: none;
} */


/* =========================================================
   COLORS
========================================================= */

:root {
    --background: #2d5755;
    --background-dark: #244947;
    --background-darker: #1d3e3c;

    --card: rgba(24, 67, 65, 0.48);

    --nav: #595959;

    --white: #f7f4ec;
    --muted: #c8d3d1;

    --teal: #56c7c2;
    --teal-dark: #398e8a;

    --gold: #c5a75b;

    --border: rgba(86, 199, 194, 0.25);

    --shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
}


/* =========================================================
   NAVIGATION
========================================================= */




/* .nav-bar {
    max-width: 1100px;
    min-height: 88px;

    margin: auto;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;
} */
.menu-button {
    display: none;
}


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

.about-hero {
    min-height: 510px;

    position: relative;

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

    text-align: center;

    padding: 80px 20px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center top,
            rgba(92, 190, 180, 0.20),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            #315e5b 0%,
            var(--background) 100%
        );
}


/* Soft light behind title */

.hero-light {
    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    background: rgba(80, 200, 190, 0.08);

    filter: blur(70px);

    animation: heroGlow 6s ease-in-out infinite alternate;
}


@keyframes heroGlow {

    from {
        transform: scale(0.8);
        opacity: 0.4;
    }

    to {
        transform: scale(1.2);
        opacity: 1;
    }

}


.hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
}


.small-label,
.section-label {
    display: inline-block;

    color: #6dd6d1;

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

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 13px;
}


.about-hero h1 {
    color: white;

    font-size: clamp(48px, 7vw, 78px);

    line-height: 1.1;

    margin-bottom: 20px;

    text-shadow: 0 5px 20px rgba(0,0,0,0.18);
}


.gold-line {
    width: 60px;
    height: 2px;

    margin: 0 auto 25px;

    background: var(--gold);
}


.hero-description {
    max-width: 650px;

    margin: 0 auto 28px;

    color: #e3ebe9;

    font-size: 18px;
}


.hero-verse {
    color: white;

    font-size: 20px;
    font-style: italic;

    margin-bottom: 5px;
}


.verse-reference {
    color: #74d3ce;

    font-family: Arial, sans-serif;

    font-size: 10px;
    letter-spacing: 2px;
}


/* Scroll indicator */

.scroll-indicator {
    position: absolute;

    bottom: 25px;
    left: 50%;

    transform: translateX(-50%);

    width: 22px;
    height: 38px;

    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px;
}


.scroll-indicator span {
    position: absolute;

    top: 8px;
    left: 50%;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: white;

    transform: translateX(-50%);

    animation: scrollDot 1.7s infinite;
}


@keyframes scrollDot {

    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 15px);
    }

}


/* =========================================================
   STANDARD SECTIONS
========================================================= */

.section {
    max-width: 1200px;

    margin: auto;

    padding: 100px 35px;
}


.section-heading {
    text-align: center;

    margin-bottom: 50px;
}


.section-heading h2,
.feature-content h2,
.visit-content h2 {
    color: white;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.2;
}


.heading-line {
    width: 55px;
    height: 2px;

    background: var(--gold);

    margin: 18px auto;
}


.heading-line.left {
    margin-left: 0;
}


/* =========================================================
   WHO WE ARE
========================================================= */

.who-we-are {
    padding-top: 90px;
}


.intro-card {
    position: relative;

    max-width: 900px;

    margin: auto;

    padding: 55px 70px;

    text-align: center;

    border: 1px solid var(--border);
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,0.025),
            rgba(0,0,0,0.06)
        );

    box-shadow: var(--shadow);

    transition:
        transform 0.4s ease,
        border-color 0.4s ease;
}


.intro-card:hover {
    transform: translateY(-5px);
    border-color: rgba(86,199,194,0.55);
}


.intro-icon {
    color: var(--gold);

    font-size: 25px;

    margin-bottom: 20px;
}


.intro-card p {
    color: #e1e9e7;

    font-size: 17px;

    margin-bottom: 18px;
}


.intro-card p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   FEATURE SECTIONS
========================================================= */

.feature-section {
    border-top: 1px solid rgba(255,255,255,0.06);
}


.feature-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 80px;
}


/* Image arrangement */

.feature-images {
    position: relative;

    padding: 0 50px 60px 0;
}
.main-image {
    overflow: hidden;

    border-radius: 14px;
    box-shadow: var(--shadow);
}
.main-image img {
    height: 500px;

    object-fit: cover;

    transition: transform 0.8s ease;
}
.main-image:hover img {
    transform: scale(1.04);
}


.secondary-image {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 47%;

    overflow: hidden;

    border-radius: 8px;
    box-shadow: var(--shadow);
}


.secondary-image img {
    height: 230px;

    object-fit: cover;

    transition: transform 0.8s ease;
}


.secondary-image:hover img {
    transform: scale(1.06);
}


/* Text */

.feature-content {
    max-width: 540px;
}


.feature-content h2 {
    margin-bottom: 10px;
}


.scripture-reference {
    display: block;

    color: #6dd6d1;

    font-family: Arial, sans-serif;

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 2px;

    margin: 25px 0 15px;

    text-transform: uppercase;
}


.feature-content blockquote {
    position: relative;

    color: white;

    font-size: 19px;
    font-style: italic;

    line-height: 1.8;

    margin-bottom: 25px;

    padding-left: 22px;

    border-left: 2px solid var(--gold);
}


.feature-content p {
    color: #d5dfdd;

    font-size: 16px;

    margin-bottom: 17px;
}


.bottom-reference {
    margin-top: 25px;
}


/* Reverse section */

.reverse .feature-content {
    order: 1;
}


.reverse .feature-images {
    order: 2;
}


/* =========================================================
   QUOTE SECTION
========================================================= */

.quote-section {
    padding: 90px 25px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            var(--background-dark),
            var(--background-darker)
        );

    border-top: 1px solid rgba(86,199,194,0.16);
    border-bottom: 1px solid rgba(86,199,194,0.16);
}


.quote-mark {
    height: 55px;

    color: var(--gold);

    font-size: 80px;

    line-height: 1;
}


.quote-section p {
    color: white;

    font-size: clamp(25px, 3vw, 38px);

    line-height: 1.5;

    font-style: italic;

    margin: 10px 0 20px;
}


.quote-section span {
    color: #67cac5;

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 3px;
}


/* =========================================================
   BELIEFS
========================================================= */

.beliefs-section {
    padding: 100px 35px;

    background: rgba(0,0,0,0.06);
}


.belief-grid {
    max-width: 1150px;

    margin: auto;

    display: grid;

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

    gap: 25px;
}


.belief-card {
    position: relative;

    min-height: 270px;

    padding: 40px 35px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 10px;

    background: rgba(23,65,63,0.30);

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


.belief-card:hover {
    transform: translateY(-10px);

    border-color: rgba(86,199,194,0.6);

    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}


.belief-number {
    position: absolute;

    right: 20px;
    top: 5px;

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

    font-family: Arial, sans-serif;

    font-size: 80px;
    font-weight: bold;
}


.belief-card h3 {
    position: relative;

    color: white;

    font-size: 22px;

    margin: 35px 0 15px;
}


.belief-card h3::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 12px;

    background: var(--gold);
}


.belief-card p {
    position: relative;

    color: #cedbd8;

    font-size: 15px;
}


/* =========================================================
   VISIT / CTA
========================================================= */

.visit-section {
    padding: 110px 25px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(78,190,182,0.15),
            transparent 50%
        ),
        var(--background);
}


.visit-content {
    max-width: 750px;

    margin: auto;
}


.visit-content p {
    max-width: 600px;

    margin: 20px auto 35px;

    color: #d4dfdd;

    font-size: 17px;
}


.visit-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;
}


.button {
    min-width: 140px;

    padding: 12px 24px;

    border-radius: 4px;

    font-family: Arial, sans-serif;

    font-size: 13px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.button:hover {
    transform: translateY(-3px);
}


.primary-button {
    background: #438f8b;

    border: 1px solid #64c6c1;

    color: white;
}


.primary-button:hover {
    box-shadow: 0 8px 25px rgba(56,185,177,0.25);
}


.secondary-button {
    background: transparent;

    border: 1px solid rgba(255,255,255,0.4);

    color: white;
}


.secondary-button:hover {
    background: rgba(255,255,255,0.07);
}


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

footer {
    background: #4f4f4f;

    border-top: 2px solid rgba(255,255,255,0.7);
}


.footer-content {
    max-width: 1100px;

    margin: auto;

    padding: 45px 25px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;
}


.footer-content h3 {
    color: white;

    font-size: 20px;

    margin-bottom: 5px;
}


.footer-content p {
    color: #d1d1d1;

    font-size: 13px;
}


.footer-links {
    display: flex;

    gap: 25px;
}


.footer-links a {
    color: #e8e8e8;

    font-size: 13px;

    transition: color 0.3s ease;
}


.footer-links a:hover {
    color: #6bd1cc;
}


.footer-bottom {
    padding: 15px 20px;

    text-align: center;

    background: rgba(0,0,0,0.12);

    color: #c8c8c8;

    font-family: Arial, sans-serif;

    font-size: 11px;
}


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

@media (max-width: 850px) {
    .menu-button {
        display: flex;

        width: 35px;
        height: 30px;

        flex-direction: column;
        justify-content: center;

        gap: 6px;

        border: none;

        background: transparent;

        cursor: pointer;
    }


    .menu-button span {
        display: block;

        width: 100%;
        height: 2px;

        background: white;

        transition: 0.3s;
    }


    .nav-links {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        gap: 0;

        background: #525252;

        border-top: 1px solid rgba(255,255,255,0.15);

        box-shadow: 0 15px 25px rgba(0,0,0,0.25);
    }


    .nav-links.open {
        display: flex;
    }


    .nav-links a {
        width: 100%;

        padding: 18px 25px;

        text-align: center;

        border-bottom: 1px solid rgba(255,255,255,0.08);
    }


    .nav-links a::after {
        display: none;
    }


    /* HERO */

    .about-hero {
        min-height: 450px;

        padding: 70px 25px;
    }


    .hero-description {
        font-size: 16px;
    }


    .hero-verse {
        font-size: 17px;
    }


    /* SECTIONS */

    .section {
        padding: 75px 25px;
    }


    .intro-card {
        padding: 40px 25px;
    }


    /* FEATURES */

    .feature-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .feature-content {
        max-width: 100%;
    }


    .reverse .feature-content,
    .reverse .feature-images {
        order: initial;
    }


    .feature-images {
        max-width: 600px;

        margin: auto;
    }


    .main-image img {
        height: 430px;
    }


    /* BELIEFS */

    .belief-grid {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    .footer-content {
        flex-direction: column;

        text-align: center;
    }


    .footer-links {
        flex-wrap: wrap;

        justify-content: center;
    }

}


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

@media (max-width: 520px) {

    .about-hero h1 {
        font-size: 46px;
    }


    .feature-images {
        padding: 0 25px 40px 0;
    }


    .main-image img {
        height: 350px;
    }


    .secondary-image {
        width: 45%;
    }


    .secondary-image img {
        height: 150px;
    }


    .feature-content h2 {
        font-size: 34px;
    }


    .feature-content blockquote {
        font-size: 17px;
    }


    .visit-buttons {
        flex-direction: column;

        max-width: 250px;

        margin: auto;
    }


    .footer-links {
        flex-direction: column;

        gap: 10px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

}