/* =====================================================
   HIKING — Full-bleed hero image layout
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --hk-green:      #16a34a;
    --hk-green-deep: #15803d;
    --hk-lime:       #84cc16;
    --hk-dark:       #020f05;
    --hk-ink:        #1a2a1a;
    --hk-muted:      #4a6a4a;
    --hk-border:     rgba(22,163,74,0.2);
}

/* ── HERO: full-bleed image ── */
.page-hero--hiking {
    position: relative;
    height: 60vh;
    min-height: 360px;
    max-height: 560px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 0;
}

.page-hero--hiking .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1501555088652-021faa106b9b?w=1600&q=80');
    background-size: cover;
    background-position: center 35%;
    filter: brightness(0.6);
    transition: filter 0.4s;
}
.page-hero--hiking:hover .hero-bg { filter: brightness(0.68); }

.page-hero--hiking .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2,15,5,0.85) 0%, rgba(2,15,5,0.2) 50%, transparent 100%);
}

.page-hero--hiking .container {
    position: relative;
    z-index: 2;
    padding: 0 2rem 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.page-hero--hiking h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.page-hero__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.78);
    max-width: 500px;
    line-height: 1.6;
    margin: 0;
}

/* ── CONTENT ── */
.page-section { padding: 2.5rem 0; }
.page-section .container { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; }

.page-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--hk-dark); margin-bottom: 0.8rem;
}

.page-section p  { color: #ffffff; line-height: 1.75; }
.page-section > .container > p { color: #ffffff; }
.fw-semibold     { color: #ffffff; font-weight: 600; }
.text-muted      { color: rgba(255,255,255,0.55) !important; font-size: 0.85rem; }

/* ── LATEST HIKE CARD ── */
.hiking-latest {
    background: #fff;
    border: 1.5px solid var(--hk-border);
    border-radius: 18px;
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 20px rgba(22,163,74,0.07);
}
.hiking-latest h2 {
    font-family: 'Playfair Display', serif;
    color: var(--hk-dark); font-size: 1.45rem;
    border-bottom: 2px solid var(--hk-border);
    padding-bottom: 0.65rem; margin-bottom: 0.7rem;
}
/* Cards have white/light background — keep text dark inside them */
.hiking-latest { background: rgba(255,255,255,0.08); border: 1.5px solid rgba(22,163,74,0.25); border-radius: 18px; padding: 1.75rem 2rem; }
.hiking-latest h2 { font-family: 'Playfair Display', serif; color: #ffffff !important; font-size: 1.45rem; border-bottom: 2px solid rgba(22,163,74,0.25); padding-bottom: 0.65rem; margin-bottom: 0.7rem; }
.hiking-content { line-height: 1.8; color: #ffffff !important; margin-top: 0.75rem; }

/* ── OLDER POSTS ── */
.page-section hr { border-color: rgba(22,163,74,0.25); margin: 2rem 0; }
.hiking-older-list, .page-section ul.hiking-older-list { list-style: none; padding: 0; margin: 0; }
.hiking-older-item, .page-section article {
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(22,163,74,0.2);
    border-left: 4px solid var(--hk-green);
    border-radius: 0 14px 14px 0;
    padding: 1.1rem 1.25rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.15s, transform 0.15s;
}
.hiking-older-item:hover, .page-section article:hover {
    box-shadow: 0 4px 14px rgba(22,163,74,0.15);
    transform: translateX(2px);
}
.hiking-older-item h4, .page-section article h4 {
    font-family: 'Playfair Display', serif;
    color: #ffffff !important; font-size: 1.05rem; margin: 0 0 0.3rem;
}

/* ── CONTACT ── */
.page-section--contact {
    background: linear-gradient(135deg, #020f05, #052e16, #0a4a1e);
    border-radius: 20px; color: #fff;
    text-align: center; padding: 4rem 1.5rem; margin: 2rem 0;
}
.page-section--contact h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: 1.8rem; margin-bottom: 0.7rem; }
.page-section--contact p  { color: rgba(255,255,255,0.72); }
.contact-cta a, .contact-cta .btn-primary {
    display: inline-block;
    background: var(--hk-lime); color: #031a08;
    padding: 0.7rem 2rem; border-radius: 999px;
    text-decoration: none; font-weight: 700; font-size: 0.9rem; border: none;
    transition: background 0.2s, transform 0.15s;
}
.contact-cta a:hover { background: #fff; color: #031a08; transform: translateY(-1px); }

/* ── EMPTY STATE & ALL CONTENT TEXT ── */
.page-section p,
.page-section .container p,
.page-section .hiking-content p {
    color: #ffffff !important;
}
.hiking-older-item h4,
.page-section article h4 {
    color: #ffffff !important;
}
.page-section--contact p { color: rgba(255,255,255,0.82) !important; }
