/* ============================================
   beliefs.css — What We Believe Page Styles
   Salt & Light Church
   ============================================ */

/* Page Hero */
.page-hero {
    position: relative;
    height: 420px;
    background: url('../assets/anoka-image.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 8, 8, 0.62);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.page-hero-eyebrow {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c5a572;
    margin-bottom: 14px;
    opacity: 0.9;
}

.page-hero-title {
    font-size: 3.4rem;
    font-weight: normal;
    line-height: 1.15;
    margin-bottom: 18px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.page-hero-sub {
    font-size: 1.15rem;
    font-style: italic;
    opacity: 0.88;
    letter-spacing: 0.03em;
}

/* Shared container */
.beliefs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.4rem;
    font-weight: normal;
    margin-bottom: 12px;
    color: #c5a572;
}

.section-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    font-style: italic;
}

/* ============================================
   CORE BELIEFS
   ============================================ */
.beliefs-section {
    background-color: #2b1515;
    padding: 70px 20px;
}

.beliefs-intro {
    max-width: 780px;
    margin: 0 auto 55px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.85;
    font-style: italic;
    border-bottom: 1px solid rgba(197, 165, 114, 0.25);
    padding-bottom: 45px;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.belief-card {
    background: rgba(90, 34, 34, 0.28);
    border: 1px solid rgba(197, 165, 114, 0.18);
    border-radius: 10px;
    padding: 32px 28px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.belief-card:hover {
    background: rgba(90, 34, 34, 0.48);
    border-color: rgba(197, 165, 114, 0.38);
}

.belief-card--wide {
    grid-column: span 3;
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.belief-card--wide h3 {
    white-space: nowrap;
}

.belief-number {
    font-size: 2.4rem;
    color: #c5a572;
    opacity: 0.45;
    font-style: italic;
    line-height: 1;
    margin-bottom: 12px;
    font-family: Georgia, serif;
}

.belief-card--wide .belief-number {
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 2px;
}

.belief-card h3 {
    font-size: 1.1rem;
    font-weight: normal;
    color: #c5a572;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.belief-card p {
    font-size: 0.97rem;
    line-height: 1.75;
    opacity: 0.85;
}

/* ============================================
   CORE VALUES
   ============================================ */
.values-section {
    background-color: #331414;
    padding: 70px 20px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.value-item {
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
    padding: 38px 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.value-item:first-child {
    border-top: 1px solid rgba(197, 165, 114, 0.2);
}

.value-header {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 4px;
}

.value-num {
    font-size: 2rem;
    color: #c5a572;
    opacity: 0.4;
    font-style: italic;
    font-family: Georgia, serif;
    flex-shrink: 0;
    width: 36px;
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: normal;
    color: #d4b07a;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.85;
    padding-left: 54px;
}

.value-item blockquote {
    padding-left: 54px;
    border-left: 3px solid #c5a572;
    margin-left: 0;
    font-style: italic;
    font-size: 0.95rem;
    opacity: 0.75;
    line-height: 1.7;
    color: #e8d5b0;
    margin-top: 6px;
    padding-right: 20px;
}

.value-item blockquote cite {
    display: block;
    margin-top: 6px;
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    opacity: 0.85;
    font-style: normal;
    color: #c5a572;
}

/* ============================================
   MISSION & VISION
   ============================================ */
.mission-section {
    background-color: #4a1e1e;
    padding: 70px 20px;
    background-image: url('../assets/rug.png');
    background-size: cover;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission-block h2 {
    font-size: 1.8rem;
    font-weight: normal;
    color: #c5a572;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(197, 165, 114, 0.3);
}

.mission-block p {
    font-size: 1rem;
    line-height: 1.85;
    opacity: 0.88;
}

/* ============================================
   DOCTRINAL STATEMENT
   ============================================ */
.doctrine-section {
    background-color: #2b1515;
    padding: 70px 20px;
}

.doctrine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.doctrine-card {
    background: rgba(255,255,255, 0.03);
    border: 1px solid rgba(197, 165, 114, 0.15);
    border-radius: 8px;
    padding: 28px 24px;
    transition: background 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.doctrine-card:hover {
    background: rgba(90, 34, 34, 0.35);
    border-color: rgba(197, 165, 114, 0.3);
}

.doctrine-card h3 {
    font-size: 1rem;
    font-weight: normal;
    color: #c5a572;
    letter-spacing: 0.03em;
}

.doctrine-card p {
    font-size: 0.93rem;
    line-height: 1.72;
    opacity: 0.82;
    flex: 1;
}

.doctrine-ref {
    font-size: 0.8rem;
    color: #c5a572;
    opacity: 0.55;
    letter-spacing: 0.04em;
    margin-top: 6px;
    font-style: italic;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background-color: #5a2222;
    text-align: center;
    padding: 70px 20px;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: normal;
    margin-bottom: 14px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 30px;
    font-style: italic;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-button--outline {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.6);
}

.hero-button--outline:hover {
    background-color: rgba(255,255,255,0.08);
    border-color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .beliefs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .belief-card--wide {
        grid-column: span 2;
    }

    .doctrine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.4rem;
    }

    .beliefs-grid {
        grid-template-columns: 1fr;
    }

    .belief-card--wide {
        grid-column: span 1;
        flex-direction: column;
        gap: 12px;
    }

    .doctrine-grid {
        grid-template-columns: 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .value-item p,
    .value-item blockquote {
        padding-left: 0;
    }
}