/* ===== VARIABLES ===== */
:root {
    --color-bg: #f1ebe3;
    --color-primary: #ff914d;
    --color-yellow: #ffde59;
    --color-green: #007640;
    --color-dark: #4d372b;
    --color-text: #000000;
    --color-text-light: #545454;
    --color-text-lighter: #737373;
    --color-white: #ffffff;
    --font-main: 'JetBrains Mono', monospace;
    --font-logo: 'Symphony', 'Times New Roman', serif;
}

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

body {
    font-family: var(--font-main);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* ===== NAVIGATION ===== */
nav {
    background: var(--color-bg);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(77, 55, 43, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo a {
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-logo);
    color: var(--color-primary);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-primary);
}

/* ===== CONTAINERS ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ===== HERO ===== */
.hero {
    padding: 80px 0 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.highlight {
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 40px;
    text-align: center;
}

/* ===== FEATURED ARTICLE ===== */
.featured-section {
    padding: 60px 0;
    background: var(--color-white);
}

.featured-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--color-bg);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.featured-image {
    background: linear-gradient(135deg, var(--color-primary), #ffa366);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 300px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.featured-icon {
    font-size: 8rem;
    opacity: 0.9;
}

.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.article-category {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    color: var(--color-text-lighter);
    font-size: 0.85rem;
}

.featured-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-content p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.read-more {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1rem;
}

/* ===== ARTICLES GRID ===== */
.articles-section {
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    background: var(--color-white);
    padding: 32px 28px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.article-card.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.article-card.coming-soon:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.article-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.article-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more-small {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.coming-soon-text {
    color: var(--color-text-lighter);
    font-style: italic;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 80px 0;
    background: var(--color-dark);
    text-align: center;
    color: var(--color-white);
}

.newsletter-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #e67a38;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 145, 77, 0.3);
}

/* ===== FOOTER ===== */
footer {
    padding: 40px 5%;
    background: var(--color-bg);
    text-align: center;
    border-top: 1px solid rgba(77, 55, 43, 0.1);
}

footer p {
    color: var(--color-text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

footer a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.social-links a {
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 200px;
    }
    
    .featured-content {
        padding: 30px 24px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
}
