/* ============================================
   get-help.css — Get Help Page
   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 */
.help-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ============================================
   MAIN INTRO SECTION
   ============================================ */
.help-section {
    background-color: #2b1515;
    padding: 70px 20px;
}

.help-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 55px;
    align-items: center;
}

.help-text h2 {
    font-size: 2.2rem;
    font-weight: normal;
    color: #c5a572;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(197,165,114,0.2);
}

.help-text p {
    font-size: 1rem;
    line-height: 1.85;
    opacity: 0.85;
    margin-bottom: 16px;
}

.help-text strong {
    color: #d4b07a;
    font-weight: normal;
}

.help-btn {
    margin-top: 10px;
    display: inline-block;
}

.help-scripture-card {
    background: rgba(90, 34, 34, 0.35);
    border: 1px solid rgba(197, 165, 114, 0.22);
    border-radius: 10px;
    padding: 36px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.help-cross {
    font-size: 1.6rem;
    color: #c5a572;
    opacity: 0.5;
}

.help-scripture-card p {
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.75;
    opacity: 0.85;
}

.help-ref {
    font-size: 0.85rem;
    color: #c5a572;
    opacity: 0.7;
    letter-spacing: 0.04em;
}

/* ============================================
   RESOURCES GRID
   ============================================ */
.resources-section {
    background-color: #331414;
    padding: 70px 20px;
    border-top: 1px solid rgba(197,165,114,0.12);
}

.resources-header {
    text-align: center;
    margin-bottom: 48px;
}

.resources-header h2 {
    font-size: 2rem;
    font-weight: normal;
    color: #c5a572;
    margin-bottom: 12px;
}

.resources-header p {
    font-size: 1rem;
    opacity: 0.72;
    font-style: italic;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 38px;
}

.resource-card {
    background: rgba(90, 34, 34, 0.2);
    border: 1px solid rgba(197, 165, 114, 0.15);
    border-radius: 10px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.resource-card:hover {
    background: rgba(90, 34, 34, 0.4);
    border-color: rgba(197, 165, 114, 0.32);
    transform: translateY(-2px);
}

.resource-icon {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 4px;
}

.resource-card h3 {
    font-size: 1.02rem;
    font-weight: normal;
    color: #c5a572;
    line-height: 1.3;
}

.resource-card p {
    font-size: 0.88rem;
    line-height: 1.6;
    opacity: 0.65;
    font-style: italic;
}

.resources-note {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.72;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
}

.resources-note a {
    color: #c5a572;
    text-decoration: none;
    border-bottom: 1px solid rgba(197,165,114,0.35);
    transition: opacity 0.2s;
}

.resources-note a:hover {
    opacity: 0.7;
}

/* ============================================
   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: 860px) {
    .help-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .page-hero-title {
        font-size: 2.6rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}