/* Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-size: 16px;
    scroll-behavior: smooth;
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #F3F3F0;
}

/* Header Section */
.post-header {
    margin-top: -70px !important;
    position: relative;
    min-height: 70vh;
    width: 100%;
    overflow: hidden;
}

.post-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('../images/blog3/neom-Oj8w6hWC0dU-unsplash-scaled.webp') center/cover no-repeat;
    z-index: 0;
}

.post-header-content {
    position: relative;
    z-index: 1;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    box-sizing: border-box;
}

.post-category {
    color: rgba(255,255,255,0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.post-title {
    font-family: 'Marcellus', serif;
    font-size: 3.5rem;
    color: white !important;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    font-weight: 300;
    max-width: 900px;
    text-align: center;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.post-date {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.post-date i {
    margin-right: 8px;
    font-size: 0.8rem;
}

/* Post Content Section */
.post-content-section {
    padding: 80px 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.post-content {
    font-family: 'Montserrat', sans-serif;
    color: #555;
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-content p {
    margin-bottom: 30px;
}

.post-image {
    width: 100%;
    height: auto;
    margin: 50px 0;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.full-width-image {
    width: 100vw;
    max-width: 1200px;
    
    
    border-radius: 0;
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: #777;
    margin-top: -40px;
    margin-bottom: 50px;
    font-size: 0.95rem;
}

.post-content h2 {
    font-family: 'Marcellus', serif;
    font-size: 2.2rem;
    color: #333;
    margin: 60px 0 25px;
    line-height: 1.3;
}

.post-content h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.7rem;
    color: #333;
    margin: 50px 0 20px;
    line-height: 1.3;
}

.featured-image {
    width: 100%;
    height: 500px !important;
    object-fit: cover;
    margin-bottom: 60px;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Modern Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.image-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Related Posts */
.related-posts {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-family: 'Marcellus', serif;
    font-size: 2.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 50px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.blog-post {
    width: 100%;
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-image-container:hover .blog-image {
    transform: scale(1.1);
}

.blog-category {
    color: #4E9B82;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin: 20px 0 8px;
    font-family: 'Montserrat', sans-serif;
}

.blog-post-title {
    font-size: 1.3rem;
    line-height: 1.4;
    margin-bottom: 10px;
    font-family: 'Marcellus', serif;
    color: #333;
}

/* Back to Blog */
.back-to-blog {
    text-align: center;
    padding: 60px 0;
    background: #F3F3F0;
}

.back-link {
    color: #4E9B82;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border: 1px solid #4E9B82;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #4E9B82;
    color: white;
}

.back-link i {
    margin-right: 8px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .post-title {
        font-size: 3rem;
    }
    
    .container {
        max-width: 900px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-image {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2.5rem;
        max-width: 90%;
    }
    
    .container {
        padding: 0 30px;
    }
    
    .featured-image {
        height: 400px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 30px;
    }
    
    .post-content h2 {
        font-size: 1.8rem;
    }
    
    .post-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .post-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .post-meta {
        flex-direction: column;
    }
    
    .post-date {
        margin: 5px 0;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .post-content h2 {
        font-size: 1.6rem;
    }
    
    .post-content h3 {
        font-size: 1.3rem;
    }
    
    .blog-grid {
        padding: 0 20px;
    }
}