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

:root {
    --navy: #010d1f;
    --navy-mid: #041628;
    --navy-card: #000c18;
    --gold: #F5B800;
    --gold-dark: #D49E00;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-mid: #555;
    --text-light: #aaa;
    --font-display: 'Oswald', 'Arial Narrow', sans-serif;
    --font-body: 'Open Sans', Arial, sans-serif;
    --font-script: 'Dancing Script', cursive;
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ============================================================
   LANDING PAGE — HEADER
   ============================================================ */
.site-header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
    background: rgba(1, 13, 31, 0.97);
    box-shadow: 0 2px 24px rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    gap: 20px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    flex-shrink: 0;
}

.logo-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.logo-badge.sm {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-line1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-line2 {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: rgba(255,255,255,0.75);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Center desktop nav */
.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
}

.header-nav-link {
    color: rgba(255,255,255,0.78);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s;
    white-space: nowrap;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
    border-radius: 2px;
}

.header-nav-link:hover { color: var(--white); }
.header-nav-link:hover::after { width: 100%; }

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-visit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    padding: 12px 22px;
    border-radius: 5px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 3px 14px rgba(245,184,0,0.35);
    text-transform: uppercase;
}

.btn-visit i { font-size: 0.75rem; }

.btn-visit:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(245,184,0,0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    width: 36px;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 22px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--navy-mid);
    padding: 0 24px;
}

.mobile-nav.open {
    max-height: 400px;
    padding: 8px 24px 20px;
}

.mobile-nav a {
    color: rgba(255,255,255,0.82);
    padding: 11px 0;
    font-size: 0.97rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: color 0.2s;
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }

.mobile-nav-cta {
    display: block;
    margin-top: 12px;
    padding: 13px 0 !important;
    border: none !important;
    background: var(--gold);
    color: var(--navy) !important;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem !important;
    letter-spacing: 1.5px;
    text-align: center;
    border-radius: 5px;
    text-transform: uppercase;
}

/* ============================================================
   LANDING PAGE — HERO
   ============================================================ */
.hero-section {
    background: var(--navy);
    color: var(--white);
    padding: 40px 20px 0;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-end;
}

.hero-text {
    padding-bottom: 48px;
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 0.93;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.hero-headline em {
    font-style: italic;
    font-family: var(--font-script);
    font-size: clamp(2.6rem, 6.5vw, 4rem);
    text-transform: none;
    font-weight: 700;
    color: var(--gold);
    line-height: 0.95;
    letter-spacing: 0;
    display: inline-block;
    margin-bottom: 2px;
}

.hero-body {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.82);
    max-width: 380px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 2px;
    padding: 17px 32px;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 4px 20px rgba(245,184,0,0.35);
}

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

.hero-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-note i { color: var(--gold); }

/* Hero visual */
.hero-visual {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 520px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.hero-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 12%;
}

.launch-card {
    position: absolute;
    bottom: -1px;
    right: -16px;
    background: var(--navy-card);
    border: 1px solid rgba(255,255,255,0.12);
    border-top: 3px solid var(--gold);
    border-radius: 6px;
    padding: 20px 22px;
    min-width: 230px;
    max-width: 270px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
}

.launch-card-title {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 16px;
    line-height: 1.3;
    text-transform: uppercase;
}

.launch-row {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 14px;
}

.launch-row:last-child { margin-bottom: 0; }

.launch-row > i {
    color: var(--gold);
    font-size: 1.05rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.launch-label {
    font-size: 0.66rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1.5px;
    font-family: var(--font-display);
    font-weight: 600;
    margin-bottom: 3px;
    text-transform: uppercase;
}

.launch-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.launch-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    margin-top: 3px;
    font-style: italic;
}

/* ============================================================
   LANDING PAGE — WHAT YOU CAN EXPECT
   ============================================================ */
.expect-section {
    background: var(--white);
    padding: 64px 20px;
    border-top: 1px solid #e8e8e8;
}

.expect-container {
    max-width: 960px;
    margin: 0 auto;
}

.section-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-bottom: 44px;
}

