/* Navigation Styles */
.header-container {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-brand a {
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    color: #2C5F7C;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.nav-menu a:hover {
    background-color: #e9ecef;
    color: #2C5F7C;
}

/* Home Page Styles */
.home-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.welcome-section {
    margin-bottom: 3rem;
}

.recent-articles {
    margin-bottom: 3rem;
}

.article-preview {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-preview h3 {
    margin-bottom: 0.5rem;
}

.article-preview h3 a {
    color: #2C5F7C;
    text-decoration: none;
}

.article-preview h3 a:hover {
    text-decoration: underline;
}

.article-summary {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.article-meta {
    font-size: 0.9rem;
    color: #888;
}

.article-meta .date {
    margin-right: 1rem;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #2C5F7C;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.button:hover {
    background-color: #234d61;
}

.language-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.language-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
}

.language-section h3 {
    color: #2C5F7C;
    margin-bottom: 1rem;
}

.article-link {
    margin-bottom: 0.5rem;
}

.article-link a {
    color: #495057;
    text-decoration: none;
    padding: 0.25rem 0;
    display: inline-block;
}

.article-link a:hover {
    color: #2C5F7C;
    text-decoration: underline;
}

/* Footer Styles */
.footer-container {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-container .wayist-network {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-container .network-links {
    margin: 1rem 0;
    line-height: 1.8;
}

.footer-container .network-links a {
    color: #2C5F7C;
    text-decoration: none;
}

.footer-container .network-links a:hover {
    text-decoration: underline;
}

.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    text-align: center;
    border-top: 1px solid #dee2e6;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .language-sections {
        grid-template-columns: 1fr;
    }
}
