/* ====================
   BLOG.CSS – Enhanced Styling
   For Pavana Lake Guide Page
   ==================== */

/* Base Blog Layout */
.blog-post {
    padding: 40px 0 60px;
    background: var(--light-cream, #FDF4EA);
}

.post-content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 0 20px 40px;
}

.post-header {
    padding: 40px 20px 20px;
}

.post-header h1 {
    font-size: 2.8rem;
    color: var(--primary-green, #386C47);
    margin-bottom: 15px;
    line-height: 1.2;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-top: 15px;
}

.post-meta i {
    color: var(--earth-brown, #9F7D4D);
    margin-right: 6px;
}

.post-featured-img {
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0 30px;
    box-shadow: 0 15px 25px -10px rgba(0, 0, 0, 0.2);
}

.post-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #2c3e2f;
}

.post-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--primary-green);
    border-left: 5px solid var(--earth-brown);
    padding-left: 20px;
}

.post-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #2d6a4f;
}

/* Info Boxes */
.info-box {
    background: #e9f5ec;
    border-left: 5px solid var(--primary-green);
    padding: 18px 22px;
    border-radius: 16px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin: 30px 0;
    font-size: 0.98rem;
}

.info-box i {
    font-size: 1.6rem;
    color: var(--primary-green);
}

.info-box.tip {
    background: #e0f2fe;
    border-left-color: #0284c7;
}

.info-box.tip i {
    color: #0284c7;
}

.info-box.warning {
    background: #fff3e3;
    border-left-color: #f59e0b;
}

/* Season Grid */
.season-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.season-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    border: 1px solid #e9ecef;
}

.season-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--earth-brown);
}

.season-card i {
    font-size: 2.5rem;
    color: var(--earth-brown);
    margin-bottom: 15px;
}

.season-card h3 {
    margin: 10px 0;
    font-size: 1.3rem;
}

/* ===== CAMPING PACKAGES CARDS (modern) ===== */
.camp-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.camp-item {
    background: white;
    border-radius: 24px;
    padding: 25px 20px 30px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.2, 0, 0, 1);
    position: relative;
    border: 1px solid rgba(159, 125, 77, 0.15);
}

.camp-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.12);
    border-color: var(--earth-brown);
}

.camp-item.premium {
    background: linear-gradient(145deg, #ffffff 0%, #fef9f0 100%);
    border-top: 4px solid var(--earth-brown);
}

.camp-item h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-green);
}

.camp-item h3 i {
    color: var(--earth-brown);
    font-size: 1.4rem;
}

.camp-item .price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e2f;
    margin: 15px 0;
    line-height: 1;
}

.camp-item .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #5f6c5e;
}

.camp-item .price small {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #aaa;
    margin-left: 8px;
}

.camp-item ul {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.camp-item li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.camp-item li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1rem;
}

.btn-small {
    display: inline-block;
    background: var(--primary-green);
    color: white;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

.btn-small:hover {
    background: var(--earth-brown);
    transform: scale(1.02);
}

/* ===== ITINERARY CARDS (Day 1 & Day 2) ===== */
.itinerary-grid-blog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.itinerary-day {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    transition: 0.2s;
}

.itinerary-day:hover {
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.itinerary-day h3 {
    background: var(--primary-green);
    color: white;
    margin: 0;
    padding: 18px 25px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.itinerary-day h3 i {
    font-size: 1.4rem;
}

.timeline-blog {
    padding: 20px 25px;
}

.timeline-item-blog {
    display: flex;
    gap: 18px;
    margin-bottom: 22px;
    border-left: 2px dashed #d4d9cb;
    padding-left: 20px;
    position: relative;
}

.timeline-item-blog:last-child {
    margin-bottom: 0;
}

.time-badge-blog {
    min-width: 90px;
    background: var(--light-cream);
    color: var(--primary-green);
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-align: center;
    font-size: 0.85rem;
    height: fit-content;
}

.item-content-blog h4 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    color: #1e3a2f;
}

.item-content-blog p {
    margin: 0;
    font-size: 0.92rem;
    color: #4b5e4a;
}

/* ===== NEARBY ATTRACTIONS (image cards) ===== */
.attractions-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.attraction-item-mini {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.attraction-item-mini:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.attraction-item-mini img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.4s;
}

.attraction-item-mini:hover img {
    transform: scale(1.05);
}

.attraction-item-mini span {
    padding: 15px 18px;
    font-weight: 500;
    background: white;
    display: block;
    text-align: center;
}

.attraction-item-mini strong {
    color: var(--primary-green);
    display: block;
    margin-bottom: 5px;
}

/* Checklist Grid */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: #fafaf5;
    border-radius: 24px;
    padding: 25px;
    margin: 30px 0;
}

.checklist-grid ul {
    list-style: none;
    margin: 0;
}

.checklist-grid li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-grid i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    background: #fefaf5;
    border-radius: 20px;
    margin-bottom: 18px;
    padding: 18px 25px;
    transition: 0.2s;
    border: 1px solid #f0e4d5;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin: 0 0 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h3::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--earth-brown);
}

.faq-item div p {
    margin: 10px 0 0;
    color: #4a5b44;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #1c3d2c 0%, #2d6a4f 100%);
    border-radius: 32px;
    padding: 40px 30px;
    text-align: center;
    color: white;
    margin: 50px 0 30px;
}

.cta-banner h3 {
    color: white;
    font-size: 1.9rem;
    margin-bottom: 15px;
}

.cta-banner .btn-primary {
    background: var(--earth-brown);
    margin-top: 20px;
}

.cta-banner .btn-primary:hover {
    background: #ffb347;
    color: #1e3a2f;
}

/* Map wrapper */
.map-embed-wrapper {
    margin: 30px 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 850px) {
    .itinerary-grid-blog {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .camp-comparison {
        gap: 20px;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
    }

    .post-header h1 {
        font-size: 2rem;
    }

    .post-content h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 550px) {
    .timeline-item-blog {
        flex-direction: column;
        gap: 6px;
        border-left: none;
        padding-left: 0;
    }

    .time-badge-blog {
        align-self: flex-start;
    }

    .attractions-list {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 30px 20px;
    }

    .cta-banner h3 {
        font-size: 1.4rem;
    }
}