/* Blog Styles */

/* Blog Hero */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #62263a, #a02e59);
    text-align: center;
}

.blog-hero__title {
    font-size: 3rem;
    color: #f3f3f3;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.blog-hero__description {
    font-size: 1.2rem;
    color: #f3f3f3;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: 'Poppins', sans-serif;
}

/* Blog Posts */
.blog-posts {
    padding: 6rem 0;
    background: #242222;
}

.blog-posts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.blog-post {
    background: #2f2d2d;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #444;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.blog-post__image {
    height: 250px;
    overflow: hidden;
}

.blog-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-post__content {
    padding: 2rem;
}

.blog-post__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-post__date {
    color: #cccccc;
    font-family: 'Poppins', sans-serif;
}

.blog-post__category {
    background: #f0be42;
    color: #242222;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.blog-post__title {
    margin-bottom: 1rem;
}

.blog-post__title a {
    color: #f0be42;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.blog-post__title a:hover {
    color: #d4a536;
}

.blog-post__excerpt {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.blog-post__read-more {
    color: #f0be42;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.blog-post__read-more:hover {
    color: #d4a536;
}

.blog-post__read-more i {
    transition: transform 0.3s ease;
}

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

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.pagination__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #2f2d2d;
    color: #cccccc;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid #444;
    font-family: 'Poppins', sans-serif;
}

.pagination__btn:hover,
.pagination__btn--active {
    background: #f0be42;
    color: #242222;
    border-color: #f0be42;
}

/* Newsletter */
.newsletter {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e1e1e, #2f2d2d);
    text-align: center;
}

.newsletter__title {
    font-size: 2.5rem;
    color: #f0be42;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.newsletter__description {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

.newsletter__form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter__input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #444;
    border-radius: 50px;
    background: #2f2d2d;
    color: #f3f3f3;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.newsletter__input:focus {
    border-color: #f0be42;
}

.newsletter__input::placeholder {
    color: #999;
}

.btn--newsletter {
    background: linear-gradient(135deg, #f0be42, #d4a536);
    color: #242222;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    white-space: nowrap;
}

.btn--newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 190, 66, 0.3);
}

/* Active Navigation Link */
.nav__link--active {
    color: #f0be42 !important;
    position: relative;
}

.nav__link--active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #f0be42;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero__title {
        font-size: 2.5rem;
    }
    
    .blog-hero__description {
        font-size: 1.1rem;
    }
    
    .blog-posts__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter__form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter__title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero__title {
        font-size: 2rem;
    }
    
    .blog-posts {
        padding: 4rem 0;
    }
    
    .blog-post__content {
        padding: 1.5rem;
    }
    
    .newsletter {
        padding: 4rem 0;
    }
}


/* Blog Post Content Styles */
.blog-post-content {
    padding: 120px 0 80px;
    background: #242222;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #f0be42;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #d4a536;
}

.breadcrumb i {
    color: #666;
    font-size: 0.8rem;
}

.breadcrumb span {
    color: #cccccc;
}

.post-header {
    margin-bottom: 3rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.post-date,
.post-author {
    color: #cccccc;
    font-family: 'Poppins', sans-serif;
}

.post-category {
    background: #f0be42;
    color: #242222;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.post-title {
    font-size: 2.5rem;
    color: #f0be42;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.post-featured-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.post-intro {
    font-size: 1.2rem;
    color: #f0be42;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(240, 190, 66, 0.1);
    border-left: 4px solid #f0be42;
    border-radius: 0 10px 10px 0;
    font-family: 'Poppins', sans-serif;
}

.post-content h2 {
    font-size: 1.8rem;
    color: #f0be42;
    margin: 2.5rem 0 1rem;
    font-family: 'Poppins', sans-serif;
}

.post-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.post-content ul,
.post-content ol {
    color: #cccccc;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.post-content li strong {
    color: #f0be42;
}

.post-content blockquote {
    background: #2f2d2d;
    border-left: 4px solid #f0be42;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #f3f3f3;
    font-family: 'Poppins', sans-serif;
}

.post-cta {
    background: linear-gradient(135deg, #2f2d2d, #1e1e1e);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid #444;
}

.post-cta h3 {
    color: #f0be42;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
}

.post-cta p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.btn--secondary {
    background: transparent;
    border: 2px solid #f0be42;
    color: #f0be42;
    padding: 0.8rem 1.5rem;
}

.btn--secondary:hover {
    background: #f0be42;
    color: #242222;
}

/* Responsive Design for Blog Posts */
@media (max-width: 768px) {
    .post-title {
        font-size: 2rem;
    }
    
    .post-featured-image img {
        height: 250px;
    }
    
    .post-content {
        padding: 0 1rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .blog-post-content {
        padding: 100px 0 60px;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .post-intro {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .post-cta {
        padding: 2rem 1.5rem;
    }
}

