/* =========== Переменные темы =========== */
:root {
  /* Основная цветовая схема (аналоговая) */
  --primary-color: #4a6fa5; /* Основной синий */
  --primary-hover: #385685; /* Темный синий для наведения */
  --secondary-color: #6a8ec5; /* Светлый синий */
  --accent-color: #3d8a9f; /* Бирюзовый акцент */
  --accent-hover: #2c6b7d; /* Темный бирюзовый для наведения */
  --success-color: #48c774; /* Зеленый для успешных действий */

  /* Нейтральные цвета */
  --background-light: #f5f7fa; /* Светлый фон */
  --background-dark: #2c3e50; /* Темный фон */
  --text-dark: #2c3e50; /* Основной текст */
  --text-muted: #7a8c9e; /* Приглушенный текст */
  --text-light: #ffffff; /* Светлый текст */
  --border-color: #e1e8f0; /* Цвет границ */

  /* Тени и градиенты */
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  --button-shadow: 0 4px 6px rgba(74, 111, 165, 0.25);
  --hover-shadow: 0 10px 30px rgba(74, 111, 165, 0.3);
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  --gradient-overlay: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));

  /* Типографика */
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Work Sans', sans-serif;

  /* Радиусы скругления */
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 12px;

  /* Анимация */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* =========== Базовые стили =========== */
html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6, .title, .subtitle {
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--text-dark);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  transition: color var(--transition-fast);
}

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

.container {
  max-width: 1200px;
  padding: 0 1.5rem;
  margin: 0 auto;
}

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

/* =========== Элементы UI с объемным эффектом =========== */
.button-3d {
  transform: translateY(0);
  box-shadow: var(--button-shadow);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

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

.button-3d:active {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(74, 111, 165, 0.2);
}

/* Карточки с объемным эффектом */
.card, .metodologia-box, .resource-card, .testimonial-card, .webinar-card, .career-box {
  border-radius: var(--radius-medium);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--transition-medium), box-shadow var(--transition-medium);
  margin-bottom: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover, .metodologia-box:hover, .resource-card:hover, .testimonial-card:hover, .webinar-card:hover, .career-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--hover-shadow);
}

/* =========== Навигация =========== */
.navbar {
  background-color: var(--text-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-item {
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.navbar-item:hover, .navbar-item:focus {
  color: var(--primary-color) !important;
  background-color: transparent !important;
}

.navbar-burger {
  color: var(--text-dark);
}

/* =========== 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-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 6rem 1.5rem;
}

.hero-body .title,
.hero-body .subtitle,
.hero-body p {
  color: var(--text-light);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('image/wave.svg') repeat-x;
  background-size: 100% 100%;
}

/* =========== Секция Intro =========== */
#intro {
  padding: 5rem 0;
  background-color: var(--text-light);
}

/* =========== Секция Курсы с таймлайном =========== */
.timeline {
  position: relative;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50px;
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  padding-left: 100px;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 38px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--primary-color);
  border: 4px solid var(--text-light);
  box-shadow: 0 0 0 4px var(--secondary-color);
}

.timeline-content {
  position: relative;
}

.image-container {
  overflow: hidden;
  border-radius: var(--radius-medium) var(--radius-medium) 0 0;
  height: 250px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-medium);
}

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

/* =========== Секция Методология =========== */
.metodologia-box {
  padding: 2rem;
  background-color: var(--text-light);
  border-left: 4px solid var(--primary-color);
}

/* =========== Секция Ресурсы =========== */
.resource-card {
  padding: 1.5rem;
  text-align: center;
}

.resource-card .button {
  margin-top: 1rem;
}

/* =========== Секция Инструкторы =========== */
.instructor-card {
  text-align: center;
}

.instructor-card .image-container {
  height: 300px;
}

.instructor-card .title {
  margin-top: 1rem;
}

.instructor-card .subtitle {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* =========== Секция Истории успеха =========== */
.testimonial-card {
  padding: 1.5rem;
}

.testimonial-card .media-left .image {
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-card .title {
  margin-bottom: 0.25rem;
}

.testimonial-card .subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonial-card .content {
  margin-top: 1rem;
  font-style: italic;
}

/* =========== Секция Вебинары =========== */
.webinar-card .card-image {
  border-bottom: 3px solid var(--primary-color);
}

.webinar-card .subtitle {
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* =========== Секция Карьера =========== */
.career-box {
  padding: 2rem;
  background: var(--text-light);
}

.career-box .title {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* =========== Секция Контакты =========== */
.contact-form-box {
  padding: 2rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--card-shadow);
  background-color: var(--text-light);
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item p {
  margin-bottom: 0.25rem;
}

/* =========== Footer =========== */
.footer {
  background-color: var(--background-dark);
  color: var(--text-light);
  padding: 4rem 1.5rem 2rem;
}

.footer .title, .footer h3 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.footer p, .footer li {
  color: rgba(255, 255, 255, 0.8);
}

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

.footer ul li {
  margin-bottom: 0.75rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer a:hover {
  color: var(--text-light);
  text-decoration: underline;
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.social-links a:hover {
  color: var(--text-light);
}

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

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

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

.button.is-outlined.is-light {
  border-color: var(--text-light);
  color: var(--text-light);
}

.button.is-outlined.is-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* =========== Формы =========== */
.input, .textarea, .select select {
  border-radius: var(--radius-medium);
  border: 1px solid var(--border-color);
  box-shadow: none;
  transition: border-color var(--transition-fast);
}

.input:focus, .textarea:focus, .select select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px var(--primary-color);
}

/* =========== Успешная страница =========== */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

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

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

/* =========== Privacy & Terms Pages =========== */
.policy-page {
  padding-top: 100px;
  padding-bottom: 4rem;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background-color: var(--text-light);
  border-radius: var(--radius-medium);
  box-shadow: var(--card-shadow);
}

/* =========== Медиа запросы =========== */
@media screen and (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    padding-left: 70px;
  }
  
  .timeline-marker {
    left: 18px;
  }
  
  .hero-body {
    padding: 4rem 1rem;
  }
  
  .card, .box {
    margin-bottom: 1.5rem;
  }
  
  .image-container {
    height: 200px;
  }
  
  .instructor-card .image-container {
    height: 250px;
  }
}

/* =========== Анимации =========== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.animate-fadeIn {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-scaleIn {
  animation: scaleIn 0.6s ease-out forwards;
}

.animate-slideInLeft {
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slideInRight {
  animation: slideInRight 0.8s ease-out forwards;
}

/* Задержки анимации */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}