/* Article Pages Styling */
:root {
    --bg-color: #fdfbf7;
    --text-primary: #1a1a1a;
    --text-secondary: #5a5a5a;
    --accent: #8c7851;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}

/* Header */
.article-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    color: var(--text-primary);
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.back-link {
    text-decoration: none;
    color: inherit;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-weight: 600;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.lang-switcher {
    display: flex;
    gap: 1.5rem;
}

.lang-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 0.75rem;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.lang-btn.active {
    opacity: 1;
}

.lang-btn:hover {
    opacity: 1;
}

/* Hero */
.article-hero {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, var(--bg-color), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 5vw;
}

.article-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: block;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 10vw, 5rem);
    line-height: 1.1;
    color: var(--text-primary);
    text-shadow: 0 0 30px rgba(253, 251, 247, 0.8);
}

.article-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-primary);
    margin-top: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.15rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 0 20px rgba(253, 251, 247, 0.6);
}

/* Content */
.article-container {
    max-width: 800px;
    margin: 5vh auto 15vh;
    padding: 0 8vw;
}

.article-body p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: justify;
}

.article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 4rem 0 1.5rem;
    color: var(--text-primary);
}

.article-body .highlight {
    font-size: 1.4rem;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    margin: 3rem 0;
    padding-left: 2rem;
    border-left: 2px solid var(--accent);
}

/* Footer */
footer {
    padding: 8vh 5vw;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-logo {
    font-size: 0.9rem;
    letter-spacing: 0.3rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 3rem;
    }
    .article-body p {
        font-size: 1.05rem;
        text-align: left;
    }
    .header-right {
        gap: 1.5rem;
    }
    .lang-switcher {
        gap: 0.8rem;
    }
}
