/* social_forestry_cherry.css */

:root {
    --cb-forest: #165b38;
    --cb-dark: #0f3e26;
    --cb-emerald: #10b981;
    --cb-gold: #fbbf24;
    --cb-text: #4b5563;
    --cb-light: #f8fafc;
    --cb-border: #e2e8f0;
}

.cbf-page {
    background: #f1f5f9;
    min-height: 100vh;
    padding-bottom: 100px;
}

.cbf-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    margin-top: 50px;
}

/* ── MAIN IMAGE ── */
.cbf-main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}
.cbf-main-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 450px;
}
.cbf-img-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(15, 62, 38, 0.85);
    color: #fff;
    padding: 15px 30px;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* ── COMMON TITLES ── */
.cbf-section-title { font-size: 2rem; font-weight: 900; color: var(--cb-dark); margin-bottom: 15px; }
.cbf-title-bar { height: 4px; width: 60px; background: var(--cb-gold); border-radius: 2px; margin-bottom: 25px; }
.cbf-section-title.center { text-align: center; }
.cbf-title-bar.center { margin: 0 auto 25px auto; }
.cbf-subtitle { font-size: 1.1rem; color: #6b7280; line-height: 1.6; max-width: 800px; }
.cbf-subtitle.center { text-align: center; margin: 0 auto 40px auto; }

/* ── INTRO SPLIT ── */
.cbf-intro {
    display: flex; gap: 50px; align-items: center; margin-bottom: 80px;
}
.cbf-intro-text { flex: 1; }
.cbf-intro-text h3 { font-size: 1.8rem; font-weight: 800; color: var(--cb-dark); margin-bottom: 10px; }
.cbf-intro-text p { font-size: 1.1rem; line-height: 1.8; color: var(--cb-text); margin-bottom: 20px; }
.cbf-intro-text p strong { color: var(--cb-forest); font-weight: 700; }

.cbf-intro-visual {
    flex: 0 0 350px; display: flex; flex-direction: column; gap: 20px;
}
.cbf-season-card {
    background: #fff; border-radius: 16px; padding: 25px;
    border: 1px solid var(--cb-border); position: relative; overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.cbf-season-card.spring { border-left: 5px solid #94a3b8; }
.cbf-season-card.autumn { border-left: 5px solid var(--cb-gold); background: #fefce8; border-color: #fef08a; }
.cbf-season-title { display: block; font-size: 0.75rem; font-weight: 800; color: #9ca3af; letter-spacing: 1px; margin-bottom: 5px; }
.cbf-season-card strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--cb-dark); margin-bottom: 5px; }
.cbf-season-card span { font-size: 0.95rem; color: var(--cb-text); font-weight: 600; }
.cbf-season-card i { position: absolute; right: -15px; bottom: -15px; font-size: 6rem; color: rgba(0,0,0,0.03); }
.cbf-season-card.autumn i { color: rgba(251, 191, 36, 0.15); }

@media (max-width: 900px) { .cbf-intro { flex-direction: column; } }

/* ── DESTINATION MEGHALAYA ── */
.cbf-destination {
    background: var(--cb-dark); border-radius: 24px; padding: 50px;
    position: relative; overflow: hidden; color: #fff; margin-bottom: 80px;
}
.cbf-dest-bg-icon { position: absolute; right: -20px; bottom: -30px; font-size: 15rem; color: rgba(255,255,255,0.05); }
.cbf-dest-content { position: relative; z-index: 2; max-width: 800px; }
.cbf-dest-content h3 { font-size: 2rem; font-weight: 900; margin-bottom: 20px; color: var(--cb-gold); }
.cbf-dest-content p { font-size: 1.15rem; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 20px; }

/* ── ATTRACTIONS GRID ── */
.cbf-attractions-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 80px;
}
.cbf-attract-card {
    background: #fff; border: 1px solid var(--cb-border); border-radius: 20px;
    padding: 40px 30px; text-align: center; transition: transform 0.3s, box-shadow 0.3s;
}
.cbf-attract-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.cbf-attract-card.highlight { background: var(--cb-forest); color: #fff; border: none; }
.cbf-attract-card i {
    font-size: 2.5rem; color: var(--cb-forest); margin-bottom: 20px;
}
.cbf-attract-card.highlight i { color: var(--cb-gold); }
.cbf-attract-card h4 { font-size: 1.25rem; font-weight: 800; margin-bottom: 15px; color: var(--cb-dark); }
.cbf-attract-card.highlight h4 { color: #fff; }
.cbf-attract-card p { font-size: 0.95rem; line-height: 1.6; color: var(--cb-text); margin: 0; }
.cbf-attract-card.highlight p { color: rgba(255,255,255,0.9); }

/* ── CTA ── */
.cbf-cta {
    background: #fff; border: 1px dashed var(--cb-emerald); border-radius: 20px;
    padding: 40px; display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.cbf-cta-text h3 { font-size: 1.5rem; font-weight: 800; color: var(--cb-dark); margin-bottom: 10px; }
.cbf-cta-text p { font-size: 1rem; color: var(--cb-text); }
.cbf-btn {
    background: var(--cb-forest); color: #fff; padding: 15px 30px; border-radius: 99px;
    font-weight: 700; text-decoration: none; white-space: nowrap; transition: background 0.3s;
}
.cbf-btn:hover { background: var(--cb-dark); color: #fff; }

@media (max-width: 800px) {
    .cbf-cta { flex-direction: column; text-align: center; gap: 25px; }
}
