/* Blog Detail Page Styles */

:root {
    --blog-detail-bg: #e9e9db;
    --text-dark: #1a1a1a;
    --text-muted: #616161;
    --primary-orange: #ff5722;
}

.blog-detail-page {
    background-color: var(--blog-detail-bg);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
}

.blog-detail-hero {
    padding: 60px 0 40px;
    text-align: left;
}

.blog-detail-hero h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 800px;
}

.blog-detail-page .container {
    max-width: 800px;
    /* Narrower for reading comfort */
    margin: 0 auto;
    padding: 0 20px;
}

.blog-detail-hero .breadcrumbs {
    font-size: 14px;
    color: var(--text-muted);
}

.blog-detail-hero .breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
}

.blog-detail-hero .breadcrumbs a:hover {
    color: var(--primary-orange);
}

.blog-detail-hero .separator {
    margin: 0 8px;
    font-size: 12px;
}

.featured-image {
    margin-top: 20px;
    margin-bottom: 40px;
}

.featured-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.content-body h2 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.content-body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.blog-cta {
    margin-top: 80px;
    margin-bottom: 100px;
    text-align: center;
}

.cta-inner h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-inner p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-orange);
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    gap: 10px;
}

.btn-book-now:hover {
    transform: scale(1.05);
    background-color: #e64a19;
}

.btn-book-now img {
    width: 18px;
    height: 18px;
}

@media (max-width: 768px) {
    .blog-detail-hero h1 {
        font-size: 28px;
    }

    .cta-inner h3 {
        font-size: 24px;
    }
}

/* Related Posts */
.related-posts {
    padding: 80px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.related-posts .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

.blog-detail-page .container-full {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Reusing blog grid logic but with detail page scope */
.related-posts .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.related-posts .blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-posts .blog-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.related-posts .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.related-posts .card-image {
    width: 100%;
    padding: 15px 15px 0 15px;
    display: block;
    box-sizing: border-box;
}

.related-posts .card-image img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

.related-posts .card-body {
    padding: 20px;
}

.related-posts .card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.related-posts .card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.related-posts .card-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
}

.related-posts .card-date {
    display: flex;
    align-items: center;
    font-size: 13px;
    color: #888;
    gap: 8px;
}

.related-posts .calendar-icon {
    color: #000;
    stroke: #000;
}

@media (max-width: 992px) {
    .related-posts .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .related-posts .blog-grid {
        grid-template-columns: 1fr;
    }
}