/* ============================================
   give.css — Give 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;
}

/* ============================================
   GIVE SECTION
   ============================================ */
.give-section {
    background-color: #2b1515;
    padding: 75px 20px;
}

.give-container {
    max-width: 1100px;
    margin: 0 auto;
}

.give-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 65px;
    align-items: center;
}

/* ---- Text side ---- */
.give-text h2 {
    font-size: 2.2rem;
    font-weight: normal;
    color: #c5a572;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(197,165,114,0.2);
}

.give-text p {
    font-size: 1rem;
    line-height: 1.85;
    opacity: 0.85;
    margin-bottom: 18px;
}

.give-text em {
    color: #e8d5b0;
    font-style: italic;
}

.give-text strong {
    color: #d4b07a;
    font-weight: normal;
}

.give-no-zelle {
    margin-top: 32px;
    background: rgba(90,34,34,0.25);
    border: 1px solid rgba(197,165,114,0.18);
    border-radius: 10px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.give-no-zelle-label {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c5a572;
    opacity: 0.75;
}

.give-no-zelle p {
    font-size: 0.97rem;
    line-height: 1.7;
    opacity: 0.85;
    margin-bottom: 4px;
}

.give-email-link {
    color: #c5a572;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(197,165,114,0.35);
    transition: opacity 0.2s;
    align-self: flex-start;
}

.give-email-link:hover {
    opacity: 0.7;
}

.give-contact-btn {
    align-self: flex-start;
    margin-top: 8px;
    display: inline-block;
}

/* ---- QR card ---- */
.give-qr-card {
    background: rgba(90,34,34,0.28);
    border: 1px solid rgba(197,165,114,0.22);
    border-radius: 12px;
    padding: 36px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.give-qr-label {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c5a572;
    opacity: 0.75;
}

/* Placeholder box — remove once real QR image is added */
.give-qr-placeholder {
    position: relative;
    width: 200px;
    height: 200px;
    background: rgba(197,165,114,0.06);
    border: 1px solid rgba(197,165,114,0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Corner marks mimicking QR finder patterns */
.give-qr-corner {
    position: absolute;
    width: 22px;
    height: 22px;
}

.give-qr-corner--tl {
    top: 10px;
    left: 10px;
    border-top: 3px solid #c5a572;
    border-left: 3px solid #c5a572;
    opacity: 0.5;
}

.give-qr-corner--tr {
    top: 10px;
    right: 10px;
    border-top: 3px solid #c5a572;
    border-right: 3px solid #c5a572;
    opacity: 0.5;
}

.give-qr-corner--bl {
    bottom: 10px;
    left: 10px;
    border-bottom: 3px solid #c5a572;
    border-left: 3px solid #c5a572;
    opacity: 0.5;
}

.give-qr-corner--br {
    bottom: 10px;
    right: 10px;
    border-bottom: 3px solid #c5a572;
    border-right: 3px solid #c5a572;
    opacity: 0.5;
}

.give-qr-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.give-qr-icon {
    font-size: 2rem;
    opacity: 0.2;
}

.give-qr-placeholder-inner p {
    font-size: 0.85rem;
    opacity: 0.5;
    margin: 0;
}

.give-qr-sub {
    font-size: 0.72rem !important;
    opacity: 0.35 !important;
    font-style: italic;
}

/* Real QR image — used once placeholder is replaced */
.give-qr-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 4px;
}

.give-qr-instruction {
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.65;
    line-height: 1.5;
}

.give-qr-cross {
    font-size: 1.2rem;
    color: #c5a572;
    opacity: 0.35;
    margin-top: 4px;
}

/* ============================================
   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) {
    .give-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .give-qr-card {
        max-width: 360px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .page-hero-title {
        font-size: 2.6rem;
    }
}