/* home.css — homepage-specific styles
   Requires styles.css (navbar, footer base, fonts)
   -------------------------------------------------- */

/* Reset for home sections */
.home-main {
    text-align: left;
}

/* ── HERO ──────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(160deg, rgba(20, 58, 46, 0.92) 0%, rgba(18, 40, 75, 0.90) 100%),
        url('https://lh3.googleusercontent.com/p/AF1QipOFlc6yQyNj3ZDZphz6qLK6ybKTzkxwKM6AqYT2=s680-w680-h510-rw')
        center/cover no-repeat;
    padding: 80px 5% 80px;
    overflow: hidden;
    margin: 0;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 680px;
    animation: fadeUp 0.7s ease both;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    color: #a8d8c4;
    font-size: 12px;
    font-family: 'GmarketSansMedium', 'Chiron GoRound TC', sans-serif;
    letter-spacing: 0.8px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: 'SUITE', 'Chiron GoRound TC', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.hero-sub {
    font-family: 'Chiron GoRound TC', sans-serif;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    margin-bottom: 28px;
}

.hero-verse {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 18px 22px;
    margin-bottom: 28px;
    max-width: 540px;
}

.hero-verse p {
    font-family: 'SUITE', sans-serif;
    color: rgba(255,255,255,0.88);
    font-size: 14px;
    line-height: 1.8;
    font-style: italic;
}

.hero-verse cite {
    display: block;
    margin-top: 10px;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    font-style: normal;
    font-family: 'Chiron GoRound TC', sans-serif;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #fff;
    color: #1a4a3a;
    font-family: 'Chiron GoRound TC', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 11px 26px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
    background: #e8f5ef;
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: rgba(255,255,255,0.9);
    font-family: 'Chiron GoRound TC', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 11px 26px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.35);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
}

/* ── SECTIONS ──────────────────────────────────── */
.home-section {
    padding: 52px 5%;
    margin: 0;
}

.alt-bg {
    background-color: #f5f9f6;
}

.section-header {
    margin-bottom: 24px;
}

.section-label {
    display: inline-block;
    font-family: 'GmarketSansMedium', sans-serif;
    font-size: 11px;
    color: #2b6652;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.home-section h2 {
    font-family: 'SUITE', 'Chiron GoRound TC', sans-serif;
    font-size: clamp(20px, 3vw, 26px);
    font-weight: 700;
    color: #111;
    text-align: left;
}

/* ── SERVICE CARDS ─────────────────────────────── */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 600px;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid #e0ede8;
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.15s;
    color: inherit;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(43,102,82,0.12);
    transform: translateY(-2px);
}

.service-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: #e8f5f0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b6652;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-family: 'Chiron GoRound TC', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 2px;
}

.service-info p {
    font-size: 12px;
    color: #888;
    font-family: 'Chiron GoRound TC', sans-serif;
}

.service-time {
    font-family: 'GmarketSansMedium', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #2b6652;
    white-space: nowrap;
}

/* ── VIDEO ─────────────────────────────────────── */
.video-wrapper {
    width: 100%;
    max-width: 640px;
    border-radius: 14px;
    overflow: hidden;
    background: #0f1f18;
    aspect-ratio: 16 / 9;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.video-note {
    margin-top: 12px;
    font-size: 13px;
    color: #888;
    font-family: 'Chiron GoRound TC', sans-serif;
}

.video-note a {
    color: #2b6652;
    font-weight: 500;
    text-decoration: none;
}

.video-note a:hover {
    text-decoration: underline;
}

/* ── BIBLE STRIP ───────────────────────────────── */
.bible-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #c8e8de;
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none;
    color: inherit;
    max-width: 520px;
    transition: box-shadow 0.2s, transform 0.15s;
}

.bible-strip:hover {
    box-shadow: 0 4px 20px rgba(43,102,82,0.12);
    transform: translateY(-2px);
}

.bible-strip-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: #2b6652;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.bible-strip-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bible-strip-text strong {
    font-family: 'Chiron GoRound TC', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.bible-strip-text span {
    font-family: 'Chiron GoRound TC', sans-serif;
    font-size: 12px;
    color: #4a8070;
}

.bible-strip-arrow {
    color: #2b6652;
    flex-shrink: 0;
}

/* ── MAP ───────────────────────────────────────── */
.map-embed {
    border-radius: 14px;
    overflow: hidden;
    max-width: 760px;
    height: 340px;
    border: 1px solid #dde;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.address-line {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    font-size: 14px;
    color: #555;
    font-family: 'Chiron GoRound TC', sans-serif;
}

.address-line svg {
    color: #2b6652;
    flex-shrink: 0;
}

/* ── FOOTER ────────────────────────────────────── */
.home-footer {
    background: #111;
    padding: 32px 5%;
    text-align: center;
}

.footer-inner p {
    font-family: 'Chiron GoRound TC', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 2;
}

.footer-name {
    color: rgba(255,255,255,0.75) !important;
    font-weight: 600;
    margin-bottom: 4px;
}

/* ── ANIMATION ─────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── MOBILE ────────────────────────────────────── */
@media screen and (max-width: 600px) {
    .hero {
        min-height: 480px;
        padding: 60px 5% 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-verse p {
        font-size: 13px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 14px 16px;
    }

    .map-embed {
        height: 240px;
    }

    .home-section {
        padding: 36px 5%;
    }
}