/* Blog styles */
.blog-header {
    background-color: var(--background-color);
    border-bottom: 1px solid rgba(0, 255, 102, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
}

.blog-nav {
    height: 100%;
}

.blog-nav .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.back-home {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: var(--primary-color);
}

.back-home .logo-image {
    border-radius: 50%;
}

.language-switch a {
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.language-switch a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Blog content styles */
.blog-content {
    max-width: 800px;
    margin: 80px auto 2rem;
    padding: 0 1rem;
}

.blog-post {
    background-color: var(--card-background);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.post-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.post-content {
    line-height: 1.8;
}

.post-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.blog-footer {
    background-color: var(--card-background);
    padding: 2rem 0;
    margin-top: 4rem;
    text-align: center;
}

/* Blog card styles (for the main page) */
.blog-section {
    padding: 4rem 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background-color: var(--card-background);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 255, 102, 0.1);
}

.blog-link {
    text-decoration: none;
    color: var(--text-color);
    display: block;
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(0, 255, 102, 0.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.blog-meta {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1rem;
    display: inline-block;
}

/* Responsive styles */
@media (max-width: 768px) {
    .blog-nav .nav-container {
        padding: 0 1rem;
    }

    .back-home span {
        display: none;
    }

    .blog-content {
        margin-top: 70px;
        padding: 0 0.5rem;
    }

    .blog-post {
        padding: 1rem;
    }

    .post-header h1 {
        font-size: 2rem;
    }
} 