/*
  CSS ДЛЯ МЕНЮ TILDA
  ====================
  Добавьте этот код в:
  Настройки сайта → Дополнительный CSS (или Custom CSS)
*/

/* Фон меню */
.t-header {
  background-color: #0f0f0e !important;
  border-bottom: 0.5px solid rgba(255,255,255,0.08) !important;
}

/* Пункты меню */
.t-menu__link-item {
  color: rgba(255,255,255,0.6) !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  transition: color 0.2s !important;
}

/* Hover пунктов меню */
.t-menu__link-item:hover {
  color: #fff !important;
}

/* Активный пункт меню */
.t-menu__link-item_active {
  color: #D85A30 !important;
}

/* Логотип / название сайта */
.t-logo {
  color: #fff !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 600 !important;
}

/* Бургер-меню на мобильном */
.t-menuburger__parts span {
  background-color: #fff !important;
}


/*
  СТИЛИ ДЛЯ ФОРМЫ — ТОЛЬКО ШРИФТЫ И КНОПКА
  ===========================================
  Добавьте в Настройки сайта → Дополнительный CSS
  после уже существующих стилей меню
*/

/* Заголовок формы */
.t-form__title,
.t-section-title {
  font-family: 'Playfair Display', serif !important;
  font-weight: 400 !important;
}

/* Подзаголовок */
.t-form__descr,
.t-section-descr {
  font-family: 'Manrope', sans-serif !important;
}

/* Лейблы полей */
.t-input-title {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 500 !important;
}

/* Поля ввода */
.t-input,
.t-form__inputsbox input,
.t-form__inputsbox textarea {
  font-family: 'Manrope', sans-serif !important;
  border-radius: 8px !important;
}

/* Текст чекбоксов */
.t-checkbox__text {
  font-family: 'Manrope', sans-serif !important;
}

/* Кнопка отправить */
.t-form__submit .t-submit,
.t-submit {
  background: #D85A30 !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  transition: background 0.2s !important;
}

.t-form__submit .t-submit:hover,
.t-submit:hover {
  background: #c04e27 !important;
}

/* Текст под кнопкой */
.t-form__after-submit-text {
  font-family: 'Manrope', sans-serif !important;
}