@font-face {
    font-family: 'Giga Sans';
    src: url('../astra/assets/fonts/GigaSansSemiBold.woff2') format('woff2'),
         url('../astra/assets/fonts/GigaSansSemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'brunch moment regular';
    src: url('../astra/assets/fonts/brunch-moment-regular.woff2') format('woff2'),
         url('../astra/assets/fonts/brunch-moment-regular.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Giga Sans Medium';
    src: url('../astra/assets/fonts/GigaSansMedium.woff2') format('woff2'),
         url('../astra/assets/fonts/GigaSansMedium.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DisruptorsScript-Regular';
    src: url('../astra/assets/fonts/DisruptorsScript-Regular.woff2') format('woff2'),
         url('../astra/assets/fonts/DisruptorsScript-Regular.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

/* Контейнер шапки (на весь экран) */
.site-header {
    width: 100%;
    background-color: #e6e55c;
    background: url('/wp-content/uploads/2026/07/imgonline-com-ua-Resize-UmB139wmdovy7MQ4.png') center/cover no-repeat;
    padding-bottom: 15px;
}

/* Ограничивающий контейнер и флекс-ряд */
.header-container {
    max-width: 1200px; /* или ширина вашего сайта */
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Блок логотипа */
.header-logo a {
    display: block;
    font-family: 'Giga Sans';
}

.header-logo img {
    display: block;
    max-height: 80px; /* регулируйте под высоту картинки */
    width: auto;
    margin-top: 24px;
}

/* Главная навигация */
.menu-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 30px; /* отступы между пунктами меню */
}

.menu-item a {
    text-decoration: none;
    display: block;
    font-family: 'Giga Sans';
    color: #12775D;
    font-size: 18px;
    text-transform: uppercase;
}
.menu-item a:hover {
    color: #fff;
}
/* Переключатель языка */
.lang-switcher {
    position: relative;
}

.lang-current {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
    box-shadow: none;
    color: #12775D;
    font-size: 18px;
}

/**/
/**/
/* Главная секция */
.hero-section {
    width: 100%;
    min-height: 930px;
    background-color: #e6e55c; /* желтый фон */
    padding: 10px 0 60px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    overflow: hidden;
    background: url('/wp-content/uploads/2026/07/imgonline-com-ua-Resize-UmB139wmdovy7MQ4.png') center/cover no-repeat;
   
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
/*     padding: 0 15px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Заголовок / Логотип */
.hero-title-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 8rem;
    line-height: 0.9;
    margin: 0;
    color: #0d7a5f; /* зеленый цвет бренда */
    font-weight: 900;
}

/* Галерея из трех блюд */
.hero-dishes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    margin-bottom: 40px;
    margin-top: -100px;
}

.dish-item {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
}
.dish-item-1 {
    left: -7%;
    position: absolute;
}
.dish-item-3 {
    right: -7%;
    position: absolute;
}
.dish-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Центральное блюдо (пицца) чуть крупнее */
.dish-main img {
    transform: scale(1.1);
}

/* Навигационные кнопки внизу */
.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-pill {
    display: inline-block;
    padding: 0px 25px;
    padding-top: 5px;
    background-color: #ffffff;
    border: 1px solid #12775D;
    border-radius: 30px;
    color: #12775D;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 28px;
    width: 260px;
    text-align: center;
    font-family: 'brunch moment regular';
}

/* Розовая кнопка "OSLAVY" */
.btn-pill.btn-pink {
    background-color: #E69298;
    border-color: #fff;
    color: #ffffff;
    display: inline-grid;
    place-items: center;
}

/* Эффект лёгкого наклона кнопок как на макете */
.hero-buttons .btn-pill:nth-child(1) { 
    transform: rotate(-5deg);
    margin-right: -60px;
    z-index: 5; 
}
.hero-buttons .btn-pill:nth-child(1):hover {
    background: #12775D;
    color: #fff;
}
.hero-buttons .btn-pill:nth-child(2) { 
    transform: translateY(8px);
    color: #263E8F; 
    margin-right: -60px;
}
.hero-buttons .btn-pill:nth-child(2):hover {  
    background-color: #263E8F; 
    color: #fff;
}
.hero-buttons .btn-pill:nth-child(3) { 
    transform: rotate(5deg); 
    margin-right: -60px;
}
.hero-buttons .btn-pill:nth-child(3):hover {
    background: #12775D;
    color: #fff;
}
.hero-buttons .btn-pill:nth-child(4) { 
    transform: rotate(-6deg); 
}
.hero-buttons .btn-pill:nth-child(4):hover { 
    background-color: #fff;
    color: #E69298;
}

/**/
/* Основная секция */
.about-section {
    width: 100%;
    padding: 150px 0;
}

/* Контейнер из двух колонок */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 50px; /* Расстояние между текстом и картинкой */
}

/* Левая и правая колонки равной ширины */
.about-content,
.about-media {
    flex: 1;
}

/* Обертка заголовка для позиционирования вилки */
.about-header {
    position: relative;
    margin-bottom: 60px;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    width: 23px!important;
    height: 23px!important;
   /* Делаем фон полностью прозрачным */
   background: transparent!important;
    
   /* Задаем цвет и толщину границы */
   border: 1px solid #F4E957!important;
   
   /* Ставим 1, чтобы граница была 100% четкой и не тускнела */
   opacity: 1!important;
}
.swiper-pagination-clickable .swiper-pagination-bullet-active {
    opacity: 1!important;
    background: #F4E957!important;
}  
 
.swiper-pagination-bullet {
    border: 1px solid #F4E957!important;
}
/* Заголовок */
.about-title {
    margin: 0;
    line-height: 1.1;
    font-family: 'brunch moment regular';
    color: #263E8F;
    font-size: 66px;
}

/* Декоративная картинка (паста на вилке) */
.about-deco-img {
    position: absolute;
    right: -75px;
    top: 30%;
    transform: translateY(-50%);
    max-width: 230px; /* Подстройте под размер картинки */
    height: auto;
    pointer-events: none;
    z-index: 1;
}

/* Абзацы текста */
.about-text {
    width: 468px;
}
.about-text p {
    margin: 0 0 20px 0;
    line-height: 140%;
    font-family: 'Giga Sans Medium';
    color: #000;
    text-align: justify;
}

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

/* Правая фотография */
.about-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.about-section {
    position: relative;
    width: 100%;
    overflow: hidden; /* Скрывает вылезающую за экран часть, если нужно */
    padding: 80px 0;
    background: #FEFBF4;
}

/* Контейнер задает сетку, но разрешает элементам выходить за рамки */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Левая колонка остаётся строго в рамках ширины контейнера */
.about-content {
    flex: 1;
    max-width: 50%; /* Занимает ровно половину контейнера */
}

/* Правая колонка растягивается и прижимается к правому краю экрана */
.about-media {
    flex: 1;
    width: calc(50% + (100vw - 100%) / 2);
    margin-right: calc((100% - 100vw) / 2);
    display: flex;
    justify-content: flex-end;
    z-index: 5;
}

.about-media img {
    width: 100%;
    height: 100%;
    max-height: 630px; /* Регулируйте высоту изображения */
    object-fit: cover; 
}


/**/
/* Основная секция */
.space-section {
    width: 100%;
    padding: 0px 0;
}

/* Контейнер из двух колонок */
.space-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 0px;
}

/* Левая и правая колонки */
.space-slider-col,
.space-content {
    flex: 1;
}
.space-section-1 .space-content {
    max-width: 47%; 
    padding-left: 65px;
}
.space-section-2 .space-content {
    max-width: 47%;
    padding-right: 65px; 
}
.space-section-3 .space-content {
    max-width: 47%;
    padding-left: 65px; 
}
.space-section-4 .space-content {
    max-width: 47%;
    padding-right: 65px; 
}
.space-section-5 .space-content {
    max-width: 47%;
    padding-left: 65px; 
}
/* Настройки Swiper */
.space-swiper {
    width: 100%;
    border-radius: 0px; /* закругление углов при необходимости */
    position: relative;
}

.space-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block; 

}
.swiper-slide img { 
	width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;

}
/* Ограничиваем ширину контейнера слайдера */
.space-slider-col {
    width: 100%;
    /* max-width: 50%;  */
    overflow: hidden; /* Скрывает вылезающие слайды */
}

.space-swiper {
    width: 100%;
    height: 100%;
    border-radius: 0px; /* Закругление углов как на макете */
}

/* Фиксируем картинку, чтобы она не раздувала слайд */
.space-swiper .swiper-slide img {
    width: 100%;
    height: 400px; /* Задайте фиксированную высоту для одинакового размера всех слайдов */
    object-fit: cover; /* Картинка заполнит область без искажений пропорций */
    display: block;
}
/* Переопределение позиции пагинации Swiper (кружочки поверх слайдов внизу) */
.space-swiper .swiper-pagination {
    bottom: 20px;
}

/* Правая колонка с текстом */
.space-content {
    position: relative; /* нужно для позиционирования лимонов */
}

.space-title {
    margin: 0 0 20px 0; 
    font-family: 'brunch moment regular';
    font-size: 25px;
    text-transform: uppercase;
    font-style: italic;
}
.space-section-1 .space-title,
.space-section-3 .space-title,
.space-section-5 .space-title {
    color: #12775D;
}
.space-section-2 .space-title,
.space-section-4 .space-title,
.space-section-6 .space-title {
    color: #263E8F
}
.space-description p {
    margin: 0 0 20px 0;
    line-height: 1.3;
    font-family: 'Giga Sans Medium';
    color: #000;
    font-weight: 500;
    font-size: 16px;
    text-align: justify;
    width: 500px;
}

 
/* Список с деталями */
.space-details {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    width: 556px;
}

.space-details li {
    margin-bottom: 0px;
    font-family: 'Giga Sans Medium';
    color: #000;
    font-weight: 500;
    line-height: 1.3;
}
.space-details li strong {
    font-family: 'Giga Sans';
}

/* Кнопка */
.btn-reservation {  
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    font-family: 'brunch moment regular';
    font-size: 25px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: inline-grid;
    place-items: center;
    height: 62px;
    width: 232px;
    padding-top: 5px;
}
.btn-reservation-pink {
    background: #ED969C;
    color: #263E8F;
}
.btn-reservation-yelow {
    background: #F4991C;
    color: #12775D;
}
.btn-reservation:hover {
    color: #fff;
}
.btn-reservation-blue {
    background: #263E8F;
    color: #fff;
    border: 1px solid #263E8F;
}
.btn-reservation-blue:hover {
    background-color: #fff;
    color: #263E8F;
}
.btn-reservation-4 {
    background: #F3E957;
    color: #263E8F;
}
.btn-reservation-4:hover {
    background: #263E8F;
    color: #F3E957;
}
/* Декоративный элемент (лимоны) */
.space-deco-img {
    position: absolute;
    right: -21%;
    bottom: -49%;
    max-width: 200px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}
.space-deco-img-2 {
    position: absolute;
    left: 0%;
    bottom: -23%;
    height: 330px;
    pointer-events: none;
    z-index: 9999;
}
.space-deco-img-3 {
    position: absolute;
    right: -17%;
    bottom: -59%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}
.space-deco-img-4 {
    position: absolute;
    left: 35%;
    bottom: 2%;
    max-width: 200px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}
.space-deco-img-5 {
    position: absolute;
    right: 0%;
    bottom: -5%;
    height: auto;
    pointer-events: none;
    z-index: 1;
}
.space-section-5 .space-deco-img {
    position: absolute;
    right: -24%;
}
/* Общие настройки секции */
.space-section {
    position: relative;
    width: 100%;
    overflow: visible; /* Скрывает полосу прокрутки */
    padding: 0px;
    background: #FEFBF4;
}

.space-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px;
}

