/* Основные переменные */
:root {
    /* Ретро-цветовая схема (раздельно-дополнительная) */
    --primary-color: #D2553F; /* Основной цвет - ретро-оранжевый */
    --primary-dark: #B83E2A; /* Темнее основного */
    --primary-light: #F07A64; /* Светлее основного */
    
    --secondary-color: #4098D7; /* Дополнительный цвет - голубой */
    --secondary-dark: #2B7CB8; /* Темнее дополнительного */
    --secondary-light: #67B1E6; /* Светлее дополнительного */
    
    --accent-color: #9B4DCA; /* Акцентный цвет - пурпурный */
    --accent-dark: #7A3AA7; /* Темнее акцентного */
    --accent-light: #B77DE2; /* Светлее акцентного */
    
    --neutral-dark: #333333; /* Темный нейтральный */
    --neutral-medium: #666666; /* Средний нейтральный */
    --neutral-light: #F8F9FA; /* Светлый нейтральный */
    
    /* Шрифты */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Merriweather', serif;
    
    /* Размеры и отступы */
    --container-width: 1200px;
    --section-spacing: 5rem;
    --card-spacing: 1.5rem;
    --border-radius: 8px;
    --button-radius: 4px;
    
    /* Эффекты */
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --card-hover-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition-speed: 0.3s;
}

/* Базовые стили */
body {
    font-family: var(--body-font);
    color: var(--neutral-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6, .title, .subtitle {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.2;
}

a {
    transition: color var(--transition-speed) ease;
}

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

p {
    margin-bottom: 1.2rem;
}

img {
    max-width: 100%;
    height: auto;
}

/* Кнопки */
.button {
    transition: all var(--transition-speed) ease;
    font-family: var(--heading-font);
    font-weight: 500;
    border-radius: var(--button-radius);
}

.button.is-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.button.is-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.button.is-light {
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
}

.button.is-light:hover {
    background-color: #eaecef;
}

/* Эффект при наведении на все кнопки */
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Навигация */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-item {
    font-family: var(--heading-font);
    font-weight: 500;
    transition: color var(--transition-speed) ease;
}

.navbar-item:hover {
    color: var(--primary-color);
}

/* Hero секция */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    filter: brightness(0.7); /* Затемнение для читаемости текста */
}

.hero-body {
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
}

.hero .title,
.hero .subtitle,
.hero p {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Анимация для элементов hero */
.animate-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-element.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Секции */
.section {
    padding: 5rem 1.5rem;
}

.section:nth-child(odd) {
    background-color: var(--neutral-light);
}

/* Карточки (общие стили) */
.card {
    transition: all var(--transition-speed) ease;
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-hover-shadow);
}

.card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .image-container img {
    transform: scale(1.05);
}

.card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

/* Сервисные карточки */
.service-card .title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Команда карточки */
.team-card .title {
    color: var(--secondary-color);
}

.team-card .subtitle {
    color: var(--neutral-medium);
    margin-bottom: 1rem;
}

/* Галерея карточки */
.gallery-card .title {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

/* Insight карточки */
.insight-card .title {
    color: var(--primary-color);
}

.insight-date {
    color: var(--neutral-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.insight-card .button {
    align-self: flex-start;
}

/* Карьера секция */
.careers-content h3, .careers-content h4 {
    color: var(--secondary-color);
}

.careers-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.job-card {
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-speed) ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-hover-shadow);
}

.career-image-card .image-container {
    height: 350px;
}

/* Контактная форма */
.contact-form-box {
    background: linear-gradient(135deg, #fff, #f5f5f5);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 2rem;
}

.contact-form-box .title {
    color: var(--secondary-color);
}

.contact-info-box {
    background-color: var(--secondary-color);
    color: #fff;
    border-radius: var(--border-radius);
    padding: 2rem;
}

.contact-info-box .title {
    color: #fff;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Ресурсы секция */
.recursos-box {
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 2rem;
}

.recursos-box .title {
    color: var(--accent-color);
}

.recursos-list li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.recursos-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recursos-list a {
    text-decoration: none;
    color: var(--neutral-dark);
    transition: color var(--transition-speed) ease;
}

.recursos-list a:hover {
    color: var(--primary-color);
}

.recursos-list h4 {
    transition: color var(--transition-speed) ease;
}

.recursos-list a:hover h4 {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background-color: var(--neutral-dark);
    color: #fff;
    padding: 4rem 1.5rem 2rem;
}

.footer .title {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed) ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed) ease;
    text-decoration: none;
    display: inline-block;
    margin-right: 1rem;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* Страница Success */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--neutral-light);
}

.success-content {
    max-width: 600px;
    padding: 2rem;
}

.success-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Страницы Privacy и Terms */
.privacy-page, .terms-page {
    padding-top: 100px;
}

.privacy-content, .terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

/* Медиа запросы */
@media screen and (max-width: 768px) {
    .hero .title {
        font-size: 2rem !important;
    }
    
    .hero .subtitle {
        font-size: 1.25rem !important;
    }
    
    .section {
        padding: 3rem 1rem;
    }
    
    .image-container {
        height: 200px;
    }
    
    .career-image-card .image-container {
        height: 250px;
    }
}

/* Анимация частиц */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation: float 8s infinite ease-in-out;
}

.particle:nth-child(2) {
    top: 60%;
    left: 20%;
    animation: float 9s infinite ease-in-out;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    top: 40%;
    left: 80%;
    animation: float 7s infinite ease-in-out;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 10%;
    left: 70%;
    animation: float 10s infinite ease-in-out;
    animation-delay: 3s;
}

.particle:nth-child(5) {
    top: 80%;
    left: 50%;
    animation: float 6s infinite ease-in-out;
    animation-delay: 4s;
}

/* Асимметричные блоки */
.asymmetric-section {
    position: relative;
    overflow: hidden;
}

.asymmetric-section::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -10%;
    width: 120%;
    height: 200px;
    background-color: var(--primary-light);
    opacity: 0.1;
    transform: rotate(-3deg);
    z-index: -1;
}

.asymmetric-section::after {
    content: '';
    position: absolute;
    bottom: -5%;
    right: -10%;
    width: 120%;
    height: 200px;
    background-color: var(--secondary-light);
    opacity: 0.1;
    transform: rotate(3deg);
    z-index: -1;
}

/* Дополнительные стили "Читать далее" */
.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-speed) ease;
    position: relative;
    padding-right: 20px;
}

.read-more::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: transform var(--transition-speed) ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover::after {
    transform: translateX(5px);
}

/* Для форм */
.input, .textarea, .select select {
    border-radius: var(--border-radius);
    border: 1px solid #ddd;
    transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.input:focus, .textarea:focus, .select select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(64, 152, 215, 0.2);
}

.label {
    color: var(--neutral-dark);
    font-weight: 600;
}