/* ==========================================================================
   INDIA TOUR HIRE - BLOG STYLESHEET (css/blog.css)
   Clean, modern, responsive styling for all travel blog articles & details
   ========================================================================== */

/* ====== 1. LAYOUT & CONTAINERS ====== */
.blog-detail-section {
    padding: 60px 0 80px;
    background: #fbfbfb;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-layout {
    display: flex;
    gap: 40px;
}

/* Main Content Column */
.blog-content-area {
    flex: 0 0 70%;
    max-width: 70%;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
}

/* Sidebar Column */
.blog-sidebar-area {
    flex: 0 0 30%;
    max-width: 30%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ====== 2. POST META & TYPOGRAPHY ====== */
.post-meta-details {
    display: flex;
    gap: 20px;
    font-size: 13.5px;
    color: #777;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e8e8e8;
    align-items: center;
}

.post-meta-details span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta-details span i {
    color: #0f7c46;
}

.post-title {
    font-size: 32px;
    font-weight: 800;
    color: #111122;
    line-height: 1.35;
    margin-bottom: 20px;
}

.blog-rich-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #444455;
    margin-bottom: 24px;
}

.blog-rich-text h2 {
    font-size: 24px;
    font-weight: 800;
    color: #111122;
    margin: 36px 0 16px;
    line-height: 1.4;
}

.blog-rich-text h3 {
    font-size: 19px;
    font-weight: 700;
    color: #111122;
    margin: 28px 0 12px;
    line-height: 1.4;
}

.blog-rich-text ul,
.blog-rich-text ol {
    margin-bottom: 24px;
    padding-left: 20px;
}

.blog-rich-text li {
    font-size: 15.5px;
    line-height: 1.75;
    color: #444455;
    margin-bottom: 12px;
}

.blog-rich-text strong {
    color: #111122;
}

.blog-rich-text a {
    color: #0f7c46;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.blog-rich-text a:hover {
    color: #09522e;
}

/* Dropcap styling */
.dropcap {
    float: left;
    font-size: 55px;
    line-height: 44px;
    padding-top: 4px;
    padding-right: 8px;
    padding-left: 3px;
    font-weight: 800;
    color: #0f7c46;
}

/* ====== 3. IMAGES & MEDIA ====== */
.dest-image-wrapper {
    margin: 25px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dest-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ====== 4. HIGHLIGHT BOXES & CARDS ====== */
.highlight-box {
    background: rgba(15, 124, 70, 0.04);
    border-left: 4px solid #0f7c46;
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin: 30px 0;
}

.highlight-box h4 {
    margin-top: 0;
    color: #0f7c46;
    font-weight: 700;
    margin-bottom: 12px;
}

.highlight-box ul {
    margin-bottom: 0;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 15.5px;
    color: #2e5c3e;
}

/* Blog In-Article Call to Action Box */
.blog-cta-box {
    background: #f4faf6;
    border: 1px solid #d2ecd9;
    border-left: 5px solid #0f7c46;
    padding: 20px 24px;
    border-radius: 10px;
    margin: 25px 0;
}

.blog-cta-box p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #222;
}

.blog-cta-box p:last-child {
    margin-bottom: 0;
}

.blog-cta-box a {
    color: #0f7c46;
    font-weight: 600;
    text-decoration: none;
}

.blog-cta-box a:hover {
    text-decoration: underline;
}

/* Destination Cards */
.destination-card {
    background: #ffffff;
    border: 1px solid #ebebeb;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.03);
    border-color: rgba(15, 124, 70, 0.15);
}

.destination-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #111122;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.destination-card h4 .number {
    background: rgba(15, 124, 70, 0.08);
    color: #0f7c46;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    font-weight: 800;
}

.destination-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
    font-weight: 500;
}

.destination-meta span i {
    color: #0f7c46;
    margin-right: 4px;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    margin: 30px 0;
    padding-left: 30px;
    border-left: 3px solid rgba(15, 124, 70, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0f7c46;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 3px rgba(15, 124, 70, 0.25);
}

.timeline-time {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f7c46;
    margin-bottom: 4px;
    display: block;
}

.timeline-title {
    font-size: 16px;
    font-weight: 800;
    color: #111122;
    margin-bottom: 6px;
}

.timeline-desc {
    font-size: 14.5px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ====== 5. TABLES ====== */
.blog-table-responsive {
    margin: 25px 0;
    overflow-x: auto;
}

.blog-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-bottom: 0;
    background: #ffffff;
}

.blog-table thead {
    background-color: #2fa56b;
    color: #ffffff;
}

.blog-table th {
    padding: 12px 15px;
    font-weight: 700;
    font-size: 14.5px;
    border: 1px solid #0d6d3d;
    white-space: nowrap;
}

.blog-table td {
    padding: 12px 15px;
    font-size: 14px;
    border: 1px solid #e5e5e5;
    color: #444;
}

.blog-table tr:nth-child(even) {
    background-color: #f9fbf9;
}

.blog-table td.col-highlight,
.blog-table td:first-child {
    font-weight: 600;
    color: #111;
}

/* ====== 6. SIDEBAR WIDGETS ====== */
.sidebar-widget {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #ebebeb;
    padding: 30px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: #111122;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #0f7c46;
    display: inline-block;
}

.cta-widget {
    background: linear-gradient(135deg, #093c25, #0f7c46);
    color: #ffffff;
    border: none;
    text-align: center;
}

.cta-widget .sidebar-title {
    color: #ffffff;
    border-bottom-color: #ffd200;
}

.cta-widget p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta-widget-btn {
    background: #ffd200;
    color: #111122 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 210, 0, 0.3);
    text-transform: uppercase;
    font-size: 13.5px;
    letter-spacing: 0.5px;
}

.cta-widget-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.sidebar-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.sidebar-post-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f0f0f0;
}

.sidebar-post-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-post-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #111122;
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s ease;
    text-decoration: none;
}

.sidebar-post-title:hover {
    color: #0f7c46;
}

.sidebar-post-date {
    font-size: 11px;
    color: #888;
}

/* ====== 7. RESPONSIVE MEDIA QUERIES ====== */
@media (max-width: 991px) {
    .blog-layout {
        flex-direction: column !important;
    }

    .blog-content-area,
    .blog-sidebar-area {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .blog-content-area {
        padding: 24px !important;
    }
}

/* ====== 8. HERO BANNER STYLES ====== */
.dlab-bnr-inr-entry,
.dlab-bnr-inr-entry *,
.dlab-bnr-inr .breadcrumb-row ul li,
.dlab-bnr-inr .breadcrumb-row ul li a,
.dlab-bnr-inr .breadcrumb-row ul li:last-child {
    color: #ffffff !important;
}

.dlab-bnr-inr .breadcrumb-row ul li a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

.blog-hero-title,
.dlab-bnr-inr-entry h1 {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
}

@media (max-width: 767px) {
    .dlab-bnr-inr {
        height: 250px !important;
        background-image: url(../images/gallery/blogs-phone-image.jpg) !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .blog-container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .blog-hero-title,
    .dlab-bnr-inr-entry h1 {
        font-size: 30px !important;
        line-height: 1.25 !important;
    }

    .blog-table th,
    .blog-table td {
        padding: 8px 10px;
        font-size: 13px;
    }
}