/*
Theme Name: Minimal Psy
Theme URI: 
Author: Antigravity
Description: Ultra minimalist theme for Psychologist and Speech Therapist.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    color: #111;
    overflow-x: hidden;
}

/* Навигация (Гамбургер) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    display: flex;
    justify-content: flex-end;
    z-index: 10;
}

.hamburger {
    width: 24px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    z-index: 11;
}

.hamburger span {
    display: block;
    height: 1.5px;
    width: 100%;
    background-color: #111;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(5.25px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-5.25px) rotate(-45deg); }

/* Меню оверлей */
.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: #FFFFFF; z-index: 9;
    display: flex; justify-content: center; align-items: center;
    opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}

.menu-overlay.active { opacity: 1; pointer-events: all; }
.menu-overlay nav { display: flex; flex-direction: column; text-align: center; gap: 40px; }
.menu-overlay nav a {
    text-decoration: none; color: #111; font-size: 24px;
    text-transform: uppercase; letter-spacing: 0.1em; transition: color 0.3s ease;
}
.menu-overlay nav a:hover { color: #999; }

/* Главная страница (Сплит) */
.home-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.half-left {
    flex: 1; background-color: #FFFFFF;
    display: flex; justify-content: center; align-items: center;
    border-right: 1px solid #EBEBEB; transition: background-color 0.4s ease;
}

.half-right {
    flex: 1; background-color: #F8F8F8;
    display: flex; justify-content: center; align-items: center;
    transition: background-color 0.4s ease;
}

.half-left:hover { background-color: #FAFAFA; }
.half-right:hover { background-color: #F0F0F0; }

a.main-link {
    text-decoration: none; color: #111; font-size: 20px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 18px 48px; border: 3px solid transparent; transition: all 0.4s ease;
}

.half-left a.main-link { border-color: #E7E7E7; }
.half-right a.main-link { border-color: #FFFFFF; }

/* Внутренние страницы */
.page-container {
    max-width: 1200px; margin: 0 auto; padding: 120px 40px 80px 40px;
    min-height: 100vh; display: flex; flex-direction: column;
}

h1.page-title {
    text-align: center; font-size: 32px; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 80px;
}

.content-split {
    display: flex; flex: 1; align-items: center; justify-content: space-between; gap: 80px;
}

.text-section { flex: 1; }

/* Стилизация контента из редактора WordPress */
.text-section ul { list-style: none; padding-left: 0; }
.text-section ul li {
    font-size: 18px; font-weight: 300; line-height: 1.6; margin-bottom: 24px;
    position: relative; padding-left: 24px;
}
.text-section ul li::before {
    content: "—"; position: absolute; left: 0; color: #999;
}
.text-section p {
    font-size: 18px; font-weight: 300; line-height: 1.6; margin-bottom: 24px;
}

.image-section { flex: 1; display: flex; justify-content: flex-end; }

.abstract-image {
    width: 350px; height: 480px; border-radius: 2px;
}
.abstract-image.psy { background: linear-gradient(135deg, #F8F8F8 0%, #E7E7E7 100%); }
.abstract-image.therapist { background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%); box-shadow: 0 10px 30px rgba(0,0,0,0.02); }

footer {
    margin-top: 80px; padding-top: 40px; display: flex; justify-content: space-between;
    font-size: 14px; color: #666; letter-spacing: 0.05em; border-top: 1px solid #EBEBEB;
}

a.back-link { color: #666; text-decoration: none; transition: color 0.3s ease; }
a.back-link:hover { color: #111; }
