﻿/*
Theme Name: ТАУКЕЛЬ
Theme URI: https://taukeldombay.ru
Author: Бурхан Борлаков
Description: Решительный дизайн для решительного апарт-отеля.
Version: 0.0.9
Text Domain: taukel
*/

/* Franklin Gothic Book */
@font-face {
    font-family: 'Franklin Gothic Book';
    src: url('assets/fonts/FranklinGothic-Book.woff2') format('woff2'),
         url('assets/fonts/FranklinGothic-Book.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Evolventa Regular */
@font-face {
    font-family: 'Evolventa';
    src: url('assets/fonts/Evolventa-Regular.woff2') format('woff2'),
         url('assets/fonts/Evolventa-Regular-1.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Evolventa Bold (если есть файл) */
@font-face {
    font-family: 'Evolventa';
    src: url('assets/fonts/Evolventa-Bold.woff2') format('woff2'),
         url('assets/fonts/Evolventa-Bold-1.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --tauk-color-bg: #0f0f0f;
    --tauk-color-bg-alt: #d9a95b;
    --tauk-color-text: #ffffff;
    --tauk-color-accent: #d9a95b;
    --tauk-max-width: 1440px;
}

/* БАЗОВЫЕ СТИЛИ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    background-color: #fff;
    color: #1d1d1d;
    font-family: "Evolventa", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

a {
    color: var(--tauk-color-accent);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Franklin Gothic Book", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 0 0 0.75em;
}

.tauk-page-wrapper {
    min-height: 100vh;
}

/* КОНТЕЙНЕР */

.tauk-container {
    max-width: var(--tauk-max-width);
    margin: 0 auto;
    padding: 0 20px;
}
.tauk-containern {
    max-width: var(--tauk-max-width);
    margin: 40px auto 0 auto;
    padding: 0 20px;
}

/* ТОПБАР */

.tauk-topbar-wrapper {
    position: relative;
    z-index: 1000;
}

/* Внешняя оболочка на всю ширину */
.tauk-topbar-outer {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1100;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

/* Фон и тень при любой прокрутке */
.tauk-topbar-outer.tauk-topbar--scrolled {
    background-color: rgba(0,0,0,0.85);
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
}

/* Внутренний контейнер 1440px */
.tauk-topbar {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--tauk-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.tauk-topbar__left,
.tauk-topbar__center,
.tauk-topbar__right {
    display: flex;
    align-items: center;
}

/* Бургер */

.tauk-burger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.tauk-burger__icon {
    width: 28px;
    height: 20px;
    position: relative;
}

.tauk-burger__line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--tauk-color-text);
    border-radius: 999px;
    transition: transform 0.25s ease, top 0.25s ease, opacity 0.25s ease;
}

.tauk-burger__line--1 { top: 0; }
.tauk-burger__line--2 { top: 9px; }
.tauk-burger__line--3 { top: 18px; }

.tauk-burger--active .tauk-burger__line--1 {
    top: 9px;
    transform: rotate(45deg);
}
.tauk-burger--active .tauk-burger__line--2 {
    opacity: 0;
}
.tauk-burger--active .tauk-burger__line--3 {
    top: 9px;
    transform: rotate(-45deg);
}

.tauk-burger__label {
	color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
	padding: 0;
	line-height: 1;
}

/* Логотип в топбаре */

.tauk-topbar__center { gap: 120px; }

.tauk-topbar__logo {
    display: flex;
    justify-content: center;
    flex: 1 1 auto;
    opacity: 0;
    transform: translateY(-10px) scale(0.8);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tauk-topbar__logo--visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.tauk-topbar__logo img {
    max-height: 80px;
}

/* Часы */

.topshares { background: url('assets/img/shares-1.svg') no-repeat; background-size: contain; line-height: 20px; }
.tauk-topbar__clock {
    font-size: 13px;
    opacity: 0.8;
}

/* Телефоны и кнопки */

.tauk-topbar__phones {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-right: 32px;
    font-size: 11pt;
	line-height: 1;
}
.tauk-topbar__phones a:hover { text-decoration: none; }

.tauk-topbar__phones a {
    color: var(--tauk-color-text);
}

.tauk-topbar__book-link {
	position: relative;
    padding: 20px;
    border-radius: 999px;
    border: 2px solid #d9a95b;
    background: transparent;
	color: #d9a95b;
    font-size: 12pt;
	font-weight: bold;
    text-transform: uppercase;
	line-height: 1;
}
.tauk-topbar__book-link::before { content: ""; position: absolute; inset: 0; background: #d9a95b; color: #1d1d1d; transform: scaleX(0); transform-origin: center; transition: transform 0.3s ease; z-index: -1; }
.tauk-topbar__book-link:hover::before { transform: scaleX(1); border-radius: 999px; }
.tauk-topbar__book-link:hover { color: #1d1d1d; border: 2px solid #fff; text-decoration: none !important; }

.tauk-topbar__book-mobile {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--tauk-color-accent);
    display: none;
    align-items: center;
    justify-content: center;
}

/* Оверлей-меню */

.tauk-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.9);
    color: #fff;
    z-index: 1200;
    display: none;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.tauk-menu-overlay--visible {
    display: block;
    opacity: 1;
}

.tauk-menu-overlay__inner {
    position: relative;
    max-width: var(--tauk-max-width);
    margin: 0 auto;
    padding: 110px 20px 40px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.tauk-menu-overlay__nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tauk-menu-overlay__nav li {
    margin-bottom: 14px;
}

.tauk-menu-overlay__nav a {
    font-size: 20px;
    text-transform: uppercase;
}

.tauk-menu-overlay__extra {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 14px;
}

.tauk-menu-overlay__socials {
    display: flex;
    gap: 12px;
	margin-bottom: 10px;
}
.WhatsApp { background: url('assets/img/wa-1.svg') no-repeat; background-size: contain; width: 35px; height: 35px; margin-right: 10px; }
.Telegram { background: url('assets/img/tg-1.svg') no-repeat; background-size: contain; width: 35px; height: 35px; margin-right: 10px; }
.VK { background: url('assets/img/vk-1.svg') no-repeat; background-size: contain; width: 35px; height: 35px; }
.MAX { background: url('assets/img/max-1.svg') no-repeat; background-size: contain; width: 35px; height: 35px; }

.tauk-menu-overlay__book-link {
    align-self: flex-start;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid var(--tauk-color-accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Кнопка закрытия оверлей-меню */

.tauk-menu-overlay__close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1300;
}

.tauk-menu-overlay__close-line {
    position: absolute;
    left: 4px;
    right: 4px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 999px;
    top: 50%;
    transform-origin: center;
}

.tauk-menu-overlay__close-line--1 {
    transform: translateY(-50%) rotate(45deg);
}

.tauk-menu-overlay__close-line--2 {
    transform: translateY(-50%) rotate(-45deg);
}

/* Блюр фона при открытом меню */
body.tauk-menu-open .tauk-page-wrapper {
    filter: blur(8px);
    pointer-events: none;
}

/* ПЕРВЫЙ ЭКРАН */

.tauk-hero {
    position: relative;
    min-height: 100vh;
    color: #fff;
    overflow: hidden;
}

.tauk-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    overflow: hidden;
}

.tauk-hero__bg img,
.tauk-hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tauk-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0,0,0,0.6);
}

.tauk-hero__inner {
    position: relative;
    max-width: var(--tauk-max-width);
    margin: 0 auto;
    padding: 140px 20px 40px;
}

.tauk-hero__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}
.tauk-hero__logo a { z-index: 11; }

.tauk-hero__logo img {
    max-height: 120px;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Блок акций */

.tauk-hero-promo {
    max-width: 500px;
    margin: 30px auto 0 auto;
    border-radius: 24px;
    padding: 20px 24px;
    border: 1px solid var(--tauk-color-accent);
    background-color: rgba(0,0,0,0.2);
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
	text-align: center;
	z-index: 11;
}

.tauk-hero-promo p { margin: 5px 0; }

.tauk-hero-promo__link:hover { text-decoration: none; }

.tauk-hero-promo__item {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tauk-hero-promo__item--active {
    display: block;
    opacity: 1;
}

.tauk-hero-promo__heading {
    display: flex;
    align-items: center;
	justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}
.tauk-hero-promo__title { margin: 0; }

.tauk-hero-promo__icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tauk-hero-promo__nav {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.tauk-hero-promo__dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 1px solid var(--tauk-color-accent);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.tauk-hero-promo__dot--active {
    background: var(--tauk-color-accent);
    transform: scale(1.2);
}

/* Нижний блок, прилепленный к низу ленда */

.tauk-hero-bottom {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.tauk-hero-bottom__inner {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.tauk-hero-bottom__slogan {
	font-family: "Franklin Gothic Book", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	text-align: right;
    font-size: 24pt;
	font-weight: bold;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 120px;
}

#widg { display: flex; flex-direction: row; justify-content: center; min-height: 100vh; width: 100%; position: absolute; top: 0; z-index: 10; }
.tauk-hero-bottom__widget {
	position: absolute; bottom: 30px;
	width: 100%;
	max-width: 1440px;
    border-radius: 24px;
    padding: 10px 30px;
	margin: 0 auto;
    background: rgba(20,20,20,0.6);
    backdrop-filter: blur(12px);
}

/* СЕКЦИИ */

.tauk-section {
    padding: 80px 0;
    background-color: var(--tauk-color-bg);
}

.tauk-section--alt {
    padding: 80px 0;
    background-color: var(--tauk-color-bg);
}

.tauk-section__header {
    margin-bottom: 32px;
}
.tauk-section__headern {
	border-top: 1px solid #d9a95b;
	color: #d9a95b;
    margin: 64px 0 32px 0;
	padding: 32px 0 0 0;
}

.tauk-section__title {
    font-size: 28px;
	margin: 0 0 5px 0;
	line-height: 1.2;
}
.tauk-section__titlen {
    font-size: 28px;
	margin: 0 0 5px 0;
	line-height: 1.2;
	z-index: 1;
}

.tauk-section__subtitle {
	display: inline-block;
	border: 1px solid #d9a95b;
	color: #d9a95b;
	padding: 5px 10px;
	margin: 0 0 15px 0;
    font-size: 9pt;
    text-transform: none;
    letter-spacing: 0.04em;
	cursor: default;
}
.tauk-section--alt .tauk-section__subtitle { color: #f4f4f4; border: 1px solid #f4f4f4; }

/* Разноцветные секции */

.tauk-section--one {
    background-color: #faf7f0;
	color: #1d1d1d;
	padding: 40px 0;
}

.tauk-section--two {
    background-color: #fff;
	padding: 40px 0;
}
.tauk-section--two .hrc-card-unified { box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); }

.tauk-section--three {
    background-color: #FDFAF5;
	color: #1d1d1d;
	padding: 40px 0;
}

.tauk-section--four {
    background-color: #f3efe9;
	color: #1d1d1d;
	padding: 40px 0;
}

.tauk-section--page {
    background-color: #fff;
	padding: 120px 0 60px 0;
}

/* Секция с тёмным фоном и размытым градиентом */
.tauk-section--glow {
    position: relative;
    background-color: #1d1d1d; /* основной тёмный цвет */
    overflow: hidden;          /* чтобы градиент не вылазил наружу */
    z-index: 0;                /* создаём контекст наложения */
}

.tauk-section--glow::before {
    content: "";
    position: absolute;
    inset: -80px; /* немного вылезаем за границы секции */

    background:
        radial-gradient(circle at 15% 0%, rgba(217, 169, 91, 0.45) 0, transparent 40%),
        radial-gradient(circle at 85% 100%, rgba(217, 169, 91, 0.25) 0, transparent 55%),
        radial-gradient(circle at 50% 120%, #111111 0, #1d1d1d 60%, #000000 100%);

    filter: blur(25px);
    z-index: -1;          /* уходим под контент секции */
    pointer-events: none; /* чтобы ничего не перекрывать по клику */
}

/* Первая секция */

.tauk-section-intro__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 364px;
    gap: 32px;
}

.tauk-section-intro__desc {
    opacity: 0.9;
}

.tauk-section-shortcode {
    margin-top: 24px;
}

/* Отзывы */

.tauk-section-reviews__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* ФУТЕР */

.tauk-footer {
    padding: 60px 0 20px;
    background-color: #141414;
	color: #fff;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 0;
}

.tauk-footer__col.tauk-footer__col--left { max-width: auto; }
.tauk-footer__col.tauk-footer__col--center { display: flex; justify-content: center; flex-wrap: wrap; }
.tauk-footer__map img { max-height: 400px; }
.tauk-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 300px) repeat(2, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 32px;
}

.tauk-footer__phones {
    display: inline-block;
    flex-direction: column;
    gap: 4px;
    font-size: 18pt;
	padding: 10px 20px;
	margin: 10px 0;
	border: 1px solid #d9a95b;
}

.tauk-footer__socials {
    display: flex;
    gap: 10px;
    margin: 12px 0;
}

.tauk-footer__copyright {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 14px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.tauk-footer__copyright-links {
    display: flex;
    gap: 14px;
    font-size: 13px;
}
.tauk-footer__logo { max-width: 150px; margin: 0 0 20px 0; }

/* БЛОГ */

.tauk-archive-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tauk-archive-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 24px;
}

.tauk-archive-item__title {
    font-size: 22px;
}

.tauk-archive-item__meta {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.tauk-archive-item__excerpt {
    margin-bottom: 10px;
    font-size: 15px;
}

.tauk-archive-item__more {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.tauk-single {
    padding: 60px 0;
}

.tauk-single__meta {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 16px;
}

/* АНИМАЦИИ СЕКЦИЙ */

.tauk-animate,
.tauk-animate--alt {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tauk-animate--alt {
    transform: translateY(24px) translateX(-12px);
}

.tauk-animate--visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* АДАПТИВ */

@media (max-width: 960px) {
    .tauk-menu-overlay__inner {
        grid-template-columns: 1fr;
    }

    .tauk-footer__top {
        grid-template-columns: 1fr;
    }

    .tauk-section-intro__grid {
        grid-template-columns: 1fr;
    }

    .tauk-hero-bottom__inner {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .tauk-topbar {
        height: 70px;
    }
	.tauk-burger span.tauk-burger__label { display: none; }
	.tauk-topbar__logo img { max-width: 60px; }
    .tauk-topbar__book-link { display: none; }
    .tauk-topbar__book-mobile { display: inline-flex; }
    .tauk-hero__inner { padding-top: 100px; }
    .tauk-hero-bottom {
        position: static;
        margin-top: 40px;
        justify-content: flex-start;
    }

    .tauk-hero-bottom__inner {
        margin: 0;
        max-width: 100%;
    }

    .tauk-hero__logo img {
        max-height: 90px;
    }

    .tauk-section {
        padding: 60px 0;
    }
	.tauk-section-reviews__header > header > h2 { margin-bottom: 0; }
	.tauk-section-reviews__header { align-items: center; }
	.tauk-footer__col.tauk-footer__col--left { display: flex; align-items: center; flex-direction: column; }
	.tauk-footer__copyright-links { display: flex; align-items: center; flex-direction: column; text-align: center; }
	.tauk-footer__copyright { display: flex; align-items: center; flex-direction: column; text-align: center; }
	.tauk-hero-bottom__widget { margin: 20px; }
	.tauk-hero-bottom__slogan { text-align: center; font-size: 14pt; margin: 0 20px; }
	.tauk-section-intro__video { max-width: 90%; margin: 0 auto; }
	.tauk-section-intro__gallery { max-width: 90%; margin: 0 auto; }
	.tauk-section-intro__desc { max-width: 90%; margin: 0 auto; }
}
@media (max-width: 768px) {
    .tauk-animate,
    .tauk-animate--alt,
    .tauk-animate.tauk-animate--visible,
    .tauk-animate--alt.tauk-animate--visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.services {
  display: flex;
  gap: 20px;              /* расстояние между карточками */
}

/* Общий стиль карточки */
.service-card {
  position: relative;
  flex: 1 1 50%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;  /* убрать подчёркивание ссылки */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: translateZ(0);         /* для более гладкой анимации */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Оверлей под текстом */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
}

/* Текст */
.service-card__title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 28pt;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;    /* большие буквы */
  padding: 0 12px;              /* немного отступов, чтобы длинный текст не лип к краям */
}

/* Ховер-анимация */
.service-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
	text-decoration: none;
}

/* Фоновые картинки для каждой карточки 
   ЗАМЕНИ путь на свои картинки */
.service-card--one {
  background-image: url("images/rent-1.jpg");
}

.service-card--two {
  background-image: url("images/tours-1.jpg");
}

/* Мобильная версия: карточки друг под другом */
@media (max-width: 768px) {
  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex-basis: 100%;
  }
}

/* Инфраструктура */

.hotel-features {
  width: 100%;                 /* занимаем всю ширину родителя */
  margin: 0;                   /* убрали авто-отступы по краям */
  display: flex;
  flex-wrap: wrap;
  justify-content: center;     /* выравнивание по центру строк */
  gap: 20px;                   /* расстояние между карточками */
  box-sizing: border-box;
}

/* 3 карточки в строку, полностью заполняют ширину */
.feature-card {
  flex: 0 1 calc((100% - 40px) / 3); 
  /* 3 карточки + 2 промежутка по 20px = 100% */

  display: flex;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid #d9a95b;
  border-radius: 12px;
  background: transparent;
  box-sizing: border-box;
  cursor: default;

  /* эффект при наведении */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: scale(1.03);                      /* лёгкое увеличение */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);  /* небольшая тень */
}

.feature-icon {
  flex: 0 0 40px;
  margin-right: 12px;
}

.feature-icon img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-content {
  flex: 1 1 auto;
}

.feature-title {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  color: #d9a95b;
}

.feature-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #464646
}

/* Адаптив */
@media (max-width: 900px) {
  .feature-card {
    flex: 0 1 calc(50% - 10px); /* 2 карточки в строку */
  }
}

@media (max-width: 600px) {
  .feature-card {
    flex: 0 1 100%;            /* 1 карточка в строку */
  }
	.tauk-section__title { margin-bottom: 15px; }
}

/* Хорошее место */

.tauk-section-reviews__side a { display: block; background: url('assets/img/ya-1.svg') no-repeat; background-size: 35px 35px; background-position: left center; margin: 0 0 0 30px; color: #fff; }
.tauk-section-reviews__side a span { margin: 0 0 0 43px; line-height: 60px; font-size: 14pt; font-weight: normal; color: #1d1d1d; }

/* Фон проката */

.section--seatwo  { background: radial-gradient(600px 420px at 15% 8%, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.05) 26%, rgba(255,255,255,0) 60%), radial-gradient(520px 360px at 85% 18%, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 28%, rgba(255,255,255,0) 58%), radial-gradient(720px 520px at 22% 92%, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 56%), linear-gradient(#0085ff, #0085ff); background-repeat: no-repeat; background-color: #0085ff; color: #fff; margin: 60px 0 0 0; }
.section--seatwo h2 { text-align: right; margin: 0; }

/* СПИСОК НОВОСТЕЙ */

.tauk-news-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

/* Карточка новости — вся поверхность кликабельна */
.tauk-news-card {
    display: flex;
    align-items: stretch;
    text-decoration: none;
    color: inherit;
    padding: 18px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: #ebe5da;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    height: 100%;
	z-index: 1;
}

.tauk-news-card:hover {
    transform: translateY(-2px);
	text-decoration: none;
}

/* Левая часть — дата */

.tauk-news-card__date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-right: 18px;
    margin-right: 18px;
    border-right: 1px solid #464646;
}

/* Две строки даты одинаковой ширины */
.tauk-news-card__date-day,
.tauk-news-card__date-year {
    display: block;
    width: 6ch; /* одинаковая ширина для ДД/ММ и ГГГГ */
    text-align: center;
    font-family: 'Evolventa', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 32px); /* очень крупный шрифт */
    line-height: 1.1;
}

.tauk-news-card__date-year {
    margin-top: 4px;
    opacity: 0.85;
}

/* Правая часть — заголовок и описание */

.tauk-news-card__content {
    flex: 1 1 auto;
    min-width: 0;
}

.tauk-news-card__title {
    font-size: 18px;
    margin: 0 0 8px;
    text-transform: none;
    letter-spacing: 0.04em;
}

.tauk-news-card__excerpt {
    font-size: 14px;
    opacity: 0.85;
}

/* Кнопка "Читать все новости" */

.tauk-news-more {
    display: flex;
    justify-content: center;
}

.tauk-news-more__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 999px;
    border: 1px solid #d9a95b;
    color: #d9a95b;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 13px;
    text-decoration: none;
    background: transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tauk-news-more__btn:hover {
    background: #d9a95b;
    color: #1d1d1d;
    box-shadow: 0 0 24px rgba(217, 169, 91, 0.4);
    transform: translateY(-1px);
	text-decoration: none;
}

/* АДАПТИВ: на мобильных — по одной карточке в строке */

@media (max-width: 900px) {
    .tauk-news-list {
        grid-template-columns: 1fr;
    }

    .tauk-news-card {
        padding: 16px 16px;
    }

    .tauk-news-card__date {
        margin-right: 14px;
        padding-right: 14px;
    }
}

/* Базово прячем суб-меню */
.tauk-menu-overlay__list .sub-menu {
    list-style: none;
    margin: 8px 0 0;
    padding-left: 18px;

    max-height: 0;
    opacity: 0;
    overflow: hidden;

    transform: translateY(-6px);
    transition:
        max-height 0.25s ease,
        opacity 0.25s ease,
        transform 0.25s ease;
}

/* Элемент списка внутри sub-menu */
.tauk-menu-overlay__list .sub-menu li {
    margin-bottom: 8px;
}

/* Видимые сабы (общий класс, который будем вешать) */
.tauk-menu-overlay__list .sub-menu.tauk-submenu--open {
    max-height: 500px; /* достаточно большое значение для 3–5 пунктов */
    opacity: 1;
    transform: translateY(0);
}

/* ДЕСКТОП: показываем сабы по hover */
@media (min-width: 901px) {
    .tauk-menu-overlay__list li.menu-item-has-children:hover > .sub-menu,
    .tauk-menu-overlay__list li.menu-item-has-children:focus-within > .sub-menu {
        max-height: 500px;
        opacity: 1;
        transform: translateY(0);
    }
}