@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* 
 * Параметры из Tailwind CSS конфигурации (ekol-web-example/index.html)
 * fontFamily: ['Montserrat', 'sans-serif']
 * colors: ekol-blue, ekol-red, ekol-green, ekol-dark-green, ekol-black, ekol-white
 */
:root {
  --ekol-blue: #00b5e2;
  --ekol-red: #ef3340;
  --ekol-green: #509e2f;
  --ekol-dark-green: #294f00;
  --ekol-black: #000000;
  --ekol-white: #ffffff;
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-600: #4b5563;
  --neutral-500: #6b7280;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 20px 45px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--ekol-white);
  color: var(--neutral-800);
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.layout-container {
  width: min(80rem, 100%);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 40rem) {
  .layout-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 64rem) {
  .layout-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.section {
  padding: 4rem 0;
}

@media (min-width: 48rem) {
  .section {
    padding: 6rem 0;
  }
}

.section--contrast {
  background-color: var(--neutral-50);
}

.text-center {
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ekol-dark-green);
  margin: 0;
}

.section-subtitle {
  max-width: 40rem;
  margin: 1.25rem auto 0;
  color: black;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease, color 200ms ease;
}

.btn:focus-visible {
  outline: 3px solid rgba(0, 181, 226, 0.4);
  outline-offset: 3px;
}

.btn--primary {
  background-color: var(--ekol-green);
  color: var(--ekol-white);
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  background-color: var(--ekol-dark-green);
}

.btn--ghost {
  background-color: transparent;
  color: white;
}

.btn--ghost:hover {
  color: var(--ekol-green);
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
}

.badge--blue {
  background-color: rgba(0, 181, 226, 0.12);
  color: var(--ekol-blue);
}

.card-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 48rem) {
  .card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  background-color: var(--ekol-white);
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.card__body {
  padding: 1.5rem;
}

.news-card__media {
  width: 100%;
  height: 14rem;
  object-fit: cover;
}

.news-card {
  transform: translateY(0);
  transition: transform 300ms ease;
}

.news-card:hover {
  transform: translateY(-0.25rem);
}

.news-card__meta {
  font-size: 0.85rem;
  color: var(--neutral-500);
}

.news-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0.5rem 0 0.25rem;
  color: var(--ekol-dark-green);
}

.news-card__title a {
  color: inherit;
}

.news-card__title a:hover {
  color: var(--ekol-green);
}

.news-card__excerpt {
  color: var(--neutral-600);
  margin-bottom: 1rem;
}

.news-card__link {
  font-weight: 600;
  color: var(--ekol-green);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.news-card__link:hover {
  color: var(--ekol-dark-green);
}

.vacancy-card {
  border: 1px solid var(--neutral-200);
  padding: 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--ekol-white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.vacancy-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.vacancy-card__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.vacancy-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  color: var(--ekol-dark-green);
}

.vacancy-card__meta {
  margin-top: 0.35rem;
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.vacancy-card__excerpt {
  margin: 1rem 0 1.5rem;
  color: var(--neutral-600);
  font-size: 0.95rem;
}

.vacancy-card__badge {
  background-color: rgba(0, 181, 226, 0.1);
  color: var(--ekol-blue);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.125rem 0.625rem;
  border-radius: 999px;
}

.vacancy-card .btn {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: var(--ekol-white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Это раскидает левую и правую часть по краям */
  height: 6rem;
}

.site-header__left,
.site-header__right {
    display: flex;
    align-items: center;
}

.site-header__right {
    gap: 2rem; /* Расстояние между меню и блоком с переключателем */
}

@media (min-width: 48rem) {
  .site-header__inner {
    height: 6rem;
  }
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}

.site-logo-link {
  display: inline-flex;
}

.site-logo-link:focus-visible {
  outline: 3px solid rgba(0, 181, 226, 0.4);
  outline-offset: 3px;
}

.site-logo__wordmark {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 1rem;
}

.nav-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.75rem;
}

.nav-menu__list .menu-item a {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--neutral-700);
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: color 200ms ease, background-color 200ms ease;
  display: inline-flex;
}

.nav-menu__list .menu-item a:hover,
.nav-menu__list .menu-item.current-menu-item a {
  color: var(--ekol-green);
  background-color: rgba(80, 158, 47, 0.1);
}

.nav-toggle {
  border: none;
  background: transparent;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 150ms ease;
}

.nav-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-toggle:hover {
  background-color: var(--neutral-100);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(80, 158, 47, 0.5);
  outline-offset: 2px;
}

@media (min-width: 64rem) {
  .nav-menu {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background-color: var(--ekol-white);
  z-index: 1200;
  display: none;
  flex-direction: column;
}

.mobile-menu.is-open {
  display: flex;
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  min-height: 6rem;
  border-bottom: 1px solid var(--neutral-200);
}

.mobile-menu__links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu__list .menu-item a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-700);
  text-align: center;
  display: block;
}

.mobile-menu__list .menu-item a:hover {
  color: var(--ekol-green);
}

