/*
Theme Name: vigo.by
Description: Актуальные новости и аналитические материалы о различных сферах жизни.
Author: AI Agent
Version: 1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
    --primary: #166534; /* Forest Green */
    --accent: #1a1a1a; /* Dark */
    --bg-main: #f5f0e8; /* Sand */
    --white: #ffffff;
    --text-main: #1a1a1a;
    --text-muted: #4b5563;
    --border: #166534;
    
    --container-width: 1200px;
    --content-width: 900px;
    --transition: all 0.5s ease;
    --radius: 0px;

    --section-pad: clamp(5rem, 15vw, 12rem);
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    background: var(--bg-main);
    color: var(--text-main);
    font-family: 'Source Sans 3', sans-serif;
    line-height: 1.8;
}

h1, h2, h3, .logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 10vw, 5.5rem); margin-bottom: 2.5rem; }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 3rem; }

.container { max-width: var(--container-width); margin: 0 auto; padding: 0 2rem; }

/* Axis N-E: Minimal Top-bar */
.site-header {
    height: 50px;
    background: var(--accent);
    color: var(--white);
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
}

.header-inner { display: flex; justify-content: space-between; align-items: center; height: 100%; }

.logo { font-size: 1.4rem; text-decoration: none; color: var(--white); text-transform: italic; }
.logo span { color: #86efac; }

.main-nav ul { display: flex; list-style: none; gap: 2.5rem; }
.main-nav a { text-decoration: none; color: var(--white); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* Axis H-D: Breakout Asymmetric */
.hero-vigo { padding: 12rem 0 8rem; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.hero-image-wrap { position: relative; }
.hero-image-wrap img { width: 120%; margin-left: -10%; height: 600px; object-fit: cover; } /* Breakout effect */

/* Axis F-A: Horizontal Strips */
.features-section { padding: 0; }
.feature-strip { padding: 8rem 0; border-bottom: 1px solid rgba(22, 101, 52, 0.2); }
.feature-strip:nth-child(even) { background: var(--white); }
.feature-strip .container { display: flex; align-items: center; gap: 6rem; }

/* Axis C-B: Horizontal Cards */
.posts-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
.post-card { display: grid; grid-template-columns: 400px 1fr; gap: 4rem; align-items: center; background: var(--white); padding: 3rem; }
@media (max-width: 1024px) { .post-card { grid-template-columns: 1fr; } }
.post-card .thumb { height: 300px; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Axis U-F: Manifesto Section */
.manifesto-section { padding: var(--section-pad) 0; background: var(--primary); color: var(--white); text-align: center; }
.manifesto-text { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 4vw, 3rem); line-height: 1.4; max-width: 900px; margin: 0 auto; font-style: italic; }

/* Pagination Gold Standard */
.pagination { display: flex; justify-content: center; align-items: center; gap: 1.5rem; margin: 6rem 0; }
.pagination .page-numbers { 
    font-family: 'Playfair Display', serif; font-size: 1.5rem;
    text-decoration: none; color: var(--accent); padding-bottom: 5px; border-bottom: 2px solid transparent;
}
.pagination .page-numbers.current { border-bottom-color: var(--primary); color: var(--primary); }

/* Axis FT-D: CTA Footer */
.site-footer { padding: 8rem 0 4rem; background: var(--white); border-top: 1px solid var(--primary); }
.footer-cta { text-align: center; margin-bottom: 6rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 4rem; padding-top: 4rem; border-top: 1px solid rgba(22, 101, 52, 0.1); }

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-toggle { display: block; color: var(--white); font-size: 1.5rem; background: none; border: none; cursor: pointer; }
    .main-nav { position: fixed; top: 50px; left: 0; width: 100%; height: calc(100vh - 50px); background: var(--accent); transform: translateX(100%); transition: 0.4s; visibility: hidden; }
    body.menu-open .main-nav { transform: translateX(0); visibility: visible; }
    .main-nav ul { flex-direction: column; padding: 4rem; gap: 2rem; }
}

/* Axis D-B: Horizontal Lines */
hr { border: 0; height: 1px; background: var(--primary); margin: 4rem 0; opacity: 0.3; }

/* Content Rule 23 */
.post-content h2, .post-content h3 { margin-top: 5rem; border-left: 5px solid var(--primary); padding-left: 2rem; }
.post-content blockquote { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.5rem; padding: 3rem; background: var(--white); border-left: 10px solid var(--primary); margin: 4rem 0; }