/* 1. ОБЫЧНАЯ СЕКЦИЯ: Слайдер СЛЕВА прижат к краю экрана */
.space-section:not(.space-section-reversed) .space-slider-col {
    flex: 1;
    /* Растягиваем блок влево до самого края экрана */
    width: calc(50% + (100vw - 100%) / 2);
    margin-left: calc((100% - 100vw) / 2);
}

.space-section:not(.space-section-reversed) .space-content {
    flex: 1;
    max-width: 50%; /* Текст остаётся в правой половине контейнера */
}

/* Закругляем только правые углы у слайдера слева */
.space-section:not(.space-section-reversed) .space-swiper {
    border-radius: 0 20px 20px 0;
}


/* 2. РЕВЕРСИВНАЯ СЕКЦИЯ: Слайдер СПРАВА прижат к краю экрана */
.space-section-reversed .space-slider-col {
    flex: 1;
    /* Растягиваем блок вправо до самого края экрана */
    width: calc(50% + (100vw - 100%) / 2);
    margin-right: calc((100% - 100vw) / 2);
}

.space-section-reversed .space-content {
    flex: 1;
    max-width: 50%; /* Текст остаётся в левой половине контейнера */
}

/* Закругляем только левые углы у слайдера справа */
.space-section-reversed .space-swiper {
    border-radius: 20px 0 0 20px;
}


