@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Open+Sans:wght@400;600;700&display=swap');
/* ═══════════════════════════════════════
           CSS CUSTOM PROPERTIES
           ═══════════════════════════════════════ */
        :root {
            --maroon: #6B1D2A;
            --maroon-dark: #4A1420;
            --maroon-light: #8B2E3D;
            --gold: #C9A84C;
            --gold-light: #E0C76E;
            --gold-pale: #F5ECD4;
            --black: #1A1A1A;
            --dark-gray: #333333;
            --medium-gray: #666666;
            --light-gray: #F5F5F0;
            --white: #FFFFFF;
            --font-heading: 'Merriweather', Georgia, serif;
            --font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --max-width: 1200px;
            --section-padding: 80px 20px;
            --border-radius: 8px;
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }

        /* ═══════════════════════════════════════
           RESET & BASE
           ═══════════════════════════════════════ */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 18px;
        }

        body {
            font-family: var(--font-body);
            color: var(--dark-gray);
            line-height: 1.7;
            background-color: var(--white);
        }

        h1, h2, h3, h4 {
            font-family: var(--font-heading);
            color: var(--maroon);
            line-height: 1.3;
        }

        h1 { font-size: 2.4rem; font-weight: 900; }
        h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }
        h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }

        p { margin-bottom: 1rem; }

        a {
            color: var(--maroon);
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--gold);
        }

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

        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ═══════════════════════════════════════
           BUTTONS
           ═══════════════════════════════════════ */
        .btn {
            display: inline-block;
            padding: 16px 36px;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--gold);
            color: var(--maroon-dark);
        }

        .btn-primary:hover {
            background-color: var(--gold-light);
            color: var(--maroon-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--gold);
        }

        .btn-secondary:hover {
            background-color: var(--gold);
            color: var(--maroon-dark);
            transform: translateY(-2px);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--maroon);
            border: 2px solid var(--maroon);
        }

        .btn-outline:hover {
            background-color: var(--maroon);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ═══════════════════════════════════════
           NAVIGATION
           ═══════════════════════════════════════ */
        .site-nav {
            background-color: var(--maroon-dark);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .nav-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .nav-brand {
            display: flex;
            flex-direction: column;
        }

        .nav-brand-name {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--gold);
            text-decoration: none;
        }

        .nav-brand-tagline {
            font-size: 0.7rem;
            color: var(--gold-light);
            letter-spacing: 1px;
            text-transform: uppercase;
            opacity: 0.8;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 28px;
            align-items: center;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 600;
            opacity: 0.9;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--gold);
            opacity: 1;
        }

        .nav-cta {
            background-color: var(--gold);
            color: var(--maroon-dark) !important;
            padding: 10px 20px;
            border-radius: var(--border-radius);
            opacity: 1 !important;
            font-weight: 700 !important;
        }

        .nav-cta:hover {
            background-color: var(--gold-light) !important;
        }

        /* Mobile Navigation */
        .nav-toggle {
            display: none;
        }

        .nav-toggle-label {
            display: none;
            cursor: pointer;
            padding: 10px;
        }

        .nav-toggle-label span,
        .nav-toggle-label span::before,
        .nav-toggle-label span::after {
            display: block;
            width: 28px;
            height: 3px;
            background-color: var(--gold);
            border-radius: 3px;
            position: relative;
            transition: var(--transition);
        }

        .nav-toggle-label span::before,
        .nav-toggle-label span::after {
            content: '';
            position: absolute;
        }

        .nav-toggle-label span::before { top: -8px; }
        .nav-toggle-label span::after { top: 8px; }

        .nav-toggle:checked ~ .nav-toggle-label span {
            background-color: transparent;
        }

        .nav-toggle:checked ~ .nav-toggle-label span::before {
            top: 0;
            transform: rotate(45deg);
        }

        .nav-toggle:checked ~ .nav-toggle-label span::after {
            top: 0;
            transform: rotate(-45deg);
        }

        /* ═══════════════════════════════════════
           HERO SECTION
           ═══════════════════════════════════════ */
        .hero {
            background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 50%, var(--maroon-light) 100%);
            color: var(--white);
            padding: 100px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero-eyebrow {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--gold);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .hero h1 {
            color: var(--white);
            font-size: 2.8rem;
            max-width: 800px;
            margin: 0 auto 20px;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            max-width: 650px;
            margin: 0 auto 40px;
            opacity: 0.9;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-scripture {
            margin-top: 50px;
            font-family: var(--font-heading);
            font-style: italic;
            font-size: 0.95rem;
            opacity: 0.7;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ═══════════════════════════════════════
           IS THIS YOU SECTION
           ═══════════════════════════════════════ */
        .is-this-you {
            background-color: var(--light-gray);
            padding: var(--section-padding);
        }

        .is-this-you .container {
            max-width: 800px;
        }

        .is-this-you h2 {
            text-align: center;
            margin-bottom: 2rem;
        }

        .is-this-you-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .is-this-you-list li {
            padding: 14px 0 14px 50px;
            position: relative;
            font-size: 1.05rem;
            border-bottom: 1px solid rgba(107, 29, 42, 0.1);
        }

        .is-this-you-list li::before {
            content: '♥';
            position: absolute;
            left: 10px;
            color: var(--gold);
            font-size: 1.2rem;
        }

        .is-this-you-closing {
            text-align: center;
            font-family: var(--font-heading);
            font-size: 1.2rem;
            color: var(--maroon);
            font-weight: 700;
            margin-top: 2rem;
        }

        /* ═══════════════════════════════════════
           THREE PILLARS
           ═══════════════════════════════════════ */
        .pillars {
            padding: var(--section-padding);
            background-color: var(--white);
        }

        .pillars h2 {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .pillars-subtitle {
            text-align: center;
            color: var(--medium-gray);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .pillars-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .pillar-card {
            background-color: var(--white);
            border: 1px solid rgba(107, 29, 42, 0.1);
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--maroon), var(--gold));
        }

        .pillar-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .pillar-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .pillar-card h3 {
            color: var(--maroon);
            margin-bottom: 1rem;
        }

        .pillar-card p {
            color: var(--medium-gray);
            font-size: 0.95rem;
        }

        /* ═══════════════════════════════════════
           YOUR PASTOR
           ═══════════════════════════════════════ */
        .pastor {
            background-color: var(--light-gray);
            padding: var(--section-padding);
        }

        .pastor-inner {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 50px;
            align-items: center;
        }

        .pastor-photo {
            width: 300px;
            height: 360px;
            background-color: var(--maroon);
            border-radius: var(--border-radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-family: var(--font-heading);
            font-size: 1.1rem;
            text-align: center;
            padding: 20px;
            box-shadow: var(--shadow);
        }

        .pastor-content h2 {
            margin-bottom: 0.5rem;
        }

        .pastor-subtitle {
            color: var(--gold);
            font-weight: 700;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .pastor-credentials {
            list-style: none;
            margin: 1.5rem 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }

        .pastor-credentials li {
            padding-left: 24px;
            position: relative;
            font-size: 0.9rem;
            color: var(--medium-gray);
        }

        .pastor-credentials li::before {
            content: '✦';
            position: absolute;
            left: 0;
            color: var(--gold);
        }

        /* ═══════════════════════════════════════
           WORSHIP SERVICES
           ═══════════════════════════════════════ */
        .worship {
            padding: var(--section-padding);
            background-color: var(--white);
        }

        .worship h2 {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .worship-subtitle {
            text-align: center;
            color: var(--medium-gray);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .worship-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 3rem;
        }

        .worship-card {
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
            padding: 35px 25px;
            text-align: center;
            transition: var(--transition);
        }

        .worship-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .worship-icon {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .worship-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .worship-card p {
            color: var(--medium-gray);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        .worship-cta {
            text-align: center;
        }

        /* ═══════════════════════════════════════
           HOW IT WORKS
           ═══════════════════════════════════════ */
        .how-it-works {
            background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon) 100%);
            color: var(--white);
            padding: var(--section-padding);
        }

        .how-it-works h2 {
            text-align: center;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .how-it-works-subtitle {
            text-align: center;
            color: var(--gold-light);
            margin-bottom: 3rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto 3rem;
        }

        .step {
            text-align: center;
        }

        .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background-color: var(--gold);
            color: var(--maroon-dark);
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 900;
            border-radius: 50%;
            margin-bottom: 20px;
        }

        .step h3 {
            color: var(--gold-light);
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .step p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        .how-it-works-cta {
            text-align: center;
        }

        /* ═══════════════════════════════════════
           SCHEDULE
           ═══════════════════════════════════════ */
        .schedule {
            padding: var(--section-padding);
            background-color: var(--light-gray);
        }

        .schedule h2 {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .schedule-subtitle {
            text-align: center;
            color: var(--medium-gray);
            margin-bottom: 3rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }

        .schedule-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 35px;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--gold);
        }

        .schedule-day {
            font-family: var(--font-heading);
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .schedule-card h3 {
            margin-bottom: 0.75rem;
        }

        .schedule-card p {
            color: var(--medium-gray);
            font-size: 0.9rem;
            margin-bottom: 0;
        }

        /* ═══════════════════════════════════════
           GET INVOLVED
           ═══════════════════════════════════════ */
        .get-involved {
            padding: var(--section-padding);
            background-color: var(--white);
        }

        .get-involved h2 {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .get-involved-subtitle {
            text-align: center;
            color: var(--medium-gray);
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .involved-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .involved-card {
            background-color: var(--light-gray);
            border-radius: var(--border-radius);
            padding: 35px 25px;
            text-align: center;
            transition: var(--transition);
        }

        .involved-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .involved-icon {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .involved-card h3 {
            font-size: 1.1rem;
            margin-bottom: 0.75rem;
        }

        .involved-card p {
            color: var(--medium-gray);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        /* ═══════════════════════════════════════
           PRAYER REQUEST
           ═══════════════════════════════════════ */
        .prayer {
            background: linear-gradient(180deg, var(--gold-pale) 0%, var(--white) 100%);
            padding: var(--section-padding);
        }

        .prayer .container {
            max-width: 700px;
        }

        .prayer h2 {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .prayer-subtitle {
            text-align: center;
            color: var(--medium-gray);
            margin-bottom: 2rem;
        }

        .prayer-promise {
            text-align: center;
            font-family: var(--font-heading);
            font-style: italic;
            color: var(--maroon);
            font-size: 1.05rem;
            margin-bottom: 2rem;
            padding: 20px;
            border-left: 3px solid var(--gold);
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }

        .ep-placeholder {
            background-color: var(--white);
            border: 2px dashed var(--gold);
            border-radius: var(--border-radius);
            padding: 40px;
            text-align: center;
            color: var(--medium-gray);
            font-size: 0.95rem;
        }

        /* ═══════════════════════════════════════
           NEWSLETTER
           ═══════════════════════════════════════ */
        .newsletter {
            background-color: var(--maroon);
            color: var(--white);
            padding: var(--section-padding);
        }

        .newsletter .container {
            max-width: 650px;
            text-align: center;
        }

        .newsletter h2 {
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .newsletter-subtitle {
            color: var(--gold-light);
            margin-bottom: 2rem;
        }

        .newsletter-benefits {
            list-style: none;
            margin-bottom: 2rem;
            display: inline-block;
            text-align: left;
        }

        .newsletter-benefits li {
            padding: 6px 0 6px 28px;
            position: relative;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.95rem;
        }

        .newsletter-benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: 700;
        }

        .newsletter .ep-placeholder {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: var(--gold);
            color: var(--gold-light);
        }

        /* ═══════════════════════════════════════
           TECH HELP
           ═══════════════════════════════════════ */
        .tech-help {
            padding: var(--section-padding);
            background-color: var(--light-gray);
        }

        .tech-help-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .tech-help h2 {
            margin-bottom: 1rem;
        }

        .tech-help-features {
            list-style: none;
            margin: 1.5rem 0;
        }

        .tech-help-features li {
            padding: 10px 0 10px 32px;
            position: relative;
            font-size: 0.95rem;
        }

        .tech-help-features li::before {
            content: '💡';
            position: absolute;
            left: 0;
        }

        .tech-help-contact {
            background-color: var(--white);
            border-radius: var(--border-radius);
            padding: 35px;
            box-shadow: var(--shadow);
            text-align: center;
        }

        .tech-help-contact h3 {
            margin-bottom: 1rem;
        }

        .tech-help-phone {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            color: var(--maroon);
            font-weight: 700;
            margin: 1rem 0;
        }

        .tech-help-contact p {
            color: var(--medium-gray);
            font-size: 0.9rem;
        }

        /* ═══════════════════════════════════════
           CONTACT
           ═══════════════════════════════════════ */
        .contact {
            padding: var(--section-padding);
            background-color: var(--white);
        }

        .contact .container {
            max-width: 700px;
        }

        .contact h2 {
            text-align: center;
            margin-bottom: 0.5rem;
        }

        .contact-subtitle {
            text-align: center;
            color: var(--medium-gray);
            margin-bottom: 2rem;
        }

        /* ═══════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════ */
        .site-footer {
            background-color: var(--maroon-dark);
            color: var(--white);
            padding: 50px 20px 30px;
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand h3 {
            font-family: var(--font-heading);
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
            line-height: 1.6;
        }

        .footer-links h4 {
            color: var(--gold);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
        }

        .footer-links a:hover {
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(201, 168, 76, 0.2);
            padding-top: 25px;
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.8rem;
        }

        .footer-scripture {
            font-family: var(--font-heading);
            font-style: italic;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            margin-top: 10px;
        }

        /* ═══════════════════════════════════════
           RESPONSIVE DESIGN
           ═══════════════════════════════════════ */
        @media (max-width: 968px) {
            .nav-toggle-label {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--maroon-dark);
                flex-direction: column;
                padding: 20px;
                gap: 0;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            }

            .nav-toggle:checked ~ .nav-links {
                display: flex;
            }

            .nav-links li {
                padding: 12px 0;
                border-bottom: 1px solid rgba(201, 168, 76, 0.15);
            }

            .nav-links li:last-child {
                border-bottom: none;
                padding-top: 16px;
            }

            .pillars-grid,
            .worship-grid,
            .involved-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }

            .steps {
                grid-template-columns: 1fr;
                max-width: 400px;
            }

            .pastor-inner,
            .tech-help-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .pastor-photo {
                margin: 0 auto;
            }

            .pastor-credentials {
                grid-template-columns: 1fr;
                text-align: left;
            }

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

            .footer-inner {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 600px) {
            html {
                font-size: 16px;
            }

            .hero {
                padding: 60px 20px;
            }

            .hero h1 {
                font-size: 1.75rem;
            }

            :root {
                --section-padding: 60px 16px;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }
        }