/* ═══════════════════════════════════════════════
   about.css — FULLY STANDALONE
   Everything in one file. No other CSS needed.
   ═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --navy:        #0d1f3c;
    --navy-mid:    #1a3560;
    --gold:        #c9a84c;
    --gold-light:  #e8c97e;
    --gold-pale:   #fdf6e3;
    --white:       #ffffff;
    --off-white:   #f8f7f4;
    --text:        #2c2c2c;
    --text-muted:  #6b6b6b;
    --border:      rgba(201, 168, 76, 0.25);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    --radius-sm:   6px;
    --radius-md:   14px;
    --radius-lg:   24px;
    --shadow-card: 0 4px 24px rgba(13, 31, 60, 0.10);
    --shadow-lift: 0 12px 40px rgba(13, 31, 60, 0.18);
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 2.5rem;
    background: rgba(13, 31, 60, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: padding var(--transition), background var(--transition);
}

.navbar.scrolled { padding: 0.75rem 2.5rem; background: rgba(13, 31, 60, 1); }

.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-icon { color: var(--gold); font-size: 1.3rem; animation: spin-slow 12s linear infinite; }

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.logo h1, .logo h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.02em;
}

.amp { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 0.25rem; }

.nav-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0.03em;
    transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   SHARED COMPONENTS
══════════════════════════════════════════════ */
.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    background: var(--gold);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-body);
    text-decoration: none;
    border-radius: var(--radius-sm);
    letter-spacing: 0.03em;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

/* ══════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════ */
.page-hero {
    position: relative;
    height: 42vh;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 64px;
    background: var(--navy);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(13,31,60,0.92) 40%, rgba(26,53,96,0.85)),
        url('images/1.png') center/cover no-repeat;
    z-index: 0;
}

.page-hero-content { position: relative; z-index: 2; padding: 2rem; }

.page-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s;
}

.tag-line { display: block; width: 30px; height: 1px; background: var(--gold); opacity: 0.6; }

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.35s;
}

.page-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.65);
    opacity: 0;
    animation: fadeUp 0.7s ease forwards 0.5s;
}

.hero-cross-left,
.hero-cross-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 5rem;
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}
.hero-cross-left  { left: 5%; }
.hero-cross-right { right: 5%; }

/* ══════════════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════════════ */
.breadcrumb-bar {
    background: var(--off-white);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0.7rem 0;
}

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-muted); }

.breadcrumb a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }

.bc-sep { color: rgba(0,0,0,0.25); font-size: 0.65rem; }
.bc-current { color: var(--gold); font-weight: 600; }

/* ══════════════════════════════════════════════
   ABOUT SECTIONS
══════════════════════════════════════════════ */
.about-section { padding: 7rem 0 4rem; background: var(--white); }
.purpose-section { padding: 4rem 0 7rem; background: var(--off-white); }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

.about-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-text .btn-primary { margin-top: 0.75rem; }

/* Milestones */
.about-milestone {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.07);
}

.milestone { display: flex; flex-direction: column; gap: 0.25rem; }

.m-year {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.m-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.03em;
    max-width: 90px;
}

/* Visual card */
.about-visual { position: relative; }

.visual-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lift);
}

.visual-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.visual-card:hover .visual-img { transform: scale(1.04); }

.visual-badge {
    position: absolute;
    bottom: 1.5rem;
    right: -1rem;
    background: var(--navy);
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    box-shadow: var(--shadow-card);
}

.visual-accent {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, var(--gold) 0%, transparent 70%);
    opacity: 0.12;
    border-radius: var(--radius-lg);
    z-index: -1;
}

/* Purpose cards */
.purpose-cards { display: flex; flex-direction: column; gap: 1.25rem; }

.p-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(0,0,0,0.05);
    border-left: 4px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition);
}

.p-card:hover { transform: translateX(4px); box-shadow: var(--shadow-lift); }

.p-card i { font-size: 1.4rem; color: var(--gold); margin-top: 0.1rem; flex-shrink: 0; width: 28px; }

.p-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

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

/* Gold divider */
.gold-divider { padding: 1.5rem 0; background: var(--white); }
.divider-inner { display: flex; align-items: center; gap: 1rem; }
.divider-inner span { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: 0.4; }
.divider-inner i { color: var(--gold); font-size: 0.9rem; opacity: 0.7; }

/* ══════════════════════════════════════════════
   SCRIPTURE BANNER
══════════════════════════════════════════════ */
.scripture-banner { background: var(--navy); padding: 4rem 0; }

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    text-align: center;
}

.banner-cross { color: var(--gold); font-size: 1.5rem; opacity: 0.6; }

.banner-text p {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-style: italic;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.banner-text span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer { background: #070e1c; color: rgba(255,255,255,0.75); }

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    max-width: 1180px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo h2 { font-size: 1.2rem; }
.footer-brand > p { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; max-width: 280px; }

.social-icons { display: flex; gap: 0.75rem; }

.social-icons a {
    width: 36px; height: 36px;
    display: grid; place-items: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    text-decoration: none;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

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

.footer-links h4, .footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 0.6rem; }
.footer-links ul a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.9rem; transition: color var(--transition); }
.footer-links ul a:hover { color: var(--white); }

.footer-contact p { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 0.75rem; }
.footer-contact i { color: var(--gold); font-size: 0.8rem; }

.footer-bottom { text-align: center; padding: 1.5rem 2rem; font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ══════════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 900px) {
    .about-grid, .about-grid.reverse { grid-template-columns: 1fr; direction: ltr; gap: 3rem; }
    .about-grid.reverse > * { direction: ltr; }
    .visual-card { aspect-ratio: 16/9; }
    .visual-badge { right: 1rem; }
    .page-hero { margin-top: 56px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .navbar { padding: 1rem 1.25rem; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 75vw; max-width: 320px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
        border-left: 1px solid var(--border);
        padding: 2rem;
    }

    .nav-links.active { right: 0; }

    .nav-links a { font-size: 1.1rem; padding: 0.75rem 1.5rem; width: 100%; text-align: center; }
    .hamburger { display: flex; }
    .about-section, .purpose-section { padding: 4rem 0; }
    .about-milestone { flex-direction: column; gap: 1rem; }
    .p-card { padding: 1.25rem; }
    .hero-cross-left, .hero-cross-right { display: none; }
    .banner-inner { gap: 1.5rem; }
    .banner-cross { display: none; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
    .btn-primary { width: 100%; justify-content: center; }
}