/* Картинкам внутри слайдов задаём заполнение по высоте */
.space-swiper .swiper-slide img {
    width: 100%;
    height: 450px; /* Высота слайдера */
    object-fit: cover;
    display: block;
}



/**/
/* Основная секция */
.kids-room-section {
    position: relative;
    width: 100%;
    min-height: 770px; /* минимальная высота секции */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Обертка для фонового изображения */
.kids-room-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.kids-room-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Контейнер по центру */
.kids-room-container {
    position: relative;
    z-index: 2; /* карточка поверх фона */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 15px;
    display: flex;
    justify-content: center;
}

/* Белая карточка с контентом */
.kids-room-card {
    max-width: 650px;
    background-color: #ffffff;
    padding: 40px 50px;
    border-radius: 24px; /* закругление углов */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* мягкая тень */
}

/* Заголовок карточки */
.kids-room-title {
    margin: 0 0 20px 0;
    font-family: 'brunch moment regular';
    font-size: 25px;
    color: #12775D;
    font-style: italic;
}

/* Текст внутри карточки */
.kids-room-text p {
    margin: 0;
    line-height: 1.6;
    font-family: 'Giga Sans Medium';
    color: #000;
    text-align: justify;
    font-size: 16px;
}


/**/
/* ==========================================
   1. СЕКЦИЯ MENU
   ========================================== */
.menu-section {
    position: relative;
    padding: 60px 0;
    padding-top: 150px;
    width: 100%;
    background: url('/wp-content/uploads/2026/07/Group-561-scaled.png') center/cover no-repeat;   
}

/* Графическая надпись над меню */
.menu-deco-text {
    position: absolute;
    top: 20px;
    right: 15%;
    font-style: italic;
    font-size: 1.2rem;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
    z-index: 5;
    position: relative;
}
.menu-section-img {
    position: absolute;
    z-index: 1;
    width: 300px;
    margin-top: -145px;
}
.menu-section-header-1-img {
    position: absolute;
    top: -3%;
    right: 27%;
}
.menu-section-header-2-img {
    margin-top: -16%;
}
.menu-section-header-2-text {
    z-index: 999;
    font-family: 'DisruptorsScript-Regular';
    font-size: 84px;
    position: absolute;
    color: #F4E957;
    top: 6%;
    transform: rotate(-8deg);
    line-height: 77%;
    right: 4%;
    margin-bottom: 0;
}
.menu-section-footer-img {
    margin-left: 27%;
}
.menu-section-footer-left-img { 
    position: absolute;
    right: 0;
    bottom: 15%;
}
.footer__block_social_icon {
	display: flex;
	gap: 16px;
}
.menu-section-title {
    margin-bottom: 30px;
    font-style: italic;
    font-size: 40px;
    font-family: 'brunch moment regular';
    color: #F3E957;
    line-height: 100%;
}

/* Сетка из 3-х карточек */
.menu-cards-grid {
    display: flex;
    gap: 21px;
    justify-content: center;
}

/* Карточка меню */
.menu-card {
    flex: 1;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.menu-card-image {
    width: 100%;
    border-radius: 16px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Разные фоны для картинок блюд */
.menu-card-image.orange-bg { background-color: #f39c12; }
.menu-card-image.blue-bg   { background-color: #1f3a8a; }
.menu-card-image.green-bg  { background-color: #0d7a5f; }

.menu-card-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%; /* Круглое блюдо */
    object-fit: cover;
    width: 209px;
}

.menu-card-body {
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    flex-grow: 1;
    justify-content: space-between;
	max-width: 100%;
}

.menu-card-title {
    margin: 0;
    font-family: 'brunch moment regular';
    font-size: 30px;
    text-align: left;
    color: #000;
}

.menu-card-text {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 140%;
    text-align: left;
    font-family: 'Giga Sans Medium';
    color: #000;
    width: 315px;
}

.menu-card-body .btn {
    margin-top: auto;
    padding: 0px 30px; 
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    font-family: 'brunch moment regular';
    width: 142px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 48px;
    line-height: 1;
    padding-top: 4px;
    font-size: 25px;
}

.btn-orange { background-color: #f39c12; }
.btn-blue   { background-color: #1f3a8a; }
.btn-green  { background-color: #0d7a5f; }
.menu-card-body .btn:hover {
    background: #ED969C;
}

/* ==========================================
   2. ПРОМО-БАННЕР ("VAŠE MIESTO...")
   ========================================== */
.promo-banner-section { 
    padding-top: 150px;
    padding-bottom: 150px;
    width: 100%;
    overflow: hidden;
    background: #12775D;
    position: relative;
    overflow: visible;
}

.promo-banner-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.promo-banner-container svg{
    position: absolute;
    right: 22%;
    bottom: -16%;
}
.promo-banner-header-img { 
    position: absolute;
    margin-top: -40%; 
}
.promo-banner-footer-img {
    position: absolute;
    bottom: -40%;
    right: 0;
    z-index: 9;
}

/* Поляроиды (фотографии с наклоном) */
.promo-polaroid {
    width: 260px;
    position: relative;
    top: 23%;
}

.polaroid-left {
    position: absolute;
}

.promo-banner-header-text {
    z-index: 999;
    font-family: 'DisruptorsScript-Regular';
    font-size: 84px;
    position: absolute;
    color: #F4E957;
    top: -14%;
    transform: rotate(-8deg);
    line-height: 77%;
    left: 14%;
    text-align: center;
}
.polaroid-right {
    margin-top: -21%;
    right: 0%;
    width: 450px;
    position: absolute;
}

.promo-polaroid img {
    width: auto;
    height: auto;
    display: block;
    z-index: 2;
    position: relative;
}
.polaroid-left .polaroid-left-1 {
    position: absolute;  
    z-index: 1;
    max-width: 230px;
}
.polaroid-left .polaroid-left-2 {
    margin-left: 50%;
    margin-top: 50px;
    max-width: 300px;
}
/* Центральный блок */
.promo-center-content {
    text-align: center;
    max-width: 560px;
    z-index: 2;
    margin: 0 auto;
}

.promo-subtitle {
    display: block;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.promo-title {
    font-size: 82px;
    line-height: 1.1;
    margin: 0 0 25px 0;
    font-family: 'brunch moment regular';
    color: #263E8F;
    font-style: italic;
}

.btn-white-pill {
    display: inline-block;
    background-color: #ffffff;
    padding: 5px 35px;
    padding-top: 7px;
    border-radius: 30px;
    text-decoration: none; 
    font-family: 'brunch moment regular';
    color: #263E8F;
    font-size: 25px;
    margin-top: 50px;
}

/* Карточка отзыва поверх правого поляроида */
.promo-review-card {
    position: absolute;
    bottom: -20px;
    right: -30px;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    max-width: 200px;
    font-size: 0.8rem;
    transform: rotate(-4deg);
    z-index: 9;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.review-rating {
    color: #f1c40f;
}

.review-text {
    margin: 0;
    line-height: 1.3;
}

/* Ссылка на отзывы */
.reviews-link {
    position: absolute;  
    bottom: -120px;
    right: 7%;
    color: inherit;
    font-size: 16px;
    text-decoration-style: solid;
    z-index: 99;
    color: #fff;
    text-decoration-line: underline;
}
.reviews-link:hover{
    color: #f39c12;
}
/**/
/**/
/* Основная секция */
.map_bg_1 {
    height: 410px;
    position: absolute;
    object-fit: cover;
    bottom: -15%;
    left: 0%;
}
.contact-map-section {
    width: 100%;
    padding: 150px 0;
    background: #FEFBF4;
}

.contact-map-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
    display: flex;
    gap: 0px;
    align-items: stretch;
    height: 480px;
}

/* Колонки по 50% */
.contact-card-col,
.map-col {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Левая колонка: карточка поверх фона */
.contact-card-col {
    background: url('/wp-content/uploads/2026/07/eea595fed80dcecdc242ddc0cd49c0e53c1f58741-scaled.jpg') center/cover no-repeat;
    padding: 40px;
    border-radius: 0px;
    position: relative;
    justify-content: center;
    max-width: 50%;
}

/* Карточка контактов (стиль почтовой марки / карточки) */
.contact-card { 
    padding: 30px 25px 40px 25px; 
    background-image: url('/wp-content/uploads/2026/07/Group1.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* Булавка в углу */
.card-pin {
    position: absolute;
    top: 4%;
    right: 3%;
    font-size: 1.5rem;
    transform: rotate(15deg);
}

.contact-title {
    margin: 0 0 20px 0;
    font-style: italic;
    color: #263E8F;
    font-family: 'brunch moment regular';
    font-size: 40px;
}

/* Список информации */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.contact-info-list li {
    display: flex; 
    margin-bottom: 0px;
    font-size: 16px;
    font-family: 'Giga Sans';
    color: #000;
    line-height: 140%;
}

.info-label {
    font-weight: 500;
    width: 270px;
}

.info-value {
    color: inherit;
    text-decoration: none;
    gap: 25px;
}
.info-value a {
    color: #000;
}

/* Кнопки действий */
.contact-actions {
    display: flex;
    gap: 25px;
}

.contact-actions .btn {
    flex: 1;
    padding: 8px 0px;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.btn-yellow {
    background-color: #f39c12;
}
.btn-yellow:hover {
    background-color: #1f3a8a;
}

.btn-dark-blue {
    background-color: #1f3a8a;
}
.btn-dark-blue:hover {
    background-color: #f39c12;
}
/* Правая колонка: карта */
.map-wrapper {
    flex-grow: 1;
    min-height: 300px;
    border-radius: 0px;
    overflow: hidden; 
    width: 100%;
}
.map-wrapper-footer{
    position: absolute;
    width: 600px;
    bottom: 20%;
    right: 2%;
}

.map-address {
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.map-address p {
    margin: 0;
}


/**/
/**/
/* Подвал */
.site-footer {
    width: 100%;
    padding: 0px; /* отступ для адаптива */
}

/* Синий блок с закругленными верхними углами */
.footer-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #263E8F; /* синий цвет плашки */
    border-radius: 24px 24px 0 0; /* закругление сверху */
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #ffffff;
}
.footer-container .footer-legal {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* Логотип */
.footer-logo img {
    max-height: 92px;
    width: auto;
    display: block;
}

/* Меню */
.footer-nav {
    display: flex;
    gap: 42px;
}

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

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Giga Sans';
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Юридическая информация */
.footer-legal p {
    margin: 0 0 6px 0; 
    font-weight: 500;
    font-size: 16px;
    font-family: 'Giga Sans';
}

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

/* Кнопки справа */
.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-footer {
    display: inline-block;
    padding: 0px 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    color: #ffffff;
    text-decoration: none;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
    min-width: 232px;
	height: 45px;
  	line-height: 44px;
}
.btn-footer:hover {
    background-color: #263E8F;
    color: #fff;
}

/**/
.italy-map-section {
    position: relative;
    padding-bottom: 150px;
    padding-top: 50px;
    background: #FEFBF4;
}

.map-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}
.map-wrapper-text {
    z-index: 999;
    font-family: 'DisruptorsScript-Regular';
    font-size: 84px;
    position: absolute;
    color: #F49A1D;
    top: 6%;
    transform: rotate(-2deg);
    line-height: 77%;
    right: 1%;
    margin-bottom: 0;
    text-align: center;
    width: 298px;
}
.map-wrapper .map-bg-img {
    max-width: 600px;
    position: relative; 
    margin: 0 auto;
    left: -10%;
}

.map-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 1. Родительский контейнер для одной точки и её текста */
.map-point {
    position: absolute;
    z-index: 5;
}

/* 2. Сама синяя точка */
.city-pin {
    display: block;
    width: 17px;
    height: 17px;
    background-color: #1f3a8a;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    
    /* Начальная анимация точки */
    opacity: 0;
    transform: scale(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.card-pin svg{ 
    height: 89px; 
    margin-top: -20px;
    margin-right: -38px; 
}
/* 4. ТЕКСТ: Отвязываем от точки и ставим в нужную часть экрана */
.city-tooltip.tooltip-fixed-left {
    position: fixed; /* или position: absolute относительно .italy-map-section */
    position: absolute; 
    
    /* Указываем точные координаты, где должен стоять текст на экране */
    top: 10%;           /* Расстояние от верха карты/экрана */
    left: 5%;           /* Расстояние от левого края */
    
    width: 300px;       /* Фиксированная ширина карточки с текстом */
    z-index: 10;
}

/* 3. Блок с текстом (позиционируется абсолютно относительно точки) */
.city-tooltip {
    position: absolute;
    width: 200px; /* фиксированная ширина текста */
    
    /* Начальная анимация текста */
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
}

/* ----------------------------------------------------
   КЛАССЫ ДЛЯ СДВИГА ТЕКСТА ОТНОСИТЕЛЬНО ТОЧКИ
   ---------------------------------------------------- */

/* Текст СПРАВА от точки */
.city-tooltip.text-right {
    top: 50%;
    left: 20px;
    transform: translateY(-110%) translateX(15px) !important;
}

/* Текст СЛЕВА от точки */
.city-tooltip.text-left {
    top: 50%; 
    right: 100px;
    text-align: right;
    transform: translateY(-50%) translateX(-15px);
}

/* Текст СВЕРХУ от точки */
.city-tooltip.text-top {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
}

/* Текст СНИЗУ от точки */
.city-tooltip.text-bottom {
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
}
.map-point .city-tooltip-marzano{
    top: -200%; 
    right: 100px;
    text-align: right;
    transform: translateY(-50%) translateX(-15px);
}

/* Оформление бейджа и текста */
.city-badge {
    display: inline-block;
    background-color: #263E8F;
    color: #ffffff;
    font-size: 25px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 0px;
    margin-bottom: 4px;
    font-family: 'brunch moment regular';
    line-height: 100%;
    padding-top: 3px;
    padding-bottom: 0px;
}

.city-desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    color: #000;
    font-family: 'Giga Sans Medium';
}
/* ====================================================
   ИЗОЛИРОВАННАЯ КАРТА: ТОЧКИ И КАРТОЧКИ
   ==================================================== */
/* Правый край, по центру (Отлично для Рима) */
.map-card-isolated.card-pos-center-right {
    top: 11%;
    right: 50%;
    text-align: left;
    transform: translateX(20px);
    width: 214px;
}
/* Убедимся, что родитель является точкой отсчета */
.map-wrapper {
    position: relative !important;
    overflow: visible;
}

/* 1. ТОЧКА НА КАРТЕ */
.map-point-isolated {
    position: absolute !important;
    z-index: 5;
    width: 0;
    height: 0;
}

/* 2. КАРТОЧКА С ТЕКСТОМ (Отвязана от точки) */
.map-card-isolated {
    position: absolute !important;
    width: 260px;
    z-index: 10;
    pointer-events: none;
    
    /* Начальное состояние для анимации */
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ----------------------------------------------------
   ПОЗИЦИИ КАРТОЧЕК (относительно .map-wrapper)
   ---------------------------------------------------- */

/* Левый нижний угол (для Сицилии) */
.map-card-isolated.card-pos-bottom-left {
    top: 0%;
    left: 9%;
    transform: translateX(-20px);
}
/* Левый край, по центру (Для San Marzano) */
.map-card-isolated.card-pos-center-left {
    top: 30%;
    left: 11%;
    text-align: left;
    transform: translateX(-20px);
    width: 280px;
}
/* Правый нижний угол (Для Neapol) */
.map-card-isolated.card-pos-bottom-right {
    bottom: 0%;
    right: 31%; 
    text-align: left;
    transform: translateX(20px);
}
/* Правый верхний угол (Для Apúlia) */
.map-card-isolated.card-pos-top-right {
    top: 61%;
    right: 21%;
    text-align: left;
    transform: translateX(20px);
    width: 280px;
}
/* Левый верхний угол */
.map-card-isolated.card-pos-top-left {
    top: 20px;
    left: 20px;
    transform: translateX(-20px);
}



 

/* ----------------------------------------------------
   АНИМАЦИЯ ПОЯВЛЕНИЯ ПРИ СКРОЛЛЕ
   ---------------------------------------------------- */

.italy-map-section.is-visible .map-point-isolated .city-pin {
    opacity: 1;
    transform: scale(1);
}

.italy-map-section.is-visible .map-card-isolated {
    opacity: 1;
    transform: translateX(0) translateY(0);
}
/* ----------------------------------------------------
   АНИМАЦИЯ ПОЯВЛЕНИЯ ПРИ СКРОЛЛЕ
   ---------------------------------------------------- */

/* Появление точки */
.italy-map-section.is-visible .city-pin {
    opacity: 1;
    transform: scale(1);
}

/* Появление текста в зависимости от его направления */
.italy-map-section.is-visible .city-tooltip.text-right {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.italy-map-section.is-visible .city-tooltip.text-left {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.italy-map-section.is-visible .city-tooltip.text-top,
.italy-map-section.is-visible .city-tooltip.text-bottom {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Каскадная задержка появлений (stagger) */
.italy-map-section.is-visible .map-point:nth-child(2) .city-pin,
.italy-map-section.is-visible .map-point:nth-child(2) .city-tooltip { transition-delay: 0.1s; }

.italy-map-section.is-visible .map-point:nth-child(3) .city-pin,
.italy-map-section.is-visible .map-point:nth-child(3) .city-tooltip { transition-delay: 0.3s; }

.italy-map-section.is-visible .map-point:nth-child(4) .city-pin,
.italy-map-section.is-visible .map-point:nth-child(4) .city-tooltip { transition-delay: 0.5s; }

.italy-map-section.is-visible .map-point:nth-child(5) .city-pin,
.italy-map-section.is-visible .map-point:nth-child(5) .city-tooltip { transition-delay: 0.7s; }

.italy-map-section.is-visible .map-point:nth-child(6) .city-pin,
.italy-map-section.is-visible .map-point:nth-child(6) .city-tooltip { transition-delay: 0.9s; }

/**/
/* 1. Определение бесконечной анимации вращения */
@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* 2. Анимация для центрального блюда (сохраняем scale(1.1)) */
@keyframes spinSlowMain {
    from {
        transform: scale(1.1) rotate(0deg);
    }
    to {
        transform: scale(1.1) rotate(360deg);
    }
}

/* 3. Применяем вращение к изображениям боковых блюд */
.hero-dishes .dish-item img {
    animation: spinSlow 20s linear infinite;
    /* optional: делает вращение видеокарт/процессора плавным без подёргиваний */
    will-change: transform; 
}

/* 4. Применяем вращение к центральному блюду */
.hero-dishes .dish-main img {
    animation: spinSlowMain 25s linear infinite;
}

/* (Опционально) Пауза при наведении мышкой */
.hero-dishes .dish-item img:hover {
    animation-play-state: paused;
}


.btn-pill { text-transform: uppercase;}
/**/
.lang-switcher {
    position: relative;
    display: inline-block;
  }
  
  /* Кнопка переключателя */
  .lang-switcher__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px 8px;
    font-size: 18px;
    font-weight: 600;
    color: #12775D;
    box-shadow: none;
  }
  .lang-switcher__toggle:hover {
    background-color: transparent!important;
    color: #fff;
  }
  /* Иконка-стрелка */
  .lang-switcher .lang-icon {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
  }
  
  /* Выпадающее меню */
  .lang-switcher__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    background: #ffffff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 6px 0;
    margin-top: 4px;
  
    /* Скрытие меню по умолчанию */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.25s ease;
    z-index: 99;
  }
  
  /* Элементы меню */
  .lang-switcher__item {
    display: block;
    padding: 6px 12px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
  }
  
  .lang-switcher__item:hover {
    background-color: #f5f5f5;
  }
  
  .lang-switcher__item.is-current {
    font-weight: bold;
    color: #0E775D;
  }
  
  /* Показ меню при активном классе или наведении */
  .lang-switcher.is-open .lang-switcher__dropdown,
  .lang-switcher:hover .lang-switcher__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  /* Поворот стрелочки при открытии */
  .lang-switcher.is-open .lang-icon,
  .lang-switcher:hover .lang-icon {
    transform: rotate(180deg);
  }



/**/
/* Основная секция */
.post-page {
    padding: 60px 0;
    width: 100%;
}

/* Контейнер страницы поста */
.post-page .container {
    max-width: 1200px;         /* Оптимальная ширина для чтения длинных текстов */
    width: 100%;
    margin: 0 auto;           /* Центрирование контейнера */
    padding-left: 20px;       /* Защитные отступы по бокам для мобильных */
    padding-right: 20px;
    box-sizing: border-box;
}

/* Стилизация текста и параграфов */
.post-page p {
    font-size: 18px;          /* Комфортный размер шрифта */
    line-height: 1.65;        /* Межстрочный интервал для хорошей читаемости */
    color: #333333;
    margin-top: 0;
    margin-bottom: 24px;      /* Отступ между абзацами */
    word-wrap: break-word;    /* Защита от переполнения при длинных словах */
}

/* Убираем лишний отступ у последнего абзаца */
.post-page p:last-child {
    margin-bottom: 0;
}

/* Адаптив под мобильные устройства */
@media (max-width: 768px) {
    .post-page {
        padding: 30px 0;
    }

    .post-page .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .post-page p {
        font-size: 16px;
        line-height: 1.55;
        margin-bottom: 18px;
    }
}



/**/
.container-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
}
.site-footer {
    background-color: #263E8F;
	border-top-left-radius: 45px;
	border-top-right-radius: 45px;
}
.footer-bottom {
    font-family: 'Giga Sans';
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 25px;
    border-top: 1px solid #fff;
    font-size: 10px;
    color: #fff;
}

.footer-company-info p {
    margin: 0;
    line-height: 1.3;
    font-family: 'Giga Sans Medium';
}

.footer-company-info .company-name {
    font-weight: bold;
    color: #ffffff;
}

.footer-legal-menu {
    display: flex;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-legal-menu a {
    font-family: 'Giga Sans Medium';
    font-size: 10px;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-menu a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/**/

/* По умолчанию на ПК прячем мобильный слайдер */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex; /* или текущее отображение .hero-dishes на ПК */
}

/* На мобильных устройствах (<= 768px) */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
        width: 100%;
    }

    .hero-mobile-swiper {
        width: 100%;
        overflow: hidden;
        padding-bottom: 25px; /* место под пагинацию */
    }

    .hero-mobile-swiper .swiper-slide img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: 12px; /* при необходимости */
    }
}

/* Бесконечное вращение самого изображения */
.hero-mobile-swiper .swiper-slide img {
    animation: spinDish 20s linear infinite;
}

@keyframes spinDish {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


