.hero {
  position: relative;
  background-color: var(--ekol-dark-green);
  color: var(--ekol-white);
  text-align: center;
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 48rem) {
  .hero {
    padding: 8rem 0;
  }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
  background-image: var(--hero-bg, none);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  margin: 0;
}

.hero__subtitle {
  margin-top: 1.5rem;
  color: white;
  font-size: 1.125rem;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 62rem) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
  }
}

.about-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.about-feature__dot {
  width: 2rem;
  height: 3rem;
  border-radius: 1rem;
  flex-shrink: 0;
}

.about-feature__dot--blue { background-color: var(--ekol-blue); }
.about-feature__dot--red { background-color: var(--ekol-red); }
.about-feature__dot--green { background-color: var(--ekol-green); }

.logo-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}

.logo-mark__circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 4px solid var(--ekol-blue);
  position: relative;
}

.logo-mark__circle::after {
  content: '';
  position: absolute;
  inset: 0.4rem;
  border-radius: 50%;
  border: 4px solid var(--ekol-green);
}

.logo-mark__text {
  font-size: 0.85rem;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}

.footer {
  background-color: var(--ekol-white); /* 1. Белый фон */
  border-top: 2px solid var(--ekol-green); /* 1. Зеленая линия сверху */
  color: var(--ekol-green); /* 1. Основной цвет текста - зеленый */
  align-content: center;
}

/* 2. Выравнивание колонок */
.footer__upper {
  display: flex;
  gap: 8rem;
  padding-top: 1rem;
  align-items: start; /* 3. Выравниваем все колонки по верху */
  justify-content: center;
}

@media (max-width: 500px) {
  .footer__upper {
      display: flex; /* Меняем Grid на Flexbox */
      flex-direction: column;
      justify-content: center; /* Центрируем группу колонок по горизонтали */
      align-items: center;
      gap: 3rem; /* Увеличиваем расстояние между колонками для лучшего вида */
  }
}

/* Добавим этот стиль, чтобы текст внутри колонок был выровнен по левому краю */
.footer__col {
  text-align: left;
}

.footer h3 {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
  margin: 0;
  color: var(--ekol-green);
}

.footer__text,
.footer p,
.footer li {
  color: var(--ekol-green);
  font-size: 0.9rem;
}

.footer a {
  color: var(--ekol-green);
  transition: color 200ms ease;
}

.footer a:hover {
  color: var(--ekol-dark-green);
}

.footer__bottom {
  margin-top: 1rem;
  border-top: 1px solid rgba(80, 158, 47, 0.2);
  padding-top: 2rem;
  text-align: center;
}

/* 1. Стили для логотипа в футере */
.footer-logo {
  max-width: 120px; /* Делаем лого немного поменьше */
  height: auto;
  margin-bottom: 1rem;
}

/* 4. Стили для блока с иконками соцсетей */
.footer-social-links {
  display: flex;
  gap: 1rem; /* Расстояние между иконками */
  margin-top: 1rem;
}

.footer-social-links a {
  display: inline-block;
  color: var(--ekol-green);
}

.footer-social-links a:hover {
  color: var(--ekol-dark-green);
}

.footer-social-links svg {
  width: 24px; /* Задаем размер иконок */
  height: 24px;
  fill: currentColor; /* Иконка будет наследовать цвет от родительской ссылки <a> */
}

.language-switcher {
  position: relative;
}

.language-switcher__button {
  border: 1px solid var(--neutral-300);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  background-color: var(--ekol-white);
  font-weight: 600;
  font-size: 0.875rem;
}

.language-switcher__list {
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  min-width: 10rem;
  background-color: var(--ekol-white);
  border-radius: 1rem;
  border: 1px solid var(--neutral-200);
  box-shadow: var(--shadow-soft);
  padding: 0.5rem 0;
  display: none;
  z-index: 10;
}

.language-switcher.is-open .language-switcher__list {
  display: block;
}

.language-switcher__option {
  width: 100%;
  text-align: left;
  padding: 0.65rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.language-switcher__option.is-active {
  background-color: var(--neutral-100);
  font-weight: 600;
}

.language-switcher__option:hover {
  background-color: var(--neutral-100);
}

.archive-filter {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 48rem) {
  .archive-filter {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.archive-filter select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--neutral-300);
  background-color: var(--ekol-white);
}

.detail-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-meta {
  color: var(--neutral-500);
}

.detail-image {
  margin: 2rem 0;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-card);
  max-height: 32rem;
  object-fit: cover;
  width: 100%;
}

.detail-image--large {
  max-height: 500px;
}

.detail-header__back {
  margin-bottom: 2rem;
  font-weight: 600;
  color: var(--ekol-green);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 200ms ease;
}

.detail-header__back:hover {
  color: var(--ekol-dark-green);
}

.detail-content {
  color: var(--neutral-700);
  font-size: 1.05rem;
}

.detail-content ul {
  list-style: disc;
  list-style-position: inside;
  margin: 1rem 0;
  padding-left: 0;
}

