html {
scroll-behavior: smooth;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', sans-serif;
background-color: #FDF8F0;  /* тёплый кремовый фон */
color: #4A3728;             /* тёмно-коричневый для текста */
line-height: 1.5;
scroll-behavior: smooth;
}

h1, h2, h3, .logo-text, .hero-title {
font-family: 'Playfair Display', serif;
font-weight: 600;
}

/* Новая цветовая палитра — баня, дерево, изумруд */
:root {
--brown-wood: #8B5A2B;      /* тёплый коричневый стен бани */
--emerald: #0F6B4A;         /* изумрудный – главный акцент */
--green-soft: #3A7D5C;      /* мягкий природный зелёный */
--dark-wood: #4A3728;       /* тёмный коричневый для текста */
--terracotta: #C95D2E;      /* кирпично-терракотовый (акцент) */
--cream-warm: #FDF8F0;      /* тёплый кремовый фон */
--emerald-glow: rgba(15, 107, 74, 0.1);
--shadow-sm: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
--shadow-md: 0 20px 25px -12px rgba(0, 0, 0, 0.12);
}

.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
}

/* Шапка */
.site-header {
background-color: rgba(253, 248, 240, 0.96);
backdrop-filter: blur(6px);
box-shadow: 0 1px 3px rgba(0,0,0,0.02);
padding: 18px 0;
position: sticky;
top: 0;
z-index: 100;
border-bottom: 1px solid #EADBCF;
}
.header-inner {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}
.logo {
display: flex;
align-items: center;
gap: 12px;
}
.logo img{
height:80px;
}
.main-nav ul {
display: flex;
gap: 32px;
list-style: none;
}
.main-nav a {
text-decoration: none;
font-weight: 500;
color: var(--dark-wood);
transition: 0.2s;
}
.main-nav a:hover {
color: var(--emerald);
}
.btn-primary {
background-color: var(--emerald);
color: white;
border: none;
padding: 12px 28px;
border-radius: 40px;
font-weight: 600;
font-size: 1rem;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
transition: 0.25s ease;
}
.btn-primary:hover {
background-color: #0B543A;
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}
.btn-outline {
background: transparent;
border: 1.5px solid var(--emerald);
color: var(--emerald);
padding: 10px 24px;
border-radius: 40px;
font-weight: 600;
text-decoration: none;
transition: 0.2s;
}
.btn-outline:hover {
background: var(--emerald);
color: white;
}

