/* Основные переменные */
:root {
    --dark-bg: #2c2416;
    --light-bg: #f5f3f0;
    --accent-gold: #d4a574;
    --text-light: #f5f3f0;
    --text-dark: #2c2416;
    --warm-shadow: rgba(212, 165, 116, 0.3);
    --soft-shadow: rgba(44, 36, 22, 0.1);
}

/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Общие классы */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.dark-section {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.light-section {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

/* Секция Hero */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background {
    background-image: url('assets/images/new_hero_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 60vh;
}

.hero-text {
    text-align: left;
}

.hero-portrait {
    display: flex;
    justify-content: center;
    align-items: center;
}

.portrait-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 35%; /* Смещаем фото ниже */
    border: 4px solid var(--accent-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.portrait-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.main-title {
    font-size: clamp(1.7rem, 4.5vw, 2.8rem);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.0;
    color: var(--accent-gold);
    font-style: normal;
}

.subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-style: normal;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-gold), #c49660);
    color: var(--text-dark);
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--warm-shadow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--warm-shadow);
    background: linear-gradient(135deg, #c49660, var(--accent-gold));
}

.telegram-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(13%) sepia(15%) saturate(1157%) hue-rotate(15deg) brightness(95%) contrast(91%);
}

/* Секция подхода */
.approach-section {
    padding: 100px 0;
}

.approach-content {
    display: block;
    max-width: 100%;
    text-align: center;
}

.main-quote {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 40px;
    font-style: italic;
}

.underlined {
    position: relative;
    text-decoration: none;
}

.underlined::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.help-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.support-text {
    font-style: italic;
    color: var(--accent-gold);
    font-weight: 500;
}

.approach-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Секция запросов */
.requests-section {
    padding: 100px 0;
    background-image: url('assets/images/Latter_day_Saint_psychologist_3_words_that_can_carry_you_through.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
}

.requests-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.requests-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.requests-title {
    color: var(--text-light);
    font-size: 3rem;
    margin-bottom: 60px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.requests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.request-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-gold);
}

.request-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.request-box span {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

/* Секция образования */
.education-section {
    padding: 100px 0;
}

.education-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.education-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.approaches h2,
.education h2 {
    color: var(--accent-gold);
    font-size: 3rem;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.approaches-list,
.education-list {
    list-style: none;
    padding: 0;
}

.approaches-list li,
.education-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.approaches-list .bullet,
.education-list .bullet {
    color: var(--accent-gold);
    font-size: 1.5rem;
    line-height: 1.4rem; /* Смещаем точки еще ниже */
    margin-right: 10px;
}

.approaches-list li div,
.education-list li div {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

.education-list strong {
    color: var(--accent-gold);
    font-weight: bold;
}

.education-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Секция сессий */
.sessions-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden; /* Прячем края размытого фона */
}

.sessions-section::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    background: linear-gradient(rgba(44, 36, 22, 0.85), rgba(44, 36, 22, 0.85)), url('assets/images/Faces.png') center/cover no-repeat;
    filter: blur(5px);
    z-index: 1;
}

.sessions-section .container {
    position: relative;
    z-index: 2;
}

.sessions-section h2 {
    text-align: center;
    margin-bottom: 60px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
}

.sessions-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.session-type {
    padding: 20px 40px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-gold);
    display: flex; /* Добавляем flex-контейнер */
    flex-direction: column; /* Вертикальное направление */
}

.session-type h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.session-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.price, .format, .duration {
    font-size: 1.3rem;
    font-weight: 500;
}

.price {
    color: var(--accent-gold);
}

.metro-info {
    font-size: 1rem;
    font-weight: 400;
    font-style: normal !important; /* Гарантированно убираем наклон */
    color: var(--text-light);
}

.friendly-approach {
    margin-top: 65px; /* Поднимаем на строку выше */
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.friendly-icon {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.session-description {
    list-style: none;
    font-size: 1rem;
}

.session-description li {
    padding: 8px 0;
    line-height: 1.4;
}

.session-description li::before {
    content: '✓';
    color: var(--accent-gold);
    margin-right: 10px;
    font-weight: bold;
}

.limitations {
    padding: 30px;
    border-radius: 10px;
}

.limitations h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.limitations-list {
    list-style: none;
    font-size: 1rem;
}

.limitations-list li {
    padding: 5px 0;
}

.limitations-list li::before {
    content: '⚠';
    color: var(--accent-gold);
    margin-right: 10px;
}

/* Секция развития */
.development-section {
    padding: 60px 0;
}

.development-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.development-text h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: var(--accent-gold);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    line-height: 1.1; /* Уменьшаем межстрочный интервал */
}

.development-list {
    list-style: none;
    padding: 0;
}

.development-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.development-list .bullet {
    color: var(--accent-gold);
    font-size: 1.5rem;
    line-height: 1.2rem; /* Точная подстройка */
    margin-right: 10px;
}

.development-list h4 {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.development-list p {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}



.development-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--soft-shadow);
}

/* Секция контактов */
.contact-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(rgba(44, 36, 22, 0.8), rgba(44, 36, 22, 0.8)), url('assets/images/new_hero_background.png');
    background-size: cover;
    background-position: center 70%; /* Сдвигаем фон в другую сторону */
}

