/* Blog Specific Styles */

/* Blog Hero Section */
.blog-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../hero_background.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: -1;
}

.blog-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FFFFFF 0%, #c7f022 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Posts Section */
.blog-posts {
    padding: 80px 0;
    background: #1a1a1a;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-card {
    background: #545454;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    border-color: #c7f022;
    box-shadow: 0 20px 40px rgba(199, 240, 34, 0.1);
}

.blog-post-card.featured {
    grid-template-columns: 1fr;
    text-align: center;
}

.blog-post-card.featured .blog-post-image {
    height: 150px;
}

.blog-post-image {
    background: linear-gradient(135deg, #c7f022, #a8d01e);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #1a1a1a;
    min-height: 200px;
}

.blog-post-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-post-date {
    color: #cccccc;
}

.blog-post-category {
    color: #c7f022;
    font-weight: 600;
}

.blog-post-title {
    margin-bottom: 15px;
}

.blog-post-title a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: #c7f022;
}

.blog-post-card.featured .blog-post-title a {
    font-size: 1.8rem;
}

.blog-post-excerpt {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(199, 240, 34, 0.1);
    color: #c7f022;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(199, 240, 34, 0.3);
}

.blog-post-link {
    color: #c7f022;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-post-link:hover {
    color: #a8d01e;
    transform: translateX(5px);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: #545454;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.newsletter-text p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1.1rem;
}

.newsletter-form-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.newsletter-form-container input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid #1a1a1a;
    border-radius: 10px;
    background: #1a1a1a;
    color: #FFFFFF;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form-container input:focus {
    outline: none;
    border-color: #c7f022;
}

.newsletter-form-container input::placeholder {
    color: #999999;
}

.newsletter-form-container .btn-primary {
    white-space: nowrap;
}

/* Active Navigation Link */
.nav-link.active {
    color: #c7f022;
}

.nav-link.active::after {
    width: 100%;
}

/* Article Page Styles */
.article-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #cccccc;
}

.article-category {
    color: #c7f022;
    font-weight: 600;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFFFFF 0%, #c7f022 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-excerpt {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.article-content {
    padding: 60px 0;
    background: #1a1a1a;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
    color: #FFFFFF;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #c7f022;
}

.article-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #FFFFFF;
}

.article-body p {
    margin-bottom: 20px;
    color: #cccccc;
}

.article-body ul, .article-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.article-body li {
    margin-bottom: 10px;
    color: #cccccc;
}

.article-body strong {
    color: #c7f022;
    font-weight: 600;
}

.article-body blockquote {
    background: #545454;
    border-left: 4px solid #c7f022;
    padding: 20px 30px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    color: #FFFFFF;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #c7f022;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #a8d01e;
    transform: translateX(-5px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2.2rem;
    }
    
    .blog-post-card {
        grid-template-columns: 1fr;
    }
    
    .blog-post-image {
        height: 150px;
        min-height: 150px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .newsletter-text h2 {
        font-size: 2rem;
    }
    
    .newsletter-form-container {
        justify-content: center;
    }
    
    .newsletter-form-container input {
        min-width: 200px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .blog-hero-title {
        font-size: 1.8rem;
    }
    
    .blog-post-content {
        padding: 20px;
    }
    
    .newsletter-form-container {
        flex-direction: column;
    }
    
    .newsletter-form-container input,
    .newsletter-form-container .btn-primary {
        width: 100%;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
    
    .article-body {
        font-size: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.6rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
}

