/* ЕвроТранс Экспресс - Стабилизированный минималистичный дизайн */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --bg: #FAF9F6;
    --text: #121212;
    --text-muted: #666666;
    --accent: #A69F92;
    --border: #E5E2DD;
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --container: 1400px;
    --gap: 2rem;
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; letter-spacing: -0.01em; }
a { text-decoration: none; color: inherit; transition: var(--transition); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 4rem; }
.section { padding: 6rem 0; }
.line { width: 100%; height: 1px; background-color: var(--border); margin: 3rem 0; }

/* Header */
header { height: 100px; display: flex; align-items: center; border-bottom: 1px solid var(--border); background: var(--bg); position: sticky; top: 0; z-index: 100; }
nav { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; }
.nav-links { display: flex; gap: 3rem; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--text); }

/* Hero Section */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; align-items: center; gap: 4rem; }
.hero-text h1 { font-size: clamp(3rem, 7vw, 5.5rem); line-height: 1.1; margin-bottom: 2rem; }
.hero-text p { font-size: 1.1rem; max-width: 450px; color: var(--text-muted); margin-bottom: 2.5rem; }
.hero-image { height: 600px; overflow: hidden; background-color: var(--border); position: relative; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Categories List */
.cat-list { display: flex; justify-content: space-between; padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cat-item { font-family: var(--font-heading); font-size: 2rem; color: var(--border); transition: var(--transition); }
.cat-item:hover { color: var(--text); }

/* Blog Feed */
.blog-feed { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4rem; }
.post-card.large { grid-column: span 2; display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.post-img { aspect-ratio: 4/3; overflow: hidden; background-color: var(--border); margin-bottom: 1.5rem; border-radius: 4px; }
.post-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.post-card:hover .post-img img { transform: scale(1.03); }
.post-meta { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 0.5rem; display: block; }
.post-title { font-size: 1.8rem; margin-bottom: 1rem; }
.post-excerpt { color: var(--text-muted); font-size: 1rem; margin-bottom: 1.5rem; }

.btn-minimal { display: inline-block; padding: 0.5rem 0; border-bottom: 1px solid var(--text); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-minimal:hover { color: var(--accent); border-color: var(--accent); }

/* Newsletter */
.newsletter-minimal { background-color: #F1F0EC; padding: 5rem 2rem; text-align: center; border-radius: 4px; }
.newsletter-minimal h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.newsletter-minimal p { margin-bottom: 2.5rem; color: var(--text-muted); }
.newsletter-minimal form { display: flex; max-width: 500px; margin: 0 auto; border-bottom: 1px solid var(--text); }
.newsletter-minimal input { flex: 1; background: transparent; border: none; padding: 1rem 0; font-size: 1.1rem; outline: none; }
.newsletter-minimal button { background: transparent; border: none; padding: 0 1rem; font-weight: 700; cursor: pointer; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }

/* Footer */
footer { padding: 3rem 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: var(--text-muted); }

/* Post Page Specific */
.post-header-simple { padding: 4rem 0; text-align: center; max-width: 900px; margin: 0 auto; }
.post-header-simple h1 { font-size: 3.5rem; margin-top: 1rem; line-height: 1.2; }
.post-hero-img { height: 500px; width: 100%; object-fit: cover; margin-bottom: 4rem; border-radius: 4px; }
.post-body { max-width: 700px; margin: 0 auto; padding-bottom: 8rem; }
.post-body p { margin-bottom: 2rem; font-size: 1.15rem; color: var(--text-muted); line-height: 1.8; }
.post-body h2 { font-size: 2rem; margin: 3rem 0 1.5rem; }

/* Mobile */
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    header { height: 80px; }
    .nav-links { display: none; } 
    .hero-split { grid-template-columns: 1fr; gap: 2rem; }
    .hero-image { height: 350px; order: -1; }
    .cat-list { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 0; }
    .cat-item { font-size: 2.5rem; }
    .blog-feed, .post-card.large { grid-template-columns: 1fr; gap: 3rem; }
    .post-card.large .post-img { aspect-ratio: 16/9; }
    .post-header-simple h1 { font-size: 2.5rem; }
    .post-hero-img { height: 300px; }
    .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
}