/* Герой */
.hero {
padding: 80px 0 70px;
background: linear-gradient(130deg, #FDF8F0 0%, #F6EFE4 100%);
}
.hero-grid {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 48px;
}
.hero-content {
flex: 1.2;
}
.hero-badge {
background: #EADBCF;
display: inline-block;
padding: 4px 14px;
border-radius: 40px;
font-size: 0.8rem;
font-weight: 600;
color: var(--brown-wood);
margin-bottom: 20px;
}
.hero-content h1 {
font-size: 3.3rem;
line-height: 1.2;
margin-bottom: 20px;
color: var(--dark-wood);
}
.hero-content p {
font-size: 1.2rem;
color: #5C564C;
margin-bottom: 32px;
max-width: 550px;
}
.hero-stats {
display: flex;
gap: 32px;
margin-bottom: 32px;
}
.hero-stats div strong {
font-size: 1.8rem;
color: var(--emerald);
}
.hero-buttons {
display: flex;
gap: 16px;
flex-wrap: wrap;
}
.hero-image {
flex: 1;
background: url('/wp-content/uploads/2026/05/img_20260514_212406.png') bottom no-repeat;
background-blend-mode: overlay;
background-size: cover;
border-radius: 40px;
min-height: 380px;
box-shadow: var(--shadow-md);
}

/* Секции */
section {
padding: 40px 0;
}
.section-title {
text-align: center;
font-size: 2.4rem;
margin-bottom: 56px;
color: var(--brown-wood);
position: relative;
}
.section-title:after {
content: '';
display: block;
width: 70px;
height: 3px;
background: var(--terracotta);
margin: 16px auto 0;
border-radius: 4px;
}

/* Услуги */
.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 32px;
}
.service-card {
background: white;
padding: 32px 24px;
border-radius: 32px;
text-align: center;
box-shadow: var(--shadow-sm);
transition: 0.2s;
position:relative;
}
.service-card a{
position:absolute;
z-index:2;
top:0;
left:0;
right:0;
bottom:0;
}
.service-card img{
height:100px;
transition:all .3s;
}
.service-card:hover img{
transform:scale(1.3);
}
.service-card i {
font-size: 48px;
color: var(--emerald);
margin-bottom: 20px;
}
.service-card h3 {
font-size: 1.6rem;
margin-bottom: 12px;
color: var(--brown-wood);
line-height:25px;
}
/* Календарь */
.acf-calendar-container {
background: white;
border-radius: 32px;
padding: 24px;
box-shadow: var(--shadow-md);
}
.calendar-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 24px;
flex-wrap: wrap;
}
.month-nav {
display: flex;
gap: 16px;
align-items: center;
}
.nav-prev, .nav-next {
background: #EADBCF;
border: none;
width: 42px;
height: 42px;
border-radius: 50%;
font-size: 1.2rem;
cursor: pointer;
transition: 0.2s;
color: var(--brown-wood);
}
.nav-prev:hover, .nav-next:hover {
background: var(--emerald);
color: white;
}
.current-month-selector {
position: relative;
cursor: pointer;
font-size: 1.6rem;
font-weight: 600;
background: var(--brown-wood);
color: white;
padding: 8px 24px;
border-radius: 40px;
font-family: 'Playfair Display', serif;
}
.month-picker-dropdown {
position: absolute;
top: 55px;
left: 0;
background: white;
border-radius: 24px;
padding: 16px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
z-index: 200;
display: flex;
gap: 12px;
white-space: nowrap;
}
.month-picker-dropdown select {
padding: 8px 12px;
border-radius: 40px;
border: 1px solid #ddd;
}
.apply-month-btn {
background: var(--emerald);
color: white;
border: none;
border-radius: 40px;
padding: 6px 18px;
cursor: pointer;
}
.weekdays {
display: grid;
grid-template-columns: repeat(7, 1fr);
text-align: center;
font-weight: bold;
margin-bottom: 12px;
color: #5C564C;
}
.calendar-days {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 8px;
}
.cal-day {
background: white;
border-radius: 20px;
padding: 12px 4px;
text-align: center;
border: 1px solid #efe3d8;
transition: 0.2s;
min-height: 100px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.cal-day.has-events {
cursor: pointer;
}
.cal-day.has-events:hover {
border-color: var(--emerald);
transform: translateY(-3px);
box-shadow: var(--shadow-sm);
}
.cal-day.empty-day {
background: #f9f4ee;
opacity: 0.6;
cursor: default;
}
.day-number {
font-size: 1.2rem;
font-weight: 700;
}
.day-events {
font-size: 0.7rem;
background: var(--emerald-glow);
border-radius: 40px;
padding: 4px 8px;
display: inline-block;
margin: 6px auto 0;
color: var(--emerald);
}
.free-badge {
font-size: 0.7rem;
background: #E2F0EA;
border-radius: 20px;
padding: 4px 8px;
margin-top: 6px;
color: var(--green-soft);
}
.calendar-loading {
text-align: center;
padding: 40px;
color: var(--emerald);
}

/* О травнице */
.about-wrapper {
display: flex;
flex-wrap: wrap;
gap: 50px;
align-items: center;
}
.about-img {
flex: 1;
background: #DCCDBE url('/wp-content/uploads/2026/05/img_20260514_211820.png') center no-repeat;
background-size: cover;
border-radius: 48px;
min-height: 420px;
}
.about-text {
flex: 1;
}
.about-text h3 {
font-size: 2rem;
margin-bottom: 20px;
color: var(--brown-wood);
line-height:35px;
}
.herb-quote {
font-style: italic;
border-left: 4px solid var(--emerald);
padding-left: 20px;
margin: 25px 0;
color: #685C4E;
}
.about-badges {
display: flex;
gap: 15px;
margin-top: 25px;
flex-wrap: wrap;
}
.about-badges span {
background: white;
padding: 6px 14px;
border-radius: 30px;
font-size: 0.9rem;
color:#fff;
border: 1px solid #E0D5C8;
}
.about-badges .max{
background:linear-gradient(90deg, rgba(65, 133, 246, 1) 0%, rgba(73, 48, 224, 1) 48%, rgba(150, 75, 218, 1) 98%)!important;
}
.about-badges .max svg{
height: 14px;
position: relative;
top: 2px;
}
.about-badges .telega{
background:#27a7e7;
}
/* Отзывы */
.reviews-header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin-bottom: 32px;
}
.reviews-header .section-title {
margin-bottom: 0;
}
.reviews-nav {
display: flex;
gap: 12px;
}
.reviews-nav div {
width: 48px;
height: 48px;
background: var(--emerald, #0F6B4A);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
color: white;
font-size: 20px;
}
.reviews-nav div:hover {
background: var(--brown-wood, #8B5A2B);
transform: scale(1.05);
}
.swiper-button-next,
.swiper-button-prev {
display: none;
}
.reviews-swiper {
padding: 20px 0 50px 0;
position: relative;
}
.review-card {
background: white;
border-radius: 32px;
padding: 32px 28px;
height: 100%;
}
.swiper-button-next,
.swiper-button-prev {
width: 44px;
height: 44px;
background: var(--emerald);
border-radius: 50%;
color: white;
}
.swiper-button-next:after,
.swiper-button-prev:after {
font-size: 18px;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
background: var(--brown-wood);
}
.swiper-pagination-bullet {
background: var(--emerald);
opacity: 0.4;
}
.swiper-pagination-bullet-active {
opacity: 1;
background: var(--emerald);
}
.stars {
color: #D4A017;
font-size: 1.2rem;
margin-bottom: 16px;
}
.review-author {
margin-top: 16px;
font-weight: 700;
color: var(--emerald);
}
/* Стили видео-блока */
.video-journey{
padding:0;
padding-bottom:20px;
}
.video-wrapper {
max-width: 900px;
margin: 0 auto;
border-radius: 32px;
overflow: hidden;
box-shadow: var(--shadow-md);
position: relative;
cursor: pointer;
}
.video-preview {
position: relative;
width: 100%;
padding-bottom: 56.25%; /* 16:9 */
background: #000;
}
.video-preview img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.3s ease;
}
.video-preview:hover img {
transform: scale(1.02);
}
.play-btn {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 80px;
height: 80px;
background: var(--emerald, #0F6B4A);
border: none;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
z-index: 2;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.play-btn i {
font-size: 32px;
color: white;
}
.play-btn:hover {
background: var(--brown-wood, #8B5A2B);
transform: translate(-50%, -50%) scale(1.1);
}
.video-caption {
text-align: center;
margin-top: 24px;
font-size: 1rem;
color: var(--text-muted, #6E5F4E);
font-style: italic;
}

/* Модальное окно для видео */
.video-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.9);
z-index: 2000;
justify-content: center;
align-items: center;
backdrop-filter: blur(5px);
}
.video-modal-content{
position: relative;
width: 90%;
max-width: 1200px;
background: transparent;
border-radius: 20px;
overflow: hidden;
}
.video-container {
position: relative;
width: 100%;
padding-bottom: 56.25%; /* 16:9 */
background: #000;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.close-modal-main-video{
position: absolute;
top: -10px;
right: 10px;
font-size: 32px;
color: white;
cursor: pointer;
z-index: 2001;
transition: 0.2s;
}
.close-modal-main-video:hover {
color: var(--terracotta);
}
/* Контакты */
.contact-grid {
display: flex;
flex-wrap: wrap;
gap: 48px;
background: white;
border-radius: 48px;
padding: 48px 40px;
box-shadow: var(--shadow-sm);
}
.contact-info {
flex: 1;
}
.contact-info h3 {
font-size: 1.8rem;
margin-bottom: 24px;
color: var(--brown-wood);
}
.contact-detail {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 20px;
}
.contact-detail i {
width: 40px;
height: 40px;
background: var(--emerald-glow);
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
color: var(--emerald);
}
.contact-offer {
background: var(--emerald-glow);
border-radius: 28px;
padding: 12px 20px;
text-align: center;
margin-top: 20px;
color: var(--emerald);
}
.contact-form {
flex: 1;
}
.contact-form h3{
margin-bottom:10px;
}
.contact-form input, .contact-form textarea {
width: 100%;
padding: 14px 20px;
margin-bottom: 16px;
border: 1px solid #E2D6CA;
border-radius: 32px;
font-family: inherit;
background: var(--cream-warm);
}
.contact-form input:focus, .contact-form textarea:focus {
border-color: var(--emerald);
outline: none;
box-shadow: 0 0 0 3px var(--emerald-glow);
}
.contact-form button {
width: 100%;
justify-content: center;
}
.form-note {
font-size: 0.8rem;
margin-top: 12px;
color: #6E655B;
}

/* Футер */
footer {
background: #EADBCF;
text-align: center;
padding: 40px 20px;
margin-top: 20px;
color: var(--dark-wood);
}
.footer-social a {
color: var(--brown-wood);
font-size: 24px;
margin: 0 12px;
transition: 0.2s;
}
.footer-social a:hover {
color: var(--emerald);
}
footer p {
margin-top: 20px;
}
.footer-warning {
font-size: 0.75rem;
}

/* Модальное окно */
.acf-modal {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.6);
backdrop-filter: blur(4px);
z-index: 1000;
justify-content: center;
align-items: center;
}
.modal-content {
background: white;
border-radius: 40px;
max-width: 500px;
width: 90%;
padding: 28px;
position: relative;
animation: fadeIn 0.2s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
.close-modal {
position: absolute;
right: 20px;
top: 12px;
font-size: 28px;
cursor: pointer;
color: var(--dark-wood);
}
.close-modal:hover {
color: var(--emerald);
}
.procedure-list {
list-style: none;
padding: 0;
margin: 20px 0;
}
.procedure-list li {
background: #f8f2ea;
margin: 12px 0;
padding: 12px 16px;
border-radius: 28px;
flex-wrap: wrap;
}
.procedure-item {
margin-bottom: 16px;
background: #f9f4ee;
border-radius: 28px;
padding: 12px 16px;
transition: background 0.2s;
}
.procedure-item:hover {
background: #f3e9df;
}
.proc-header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 10px;
}
.proc-desc {
margin-top: 12px;
font-size: 0.85rem;
color: #4A3728;
line-height: 1.4;
background: rgba(255,255,240,0.8);
padding: 10px;
border-radius: 20px;
}
.book-btn {
width: 100%;
justify-content: center;
}
/* ========== СТРАНИЦА УСЛУГИ (single-service) ========== */
.single-service {
padding: 40px 0 80px;
padding-bottom:20px;
}
.service-article {
margin: 0 auto;
background: #fff;
border-radius: 48px;
padding: 20px 48px;
box-shadow: var(--shadow-md, 0 20px 35px -12px rgba(0,0,0,0.1));
}
.service-header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
margin-bottom: 24px;
}
.service-header h1 {
margin: 0;
font-size: 2.8rem;
font-family: 'Playfair Display', serif;
color: var(--brown-wood, #8B5A2B);
}
.btn-back {
background: transparent;
border: 1px solid var(--emerald, #0F6B4A);
color: var(--emerald, #0F6B4A);
padding: 8px 20px;
border-radius: 40px;
text-decoration: none;
font-weight: 500;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}
.btn-back:hover {
background: var(--emerald, #0F6B4A);
color: white;
transform: translateX(-3px);
}
.btn-back i {
font-size: 0.9rem;
}
.service-meta {
display: flex;
justify-content: center;
gap: 32px;
margin-bottom: 40px;
flex-wrap: wrap;
background: var(--emerald-glow, rgba(15,107,74,0.08));
padding: 12px 24px;
border-radius: 60px;
width: fit-content;
margin-left: auto;
margin-right: auto;
}
.service-meta span {
font-size: 1rem;
font-weight: 500;
color: var(--dark-wood, #4A3728);
}
/* Галерея Swiper */
.swiper-gallery {
position: sticky;
top: 100px;
}
.main-swiper {
border-radius: 24px;
overflow: hidden;
margin-bottom: 16px;
box-shadow: var(--shadow-md);
}
.main-swiper .swiper-slide img {
width: 100%;
height: 400px;
object-fit:cover;
display: block;
}
.main-swiper .swiper-button-next,
.main-swiper .swiper-button-prev {
color: white;
background: rgba(0,0,0,0.4);
width: 40px;
height: 40px;
border-radius: 50%;
}
.main-swiper .swiper-button-next:after,
.main-swiper .swiper-button-prev:after {
font-size: 18px;
}
.main-swiper .swiper-pagination-bullet {
background: white;
opacity: 0.7;
}
.main-swiper .swiper-pagination-bullet-active {
background: var(--emerald, #0F6B4A);
}
.thumbs-swiper {
width: 100%;
padding: 0 10px;
}
.thumbs-swiper .swiper-slide {
width: 80px;
opacity: 0.5;
cursor: pointer;
transition: opacity 0.3s;
border-radius: 16px;
overflow: hidden;
border: 2px solid transparent;
}
.thumbs-swiper .swiper-slide-thumb-active {
opacity: 1;
border-color: var(--emerald, #0F6B4A);
}
.thumbs-swiper .swiper-slide img {
width: 100%;
height: 100px;
display: block;
object-fit:cover;
border-radius: 14px;
}
/* Видео-блок */
.service-video-carousel {
margin: 48px 0 32px;
}
.service-video-carousel .video-header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin-bottom: 24px;
}
.service-video-carousel .video-header .section-subtitle {
margin-bottom: 0;
color:var(--brown-wood, #8B5A2B);
font-size:1.6rem;
}
.service-video-carousel .video-nav {
display: flex;
gap: 12px;
}
.service-video-carousel .video-nav div {
width: 48px;
height: 48px;
background: var(--emerald, #0F6B4A);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
color: white;
font-size: 20px;
}
.service-video-carousel .video-nav div:hover {
background: var(--brown-wood, #8B5A2B);
transform: scale(1.05);
}
.service-video-carousel .video-swiper .swiper-button-next,
.service-video-carousel .video-swiper .swiper-button-prev {
display: none;
}
.service-video-carousel .video-swiper {
border-radius: 28px;
overflow: hidden;
padding-bottom: 40px;
}
.service-video-carousel .video-swiper .swiper-slide {
background: #000;
border-radius: 24px;
overflow: hidden;
}
.service-video-carousel .video-wrapper {
position: relative;
padding-bottom: 56.25%;
height: 400px;
}
.service-video-carousel .video-wrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.service-video-carousel .video-swiper .swiper-pagination-bullet {
background: var(--emerald, #0F6B4A);
opacity: 0.5;
}
.service-video-carousel .video-swiper .swiper-pagination-bullet-active {
opacity: 1;
}
/* Полное описание */
.service-description {
font-size: 1.05rem;
line-height: 1.65;
color: var(--text-dark, #2C2418);
}
.service-description p {
margin-bottom: 1.2em;
}
/* Кнопки записи */
.service-booking {
display: flex;
justify-content: center;
gap: 20px;
margin-top: 40px;
flex-wrap: wrap;
}
.service-booking .btn-primary,
.service-booking .btn-outline {
padding: 14px 32px;
font-size: 1rem;
}
/* === Правила и условия === */
.page-rules, .page-booking-terms {
max-width: 1280px;
margin: 0 auto;
padding: 60px 24px;
}
.page-header {
text-align: center;
margin-bottom: 48px;
}
.page-header h1 {
font-size: 2.8rem;
color: var(--brown-wood, #8B5A2B);
margin-bottom: 16px;
}
.page-subtitle {
font-size: 1.2rem;
color: var(--text-muted, #6E5F4E);
font-style: italic;
}
.rules-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 32px;
margin-bottom: 48px;
}
.rules-card, .terms-block {
background: white;
border-radius: 32px;
padding: 28px;
box-shadow: var(--shadow-sm);
transition: 0.3s;
}
.rules-card:hover, .terms-block:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-md);
}
.rules-card i, .terms-block i {
font-size: 36px;
color: var(--emerald, #0F6B4A);
margin-bottom: 20px;
display: inline-block;
}
.rules-card h3, .terms-block h3 {
font-size: 1.5rem;
margin-bottom: 16px;
color: var(--brown-wood, #8B5A2B);
}
.rules-card ul, .terms-block ul {
padding-left: 20px;
margin: 0;
}
.rules-card li, .terms-block li {
margin-bottom: 10px;
line-height: 1.5;
}
.rules-notice {
background: var(--emerald-glow, rgba(15,107,74,0.1));
border-left: 4px solid var(--terracotta, #C95D2E);
border-radius: 24px;
padding: 20px 28px;
display: flex;
gap: 16px;
align-items: center;
}
.rules-notice i {
font-size: 28px;
color: var(--terracotta);
}
.rules-notice p {
margin: 0;
font-weight: 500;
}
.terms-block {
display: flex;
gap: 24px;
margin-bottom: 24px;
}
.terms-block i {
flex-shrink: 0;
margin-bottom: 0;
}
.terms-highlight {
background: #FDF7F0;
border-radius: 28px;
padding: 24px;
text-align: center;
margin: 32px 0;
border: 1px solid var(--emerald);
}
.terms-highlight i {
font-size: 32px;
color: var(--emerald);
margin-bottom: 12px;
}
.terms-highlight p {
font-size: 1.1rem;
margin: 0;
}
.page-footer-nav {
display: flex;
gap: 24px;
justify-content: center;
margin-top: 48px;
flex-wrap: wrap;
}
.footer-links {
margin: 20px 0;
display: flex;
justify-content: center;
gap: 24px;
flex-wrap: wrap;
}
.footer-links a {
color: var(--brown-wood);
text-decoration: none;
font-size: 0.9rem;
}
.footer-links a:hover {
color: var(--emerald);
text-decoration: underline;
}
/* === Похожие услуги === */
.related-services {
margin: 48px 0 32px;
padding: 24px 0;
border-top: 1px solid #efe3d8;
}
.related-title {
text-align: center;
font-size: 1.6rem;
margin-bottom: 24px;
color: var(--brown-wood, #8B5A2B);
}
.related-grid {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.related-item {
display: flex;
flex-direction: column;
align-items: center;
background: white;
border-radius: 32px;
padding: 20px 28px;
text-decoration: none;
color: var(--dark-wood);
transition: all 0.3s;
border: 1px solid #efe3d8;
min-width: 160px;
}
.related-item img {
height:30px;
margin-bottom:15px;
}
.related-item span {
font-weight: 500;
text-align: center;
}
.related-item:hover {
transform: translateY(-5px);
box-shadow: var(--shadow-md);
border-color: var(--emerald);
}
/* === FAQ (аккордеон) === */
.service-faq {
margin: 40px 0 32px;
padding: 28px 32px;
background: #FCF9F5;
border-radius: 36px;
}
.service-faq h3 {
font-size: 1.6rem;
margin-bottom: 24px;
color: var(--brown-wood);
text-align: center;
}
.faq-list {
display: flex;
flex-direction: column;
gap: 16px;
}
.faq-item{
background: white;
border-radius: 24px;
padding: 20px;
transition: 0.2s;
border: 1px solid #e8dfd4;
}
.faq-item summary{
list-style: none;
display: flex;
align-items: center;
gap: 12px;
cursor: pointer;
position: relative;
}
.faq-item summary::-webkit-details-marker {
display: none;
}
.faq-item summary::marker{
display: none;
}
.faq-toggle {
margin-left: auto;
transition: transform 0.3s ease;
}
.faq-item[open] .faq-toggle i {
transform: rotate(180deg);
}
.faq-item summary > i:first-child {
color: var(--emerald, #0F6B4A);
font-size: 1.3rem;
width: 28px;
}
.faq-answer {
padding: 6px 0 0px 28px;
color: #4a3728;
line-height: 1.5;
border-top: 1px solid #f0e6da;
margin-top: 4px;
}
@media (max-width: 860px) {
.hero-content h1 { font-size: 2.5rem; }
.header-inner { flex-direction: column; }
.main-nav ul { gap: 20px; }
}
@media (max-width: 768px) {
.reviews-header {
flex-direction: column;
gap: 16px;
align-items: stretch;
text-align: center;
margin:0;
margin-bottom:10px;
}
.reviews-nav {
justify-content: center;
}
.play-btn {
width: 60px;
height: 60px;
}
.play-btn i {
font-size: 24px;
}
.video-caption {
font-size: 0.9rem;
}
.service-article {
padding: 28px;
}
.service-header h1 {
font-size: 2rem;
}
.service-meta {
gap: 16px;
flex-direction: column;
align-items: center;
text-align: center;
border-radius: 40px;
}
.service-benefits ul {
grid-template-columns: 1fr;
}
.service-booking {
flex-direction: column;
align-items: stretch;
}
.service-booking .btn-primary,
.service-booking .btn-outline {
text-align: center;
justify-content: center;
}
.service-header {
flex-direction: column;
align-items: flex-start;
}
.page-header h1 { font-size: 2rem; }
.rules-grid { gap: 20px; }
.terms-block { flex-direction: column; text-align: center; }
.terms-block i { margin-bottom: 16px; }
.service-faq { padding: 20px; }
.faq-item summary { font-size: 1rem; }
.video-nav div {
width: 40px;
height: 40px;
font-size: 16px;
}
}
@media (max-width: 640px) {
.swiper-button-next,
.swiper-button-prev {
display: none;
}
.related-item { padding: 16px 20px; min-width: 130px; }
}