/* ============================================
   new-here.css — I'm New Here Page Styles
   Salt & Light Church
   ============================================ */

/* Page Hero — reuse from beliefs.css via shared classes */
.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;
}

/* ============================================
   LAUNCH NOTICE
   ============================================ */
.launch-notice {
    background-color: #3d1919;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

.launch-inner {
    max-width: 720px;
    margin: 0 auto;
}

.launch-badge {
    display: inline-block;
    background-color: #c5a572;
    color: #2b1515;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-family: Georgia, serif;
}

.launch-notice h2 {
    font-size: 2rem;
    font-weight: normal;
    margin-bottom: 18px;
    color: #fff;
}

.launch-notice p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.85;
}

/* ============================================
   SCHEDULE — new clean version (no rug texture)
   ============================================ */
.schedule-section {
    background-color: #2b1515;
    padding: 65px 20px;
    border-top: 1px solid rgba(197,165,114,0.12);
    border-bottom: 1px solid rgba(197,165,114,0.12);
}

.schedule-container {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-header {
    text-align: center;
    margin-bottom: 48px;
}

.schedule-header h2 {
    font-size: 2rem;
    font-weight: normal;
    color: #c5a572;
    margin-bottom: 12px;
}

.schedule-header p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.8;
}

.schedule-header strong {
    color: #d4b07a;
    font-weight: normal;
}

.schedule-cols {
    display: flex;
    align-items: stretch;
    background: rgba(197,165,114,0.05);
    border: 1px solid rgba(197,165,114,0.18);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 38px;
}

.schedule-col {
    flex: 1;
    padding: 36px 36px 38px;
}

.schedule-col-divider {
    width: 1px;
    background: rgba(197,165,114,0.2);
    flex-shrink: 0;
}

.schedule-col-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.schedule-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #c5a572;
    opacity: 0.7;
    flex-shrink: 0;
}

.schedule-col h3 {
    font-size: 1.05rem;
    font-weight: normal;
    color: #c5a572;
}

.schedule-subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 22px;
    padding-left: 17px;
}

.date-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.date-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px solid rgba(197,165,114,0.1);
    gap: 12px;
}

.date-list li:last-child {
    border-bottom: none;
}

.date-month {
    font-size: 0.88rem;
    opacity: 0.65;
    letter-spacing: 0.04em;
}

.date-val {
    font-size: 0.92rem;
    color: #e8d5b0;
    font-style: italic;
    text-align: right;
}

.schedule-footer {
    text-align: center;
}

/* ============================================
   FAQ / WHAT TO EXPECT
   ============================================ */
.faq-section {
    background-color: #2b1515;
    padding: 70px 20px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header-nh {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-nh h2 {
    font-size: 2.4rem;
    font-weight: normal;
    margin-bottom: 12px;
    color: #c5a572;
}

.section-header-nh p {
    font-size: 1.1rem;
    opacity: 0.75;
    font-style: italic;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.faq-card {
    background: rgba(90, 34, 34, 0.22);
    border: 1px solid rgba(197, 165, 114, 0.18);
    border-radius: 10px;
    padding: 32px 30px;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.faq-card:hover {
    background: rgba(90, 34, 34, 0.42);
    border-color: rgba(197, 165, 114, 0.35);
}

.faq-card--wide {
    grid-column: span 3;
}

.faq-card--wide p + p {
    margin-top: 14px;
}

.faq-q-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.faq-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.faq-card h3 {
    font-size: 1.15rem;
    font-weight: normal;
    color: #c5a572;
}

.faq-card p {
    font-size: 0.97rem;
    line-height: 1.78;
    opacity: 0.85;
}

.faq-card strong {
    color: #d4b07a;
    font-weight: normal;
}

.faq-card em {
    color: #e8d5b0;
    font-style: italic;
}

/* ============================================
   PERMISSION + CTA COMBINED SECTION
   ============================================ */
.permission-section {
    background-color: #5a2222;
    padding: 70px 20px;
}

.permission-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.permission-layout {
    display: flex;
    align-items: center;
    gap: 0;
}

.permission-left {
    flex: 1;
    padding-right: 55px;
    text-align: center;
}

.permission-cross {
    font-size: 1.8rem;
    color: #c5a572;
    opacity: 0.5;
    margin-bottom: 18px;
    display: block;
}

.permission-section h2 {
    font-size: 1.5rem;
    font-weight: normal;
    color: #e8d5b0;
    margin-bottom: 20px;
}

.permission-quote {
    font-family: Georgia, serif;
    font-size: 1.75rem;
    font-style: italic;
    font-weight: normal;
    line-height: 1.65;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.35);
}

.permission-divider {
    width: 1px;
    background: rgba(197,165,114,0.3);
    align-self: stretch;
    flex-shrink: 0;
}

.permission-right {
    flex: 1;
    padding-left: 55px;
}

.permission-right h3 {
    font-size: 1.8rem;
    font-weight: normal;
    color: #c5a572;
    margin-bottom: 18px;
}

.permission-right p {
    font-size: 0.97rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 14px;
}

.permission-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* ============================================
   VISIT + MAP
   ============================================ */
.visit-section {
    background-color: #331414;
    padding: 70px 20px;
}

.visit-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.visit-info h2 {
    font-size: 2.2rem;
    font-weight: normal;
    color: #c5a572;
    margin-bottom: 34px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(197, 165, 114, 0.25);
}

.visit-detail {
    margin-bottom: 28px;
}

.visit-label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #c5a572;
    opacity: 0.7;
    margin-bottom: 6px;
}

.visit-detail p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.88;
}

.visit-sub {
    font-size: 0.88rem !important;
    font-style: italic;
    opacity: 0.6 !important;
    margin-top: 3px;
}

.visit-detail a {
    color: #c5a572;
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 165, 114, 0.35);
    transition: opacity 0.2s ease;
}

.visit-detail a:hover {
    opacity: 0.75;
}

.visit-coffee {
    background: rgba(90, 34, 34, 0.3);
    border: 1px solid rgba(197, 165, 114, 0.2);
    border-radius: 8px;
    padding: 24px 22px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.visit-coffee p {
    font-size: 0.97rem;
    line-height: 1.75;
    opacity: 0.85;
}

.visit-coffee strong {
    color: #d4b07a;
    font-weight: normal;
}

.visit-coffee em {
    color: #c5a572;
    font-style: italic;
}

.visit-map {
    height: 460px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(197, 165, 114, 0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.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) {
    .permission-layout {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .permission-left {
        padding-right: 0;
    }

    .permission-right {
        padding-left: 0;
        text-align: center;
    }

    .permission-divider {
        width: 60%;
        height: 1px;
        align-self: center;
    }

    .permission-buttons {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-card--wide {
        grid-column: span 2;
    }

    .schedule-cols {
        flex-direction: column;
    }

    .schedule-col-divider {
        width: 100%;
        height: 1px;
        flex-shrink: 0;
    }

    .visit-container {
        grid-template-columns: 1fr;
    }

    .visit-map {
        height: 340px;
    }
}

@media (max-width: 600px) {
    .page-hero-title {
        font-size: 2.4rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-card--wide {
        grid-column: span 1;
    }

    .permission-quote {
        font-size: 1.6rem;
    }

    .schedule-col {
        padding: 28px 22px;
    }
}