 /* News Grid */
/* .news-container {
    padding: 100px 0;
} */

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-item {
    position: relative;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.news-item:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px 0;
}

.news-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.news-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-excerpt {
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Loading Animation */
.loading {
    text-align: center;
    padding: 60px 0;
    display: none;
}

.loading.active {
    display: block;
}

.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Footer */
footer {
    background-color: #111;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #999;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #ccc;
    font-size: 15px;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    font-size: 18px;
    color: #999;
}

.social-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 48px;
    }
        
      .footer h6 {
        color: #43d0b2;
        margin-bottom: 2rem;
        font-size: 15px !important;
      }
    nav li {
        margin-left: 20px;
        font-size: 12px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}



/* Loader style */
#loading-indicator {
    display: none; /* hidden by default */
    text-align: center;
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #333; /* change if background is dark */
    background: #f9f9f9;
    border-radius: 6px;
    margin: 20px auto;
    width: fit-content;
}

/* Optional: animated spinner */
#loading-indicator::after {
    content: "";
    display: inline-block;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    border: 2px solid #999;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}




/* Single Post Styles - Park Pictures Style */
.single-post-container.park-style {
    background: #000;
    color: #fff;
}

/* Hero Section */
.post-hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.post-category {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    color: #4dabf7;
    margin-bottom: 15px;
}

.post-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.post-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #ccc;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    gap: 20px;
    font-size: 16px;
    color: #999;
}

/* Main Content */
.post-content {
    padding: 80px 10px;
}

/* .content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
} */

.post-article {
    font-size: 18px;
    line-height: 1.8;
}

.post-article p {
    margin-bottom: 25px;
}

.post-article h2 {
    font-size: 32px;
    margin: 50px 0 20px;
}

.post-article h3 {
    font-size: 26px;
    margin: 40px 0 15px;
}

/* Gallery */
.post-gallery {
    margin: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.gallery-caption {
    font-size: 14px;
    color: #999;
    margin-top: 10px;
    font-style: italic;
}

/* Credits */
.post-credits {
    margin: 60px 0;
    padding: 30px;
    background: #111;
    border-radius: 8px;
}

.credits-content {
    font-size: 16px;
    line-height: 1.6;
}

/* Tags */
.post-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.post-tags h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.post-tags a {
    color: #4dabf7;
    text-decoration: none;
}

.post-tags a:hover {
    text-decoration: underline;
}

/* Share Buttons */
.post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 40px 0;
}

.post-share h4 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    transition: background 0.3s;
}

.share-btn:hover {
    background: #4dabf7;
}

/* Author Bio */
.author-bio {
    display: flex;
    gap: 20px;
    margin: 60px 0;
    padding: 30px;
    background: #111;
    border-radius: 8px;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 60px 0;
    padding: 20px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.nav-previous, .nav-next {
    font-weight: 500;
}

.nav-previous a, .nav-next a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-previous a:hover, .nav-next a:hover {
    color: #4dabf7;
}

/* Related Posts */
.related-posts {
    margin: 60px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.related-item {
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.related-item:hover {
    transform: translateY(-5px);
}

.related-image {
    height: 217px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.related-date {
    font-size: 14px;
    color: #999;
}

/* Sidebar */
.post-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-widget {
    margin-bottom: 40px;
}

.sidebar-widget h3 {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #999;
}

.sidebar-widget p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.read-more {
    color: #4dabf7;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-posts a {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: #fff;
}

.recent-thumb {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-date {
    font-size: 12px;
    color: #999;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
}

.category-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #fff;
}

.category-list a:hover {
    color: #4dabf7;
}

.category-count {
    color: #999;
}

/* Comments */
.post-comments {
    margin: 60px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    } */
    
    .post-sidebar {
        position: static;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .post-title {
        font-size: 40px;
    }
    .row.justify-content-center.mt-5 {
    padding: 10px;
}
    .post-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .header .right-header {
    text-align: right;
    padding-top: 1rem;
    display: flex;
    justify-content: end;
   
}
.header .right-header h1.page-title {
    display: none !important;
}
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .post-hero {
        height: 60vh;
        min-height: 400px;
    }
}

.video-container-1,
.hero-image-1 {
    max-width: 800px;
}

a.excerpt-read-more {
    display: none;
}