.title-line {
    flex: 1;
    height: 2px;
    background: var(--navy);
    max-width: 70px;
    opacity: 0.8;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--navy);
    text-align: center;
    white-space: nowrap;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #ddd;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.expect-card {
    padding: 30px 22px;
    text-align: left;
    background: var(--white);
}

.expect-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.45rem;
    margin-bottom: 14px;
}

.expect-card h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--navy);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.expect-card p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   LANDING PAGE — BELONG / PLAN YOUR VISIT
   ============================================================ */
.belong-section {
    background: var(--navy);
    padding: 0;
}

.belong-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.belong-left {
    padding: 60px 48px 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.script-heading {
    font-family: var(--font-script);
    font-size: 2.8rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.belong-body {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 32px;
}

.pastor-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}

.pastor-block {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pastor-icon {
    color: var(--gold);
    font-size: 1.4rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pastor-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.pastor-names {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.pastor-note {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* Right form panel */
.belong-right {
    background: var(--white);
    padding: 48px 40px 48px 48px;
    display: flex;
    align-items: center;
}

.visit-form-card {
    width: 100%;
}

.form-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 8px;
}

.form-card-subtitle {
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-bottom: 24px;
    line-height: 1.5;
}

.visit-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vf-group {
    position: relative;
    display: flex;
    align-items: center;
}

.vf-group-full { width: 100%; }

.vf-icon {
    position: absolute;
    left: 12px;
    color: #aaa;
    font-size: 0.85rem;
    pointer-events: none;
    z-index: 1;
}

.vf-group input,
.vf-group select {
    width: 100%;
    padding: 11px 12px 11px 34px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.88rem;
    color: var(--text-dark);
    background: var(--white);
    appearance: none;
    transition: border-color 0.2s;
}

.vf-group:not(:has(.vf-icon)) input {
    padding-left: 12px;
}

.vf-group input:focus,
.vf-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.vf-group input::placeholder { color: #aaa; }

.vf-select-wrap {
    position: relative;
}

.vf-select-arrow {
    position: absolute;
    right: 12px;
    color: #aaa;
    font-size: 0.75rem;
    pointer-events: none;
}

.vf-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 4px 0;
}

.vf-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.87rem;
    color: var(--text-dark);
}

.vf-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--gold);
    cursor: pointer;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1.5px;
    padding: 17px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 6px;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 3px 16px rgba(245,184,0,0.3);
    text-transform: uppercase;
}

.btn-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.form-privacy {
    font-size: 0.78rem;
    color: #888;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

.form-privacy i { color: var(--gold); font-size: 0.7rem; }

.form-success-msg {
    background: #d4edda;
    color: #155724;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    text-align: center;
    border: 1px solid #c3e6cb;
    margin-top: 8px;
}

/* ============================================================
   LANDING PAGE — FOOTER
   ============================================================ */
.site-footer {
    background: var(--navy-card);
    color: var(--white);
    padding: 36px 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-top {
    max-width: 900px;
    margin: 0 auto 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
}

.footer-links-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 24px;
}

.footer-link-item {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.65);
    font-size: 0.83rem;
    transition: color 0.2s;
}

.footer-link-item i { color: var(--gold); font-size: 0.83rem; }
.footer-link-item:hover { color: var(--white); }

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.2s, border-color 0.2s;
}

.footer-social:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer-bottom {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-tagline {
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1.2;
}

.footer-verse {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
    letter-spacing: 0.3px;
}

/* ============================================================
   INNER PAGES — LEGACY NAVBAR (used in about/, sermons/, etc.)
   ============================================================ */
.navbar {
    background-color: var(--navy);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    gap: 10px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: var(--font-display);
}

.logo-text {
    font-weight: bold;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-dropdown { position: relative; }

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--navy-mid);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border-radius: 5px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: rgba(255,255,255,0.8);
    transition: background-color 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background-color: rgba(255,255,255,0.05);
    color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: 0.3s;
}

/* ============================================================
   SHARED BUTTONS (inner pages)
   ============================================================ */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

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

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

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

/* ============================================================
   INNER PAGES — PAGE HEADER
   ============================================================ */
