/* ================================================================
   about.css — Public "About WIN CMS" page
   Extends church_website.css (linked before this file).
   ================================================================ */

/* ===========================
   Hero tagline
   =========================== */
.hero-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
    max-width: 480px;
    text-align: center;
    line-height: 1.6;
}

.hero-name {
    text-align: center;
}

/* ===========================
   About CMS grid
   =========================== */
.about-cms-grid {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
}

.about-cms-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.about-cms-text p:last-child {
    margin-bottom: 0;
}

/* ===========================
   Features grid
   =========================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e0e8f0;
    border-radius: 12px;
    padding: 24px;
    border-top: 4px solid var(--gold);
    transition: box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
}

/* ===========================
   Audience grid
   =========================== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.audience-card {
    background: var(--light);
    border: 1px solid #e0e8f0;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}

.audience-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.audience-icon {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 16px;
}

.audience-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.audience-desc {
    font-size: 13px;
    line-height: 1.7;
    color: var(--muted);
}

/* ===========================
   CTA section
   =========================== */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, #2a6496 60%, #1a3a55 100%);
    padding: 80px 24px;
}

.cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    margin-bottom: 24px;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff;
    margin-bottom: 12px;
}

.cta-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 440px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.cta-btn {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

/* ===========================
   Footer links
   =========================== */
.footer-links {
    margin-top: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 900px) {
    .about-cms-grid {
        grid-template-columns: 1fr;
    }

    .about-cms-grid .about-meta {
        order: -1;
    }
}
