/* ===== Single Blog Page ===== */

.hero.destination-header {
    min-height: 420px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero .bg-overlay {
    background: rgba(0,0,0,0.55);
    min-height: 420px;
    display: flex;
    align-items: center;
}

.hero .intro-title {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

/* Blog Meta */
.single-blog .blog-meta {
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
}

.single-blog .blog-meta i {
    color: #ff6600;
}

/* Blog Content */
.single-blog .blog-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.single-blog .blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 15px 0;
}

/* Gallery Section (for next step) */
.blog-gallery {
    margin-top: 30px;
}

.blog-gallery h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-gallery img {
    width: 100%;
    border-radius: 6px;
    transition: 0.3s;
}

.blog-gallery img:hover {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .hero .intro-title {
        font-size: 28px;
    }
}
.blog-gallery {
    margin-top: 50px;
}

.gallery-title {
    margin-bottom: 25px;
    font-weight: 600;
}

.gallery-thumb {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover img {
    transform: scale(1.08);
}.blog-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.gallery-thumb {
    width: 100%;
    height: 120px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.gallery-thumb:hover {
    transform: scale(1.05);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}