.page-header {
    background: var(--navy);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 2px;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

/* ============================================================
   INNER PAGES — MINISTRIES PREVIEW (homepage legacy unused)
   ============================================================ */
.ministries-preview {
    padding: 80px 0;
    background-color: var(--off-white);
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ministry-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.ministry-card:hover { transform: translateY(-5px); }

.ministry-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.ministry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ministry-content {
    padding: 1.5rem;
}

.ministry-content h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.ministry-category {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.ministry-content p { color: #666; margin-bottom: 1.5rem; }

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover { color: var(--gold-dark); }

/* ============================================================
   INNER PAGES — PASTORS WORD
   ============================================================ */
.pastors-word {
    padding: 80px 0;
    background-color: var(--white);
}

.pastors-word h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--navy);
    font-family: var(--font-display);
    letter-spacing: 2px;
}

.pastors-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pastors-content p { font-size: 1.05rem; color: #666; margin-bottom: 2rem; }

blockquote {
    background-color: var(--off-white);
    padding: 2rem;
    border-left: 4px solid var(--gold);
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

blockquote p { font-size: 1.15rem; color: #333; margin-bottom: 1rem; }
cite { font-size: 1rem; color: #666; font-style: normal; }

/* ============================================================
   INNER PAGES — ABOUT
   ============================================================ */
.about-content { padding: 80px 0; }

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--off-white);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-card:hover { transform: translateY(-5px); }

.card-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.welcome-section { max-width: 800px; margin: 0 auto; text-align: center; }
.scripture-highlight { margin: 2rem 0; }

/* ============================================================
   INNER PAGES — HISTORY
   ============================================================ */
.history-content { padding: 80px 0; }

.history-timeline { max-width: 800px; margin: 0 auto 4rem; }

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    align-items: flex-start;
    gap: 2rem;
}

.timeline-year {
    background-color: var(--gold);
    color: var(--navy);
    padding: 1rem;
    border-radius: 10px;
    font-weight: bold;
    min-width: 120px;
    text-align: center;
    font-family: var(--font-display);
}

.timeline-content { flex: 1; }

.mission-statement { max-width: 800px; margin: 0 auto; text-align: center; }

/* ============================================================
   INNER PAGES — LEADERSHIP
   ============================================================ */
.leadership-content { padding: 80px 0; }

.leader-profile {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.leader-image { width: 100%; }
.leader-image img { width: 100%; border-radius: 10px; }
.leader-info h2 { color: var(--navy); margin-bottom: 0.5rem; font-family: var(--font-display); }
.leader-info h3 { color: var(--gold); margin-bottom: 1.5rem; }
.leader-quote { margin-top: 2rem; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    text-align: center;
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img { width: 100%; height: 100%; object-fit: cover; }

.team-member h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.member-role {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.member-bio {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

/* ============================================================
   INNER PAGES — DECLARATION
   ============================================================ */
.declaration-content { padding: 80px 0; }

.declaration-text { max-width: 800px; margin: 0 auto; }

.belief-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--off-white);
    border-radius: 10px;
}

.belief-section h3 { color: var(--gold); margin-bottom: 1rem; }

.declaration-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

/* ============================================================
   INNER PAGES — SERMONS
   ============================================================ */
.sermons-content { padding: 80px 0; }

.sermons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.sermon-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.sermon-video {
    width: 100%;
    height: 200px;
    background-color: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #666;
}

.video-placeholder i { font-size: 3rem; margin-bottom: 1rem; color: var(--gold); }
.sermon-info { padding: 1.5rem; }

.sermon-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
    flex-wrap: wrap;
}

.sermon-meta span { display: flex; align-items: center; gap: 0.5rem; }

.sermon-actions { display: flex; gap: 1rem; margin-top: 1rem; }
.sermon-actions .btn { flex: 1; padding: 0.75rem 1rem; font-size: 0.9rem; }

.sermon-archive {
    text-align: center;
    padding: 3rem;
    background-color: var(--off-white);
    border-radius: 10px;
}

/* ============================================================
   INNER PAGES — MINISTRIES DETAIL
   ============================================================ */
.ministries-content { padding: 80px 0; }
.ministry-section { margin-bottom: 4rem; }

.ministry-detail {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.ministry-detail .ministry-image {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
}

.ministry-detail .ministry-content h2 { color: var(--navy); margin-bottom: 0.5rem; font-family: var(--font-display); }
.ministry-detail .ministry-content ul { margin: 1.5rem 0; padding-left: 1.5rem; }
.ministry-detail .ministry-content li { margin-bottom: 0.5rem; color: #666; }

.additional-ministries { margin-top: 4rem; }

.ministry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ministry-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--off-white);
    border-radius: 10px;
}

/* ============================================================
   INNER PAGES — CONTACT
   ============================================================ */
.contact-content { padding: 80px 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.main-contact-form {
    background-color: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] { width: auto; margin: 0; }

.contact-info-section h2 { margin-bottom: 2rem; color: var(--navy); font-family: var(--font-display); }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 { margin-bottom: 0.5rem; color: var(--navy); }
.contact-details p { color: #666; margin: 0; }

.social-media { margin-top: 2rem; }

.social-links { display: flex; gap: 1rem; margin-top: 1rem; }

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover { background-color: var(--gold-dark); }

.map-section { margin: 4rem 0; }

.map-placeholder {
    background-color: var(--off-white);
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 10px;
    border: 2px dashed #ddd;
}

.map-placeholder i { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }

.visit-section { margin-top: 4rem; }

.visit-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.visit-item { background-color: var(--off-white); padding: 1.5rem; border-radius: 10px; }
.visit-item h3 { color: var(--gold); margin-bottom: 1rem; }

/* ============================================================
   INNER PAGES — FOOTER (shared across sub-pages)
   ============================================================ */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.footer-section h3 { color: var(--gold); margin-bottom: 1.5rem; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 5px;
    background-color: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #888; }

.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }

.contact-info p { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.contact-info i { color: var(--gold); width: 20px; }

.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* form success/error (inner pages) */
.form-success {
    background: #d4edda; color: #155724;
    padding: 12px 16px; border-radius: 5px;
    font-size: 0.9rem; margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
}

.form-error {
    background: #f8d7da; color: #721c24;
    padding: 12px 16px; border-radius: 5px;
    font-size: 0.9rem; margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
h1, h2, h3, h4, h5, h6 { margin-bottom: 1rem; font-weight: 600; }
p { margin-bottom: 1rem; }

/* ============================================================
   RESPONSIVE — TABLET / MOBILE
   ============================================================ */
@media (max-width: 900px) {
    /* Header — hide center nav, show hamburger */
    .header-nav { display: none; }
    .hamburger { display: flex; }
    .header-container { grid-template-columns: auto auto; }

    /* Hero */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-text { padding-bottom: 32px; }

    .hero-visual {
        justify-content: flex-start;
        overflow: visible;
    }

    .hero-photo-wrap { max-width: 100%; }

    .launch-card {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 16px;
        max-width: 100%;
        min-width: unset;
    }

    /* Belong */
    .belong-inner { grid-template-columns: 1fr; }

    .belong-left { padding: 48px 20px 40px; }

    .belong-right { padding: 40px 20px 48px; }

    /* Expect grid — 2 columns on tablet */
    .expect-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer — stays centered */
    .footer-top {
        justify-content: center;
    }

    /* Inner pages navbar */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--navy-mid);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.2);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active { left: 0; }

    .nav-toggle { display: flex; }

    .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
    .nav-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(255,255,255,0.05);
        margin-top: 0.5rem;
        border-radius: 0;
    }
}

@media (max-width: 600px) {
    .hero-headline { font-size: clamp(2.6rem, 10vw, 3.4rem); letter-spacing: -1px; }

    .hero-section { padding: 28px 16px 0; }

    .btn-hero { font-size: 1rem; padding: 15px 24px; width: 100%; justify-content: center; }

    .form-row-2 { grid-template-columns: 1fr; }

    /* Expect grid — 1 column on mobile */
    .expect-grid { grid-template-columns: 1fr; }

    .section-title { font-size: 1rem; letter-spacing: 2px; white-space: normal; }

    .launch-card { right: 0; }

    .footer-top { gap: 16px 24px; }
    .footer-tagline { font-size: 1.4rem; }

    /* Inner page adjustments */
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .leader-profile { grid-template-columns: 1fr; }
    .ministry-detail { grid-template-columns: 1fr; }

    .footer-tagline { font-size: 1.3rem; }
}