.detail-content ul li {
  margin: 0.5rem 0;
  color: var(--neutral-700);
}

.detail-content ul li:first-child {
  margin-top: 0;
}

.prose {
  max-width: none;
  color: var(--neutral-700);
}

.prose p {
  margin: 1rem 0;
}

.prose p:first-child {
  margin-top: 0;
}

.prose p:last-child {
  margin-bottom: 0;
}

.application-form {
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-200);
  background-color: var(--neutral-50);
}

.application-form--sticky {
  position: sticky;
  top: 8rem;
  background-color: var(--ekol-white);
  box-shadow: var(--shadow-card);
}

.application-form__title {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--ekol-dark-green);
}

.application-form__field {
  margin-bottom: 0.5rem;
}

.application-form__field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-700);
  margin-bottom: 0.2rem;
}

.application-form__field input[type="file"] {
  font-size: 0.875rem;
  color: var(--neutral-500);
}

.application-form__field input[type="file"]::file-selector-button {
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: none;
  background-color: rgba(0, 181, 226, 0.1);
  color: var(--ekol-blue);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 200ms ease;
}

.application-form__field input[type="file"]::file-selector-button:hover {
  background-color: rgba(0, 181, 226, 0.2);
}

.application-form label {
  display: block;
  font-weight: 600;
  margin-top: 1.5rem;
}

.application-form input,
.application-form textarea,
.application-form select {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-300);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
  outline: none;
  border-color: var(--ekol-green);
  box-shadow: 0 0 0 3px rgba(80, 158, 47, 0.1);
}

.archive-filter select:focus {
  outline: none;
  border-color: var(--ekol-green);
  box-shadow: 0 0 0 3px rgba(80, 158, 47, 0.1);
}

/* Утилиты */
.min-h-screen {
  min-height: 100vh;
}

.shadow-inner {
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

.sticky {
  position: sticky;
}

.sticky.top-32 {
  top: 8rem;
}

/* Дополнительные стили для форм */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid var(--neutral-300);
  font-size: 1rem;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--ekol-green);
  box-shadow: 0 0 0 3px rgba(80, 158, 47, 0.1);
}

input[type="file"] {
  padding: 0.5rem;
  border: 1px solid var(--neutral-300);
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

/* Стили для success сообщений */
.success-message {
  padding: 1rem;
  background-color: rgba(80, 158, 47, 0.1);
  color: var(--ekol-dark-green);
  border-radius: 0.5rem;
  text-align: center;
}

.success-message p {
  margin: 0;
}

.success-message p:first-child {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

/* Дополнительные отступы для секций */
.section--spacious {
  padding: 5rem 0;
}

@media (min-width: 48rem) {
  .section--spacious {
    padding: 8rem 0;
  }
}

/* Стили для фильтров вакансий */
.vacancy-filters {
  background-color: var(--ekol-white);
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  margin-top: 3rem;
}

.vacancy-filters label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--neutral-700);
  margin-bottom: 0.5rem;
}

/* Стили для пустого состояния */
.empty-state {
  text-align: center;
  background-color: var(--ekol-white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.empty-state p {
  color: var(--neutral-600);
  margin: 0;
}

.print-hidden {
  display: none !important;
}

@media print {
  .site-header,
  .footer,
  .btn,
  .language-switcher,
  .mobile-menu {
    display: none !important;
  }
  body {
    background: #fff;
  }
}

/* ==========================================================================
   Стили для страницы вакансии (2-колоночный макет)
   ========================================================================== */

/* Контейнер для сетки */
.vacancy-layout-grid {
  display: flex; /* Включаем Flexbox для создания колонок */
  gap: 3rem; /* Расстояние между колонками */
  align-items: flex-start; /* Выравниваем колонки по верху */
  margin-top: 2rem;
}

/* Основной контент (левая колонка) */
.vacancy-main-content {
  flex: 1; /* Позволяем этой колонке занимать все доступное пространство */
  min-width: 0; /* Техническое свойство для правильной работы flexbox */
}

/* Сайдбар (правая колонка) */
.vacancy-sidebar {
  width: 380px; /* Задаем фиксированную ширину для сайдбара */
  flex-shrink: 0; /* Запрещаем сайдбару сжиматься */
}

/* Стили для "липкой" формы */
.application-form--sticky {
  position: sticky; /* Включаем "липкое" позиционирование */
  top: 8rem; /* Отступ сверху, чтобы форма не заезжала под шапку сайта */
}

/* Адаптивность для мобильных устройств */
@media (max-width: 64rem) { /* 1024px */
  .vacancy-layout-grid {
      display: block; /* На маленьких экранах отключаем flexbox, колонки встанут друг под другом */
  }

  .vacancy-sidebar {
      width: 100%; /* Сайдбар занимает всю ширину */
      margin-top: 3rem; /* Добавляем отступ сверху */
  }
}

.language-switcher__list {
  list-style: none;
  padding-left: 1rem;
}