.contact-section .container {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Центрируем контент, который теперь будет выше */
    padding-bottom: 60px; /* Добавим отступ для кнопки */
}

.contact-content {
    text-align: center;
    z-index: 2;
}

.contact-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.contact-info {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-style: italic;
    opacity: 0.9;
}

/* Информация футера в секции контактов */
.footer-info {
    width: 100%;
    padding: 25px 20px;
    background: rgba(44, 36, 22, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    color: var(--text-light);
}

.footer-info p {
    margin: 0 0 2px 0;
    font-size: 12px;
    opacity: 0.5;
    line-height: 1.3;
}

.footer-info .copyright {
    margin-top: 15px;
    font-size: 11px;
    opacity: 0.5;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-background {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
    }
    
    .requests-content,
    .education-content,
    .development-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .requests-title {
        font-size: 2.5rem;
        margin-bottom: 40px;
    }
    
    .approaches h2,
    .education h2,
    .sessions-section h2,
    .development-text h2,
    .contact-content h2 {
        font-size: 2.5rem;
    }
    
    .requests-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .request-box {
        padding: 25px 20px;
    }
    
    .request-box span {
        font-size: 1.1rem;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        order: 2;
    }
    
    .hero-portrait {
        order: 1;
    }
    
    .portrait-image {
        width: 250px;
        height: 250px;
    }
    
    .sessions-info {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .hero-content {
        padding: 30px;
    }
    
    .main-title {
        font-size: 1.7rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .approach-section,
    .requests-section,
    .education-section,
    .sessions-section,
    .development-section {
        padding: 60px 0;
    }
    
    .education-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach-image,
    .requests-image,
    .education-image,
    .development-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-background {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
        min-height: 100vh;
    }
    
    .requests-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .approaches h2,
    .education h2,
    .sessions-section h2,
    .development-text h2,
    .contact-content h2 {
        font-size: 2rem;
    }
    
    .requests-grid {
        gap: 15px;
    }
    
    .sessions-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .request-box {
        padding: 20px 15px;
    }
    
    .request-box span {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-content {
        padding: 25px;
    }
    
    .portrait-image {
        width: 200px;
        height: 200px;
    }
    
    .main-title {
        font-size: 1.4rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .main-quote {
        font-size: 1.3rem;
    }
    
    .cta-button {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .session-type {
        padding: 25px;
    }
    
    .development-item {
        padding: 15px;
    }
}


/* Стили для ссылки на канал */
.channel-link {
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.channel-link:hover {
    opacity: 0.8;
}


/* Стили для информации о метро */
.metro-info {
    color: white;
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.9;
}



