
/* Сбрасываем отступы, паддинги и box-sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Убираем стандартные стили для списка */
ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Обнуляем стили ссылок */
a {
    text-decoration: none;
    color: inherit;
}

/*css*/
/* Общие стили */


/* Общие стили */
.main-navigation .menu li {
    display: inline-block;
}
html, body {
    height: 100%;
    padding: 0; /* Убирает внутренние отступы */
    overflow-x: hidden;

}


body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 20px; /* Размер шрифта для основного текста */
    line-height: 1.5; /* Высота строки */
    font-weight: 500;
    color: #333; /* Цвет текста */
}

h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700; /* Толщина шрифта для заголовков */
}

h1 {
    font-size: 36px; /* Размер шрифта для H1 */
}

h2 {
    font-size: 30px; /* Размер шрифта для H2 */
}

h3 {
    font-size: 24px; /* Размер шрифта для H3 */
}


/* Контейнер */
.container {
    /*max-width: 1200px;*/
    margin: 0 auto;
    display: flex;
    flex-direction: column; /* Делаем вертикальное расположение */
    align-items: center;
    padding: 40px 20px;
    overflow: auto !important; /* Вернуть стандартный скролл */
    scroll-behavior: auto !important; /* Отключить плавную прокрутку */
}

/* Хедер */
.site-header {
	
	background: rgba(255, 255, 255, 0.5) url('/wp-content/themes/blankslate/images/bg-header.jpg') no-repeat center center;
    /*background: white;*/
    background-size: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    /*position: fixed;*/
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}



/* Логотип */
.logo {
    width: 250px;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px; 
}

.logo img {
    max-width: 100%;
    max-height: 100%;
}

/* Навигация */
.main-navigation {
    width: 100%;
    text-align: center;
    z-index: 999;
}

/* Меню */
.main-navigation .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px; 
}

/* Пункты меню */
.main-navigation .menu li {
    position: relative;
}

/* Кнопки меню */
.main-navigation .menu a {
    text-decoration: none;
    color: #222;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 10px;
    display: block;
    background: white;
    border-radius: 15px;
    border: 2px solid #e7e6e675;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Тень */
}

/* Полоска над пунктом */
.main-navigation .menu li::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    width: 0;
    height: 5px;
    background: #ff5722;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Анимация при наведении */
.main-navigation .menu a:hover,
.main-navigation .menu .current-menu-item a {
    background: #ff5722;
    color: white;
    /*transform: scale(1.05);*/
}

/* Расширение полоски при наведении */
.main-navigation .menu li:hover::before,
.main-navigation .menu .current-menu-item::before {
    width: 100%;
}

/* Гамбургер-меню */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 40px;
}

.menu-toggle span {
    width: 35px;
    height: 4px;
    background: #ff5722;
    margin: 5px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Анимация кнопки при открытом меню */
.menu-toggle.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Адаптивность */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 9999;
    }
    .logo {
	    width: 200px;
	    height: 200px;
    }

    .main-navigation {
        display: none;
        position: absolute;
        top: 340px; /* Опустил меню ниже логотипа */
        left: 0;
        width: 100%;
        background: white;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }

    .main-navigation.active {
        display: block;
    }

    .main-navigation .menu {
        flex-direction: column;
        gap: 10px;
    }
    .main-navigation .menu ul {
	    display: flex;
	    justify-content: center;
	    flex-direction: column;
	}
    .main-navigation .menu li {
        margin: 2px 0;
    }

    .main-navigation .menu li::before {
        display: none; /* Убираем полоску для мобильных */
    }
}





/* FOOTER */

/* Основной футер */
.site-footer12 {
    background-color: #111111;
    color: white;
    padding: 40px 0;
}

/* Контейнер футера */
.container12 {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Колонки футера */
.footer-column12 {
    flex: 1;
    margin: 10px;
    min-width: 250px;
    padding: 20px;
}

/* Логотип в первой колонке */
.footer-logo12 {
    width: 200px;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

/* Заголовки в колонках */
.footer-column12 h3 {
    font-size: 20px;
    color: #ff6500;
    margin-bottom: 10px;
}

/* Параграфы внутри колонок */
.footer-column12 p {
    font-size: 16px;
    margin-bottom: 5px;
}

/* Нижняя полоска */
.footer-bottom12 {
    background-color: #292929;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
}

/* Текст в нижней полоске */
.footer-bottom12 p {
    color: #ffffff;
    font-size: 16px;
    margin: 0;
}

/* Иконки социальных сетей */
.social-icons12 {
    margin-top: 10px;
}

.social-icon12 {
    font-size: 24px;
    color: #ff6500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icon12:hover {
    color: #ffffff;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .container12 {
        flex-direction: column;
        align-items: center;
    }

    .footer-column12 {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-column12 h3 {
        font-size: 18px;
    }
}

#copyright {
	display: none !important;
}

/* FOOTER */

/* CONTENT MAIN */

.block-main12, .block-main22 {
	
}

/* TITLE */

/* Оформление заголовка */
.entry-title {
    font-family: 'Poppins', sans-serif; 
    font-size: 36px; 
    font-weight: 700; 
    color: #ff9f61; 
    text-align: center; 
    position: relative; 
    margin: 40px 0; 
    padding: 0 20px; 
}

/* Декоративная линия под заголовком */
.entry-title::after {
    content: ''; 
    display: block;
    width: 50px; 
    height: 4px; 
    background-color: #ff6500; 
    margin: 20px auto 0; 
}

/* Добавление теней для заголовка */
.entry-title {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); 
}

/* Анимация заголовка при наведении */
.entry-title:hover {
    transform: translateY(-5px); 
    transition: transform 0.3s ease; 
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .entry-title {
        font-size: 28px; 
    }
}



#container {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 0 !important;
}
.block-main31::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
}
.block-main31-text {
    color: #fff;
}


.advantages112 {
    text-align: center;
    padding: 50px 20px;
    /*background-color: #f8f8f8;*/
}

.advantages112 h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
}

.advantages-container112 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-item112 {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.advantage-item112 i {
    font-size: 40px;
    color: #ff6500;
    margin-bottom: 15px;
}

.advantage-item112 h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.advantage-item112 p {
    font-size: 16px;
    color: #555;
}

/* Анимация при наведении */
.advantage-item112:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 📱 Адаптивность */
@media (max-width: 768px) {
    .advantages-container112 {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
    }
}

@media (max-width: 480px) {
    .advantages-container112 {
        grid-template-columns: 1fr; /* 1 колонка на телефонах */
    }

    .advantages112 h2 {
        font-size: 24px; /* Уменьшаем заголовок */
    }

    .advantage-item112 i {
        font-size: 35px; /* Меньше иконка */
    }

    .advantage-item112 h3 {
        font-size: 18px; /* Меньше заголовок */
    }

    .advantage-item112 p {
        font-size: 14px; /* Читаемый текст */
    }
}


.experience-block112 {
    background: #f4f4f4;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    color: #333;
    margin: 40px auto;
    max-width: 800px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-block112 h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
    color: #444;
}

.experience-block112::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff6500;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: bottom right;
}

.experience-block112:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.experience-block112:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}


.contact-link112 {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-link112 i {
    margin-right: 8px;
    font-size: 22px;
    transition: transform 0.3s ease;
}

.contact-link112:hover {
    color: #ff6500; /* Подсвечиваем текст */
    transform: scale(1.05); /* Легкое увеличение при наведении */
}

.contact-link112:hover i {
    transform: rotate(15deg); /* Поворот иконки при ховере */
}

.address-link112 {    
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin: 5px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

.address-link112 i {
    margin-right: 8px; /* Расстояние между иконкой и текстом */
    font-size: 22px;
    transition: transform 0.3s ease;
}

.address-link112:hover {
    color: #ff6500; /* Подсвечиваем текст на ховере */
    transform: scale(1.05); /* Легкое увеличение при наведении */
}

.address-link112:hover i {
    transform: rotate(15deg); /* Поворот иконки при ховере */
}



/* СТРАНИЦА НАШИ ПРЕЙМУЩЕСТВА */

.services112 {
    text-align: center;
    padding: 50px 20px;
   /* background-color: #f8f8f8;*/
}

.services112 h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
}

.services-container112 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Гибкая сетка */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item112 {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-align: center;
}

.service-item112 i {
    font-size: 40px;
    color: #ff6500;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.service-item112 h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #444;
}

.service-item112 p {
    font-size: 16px;
    color: #555;
}

/* Анимация при наведении */
.service-item112:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    background-color: #f0f0f0; /* Подсвечиваем фон */
}

.service-item112:hover i {
    transform: scale(1.1); /* Увеличиваем иконку */
}

/* 📱 Адаптивность */
@media (max-width: 768px) {
    .services-container112 {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
    }
}

@media (max-width: 480px) {
    .services-container112 {
        grid-template-columns: 1fr; /* 1 колонка на телефонах */
    }

    .services112 h2 {
        font-size: 24px; /* Уменьшаем заголовок */
    }

    .service-item112 i {
        font-size: 35px; /* Меньше иконка */
    }

    .service-item112 h3 {
        font-size: 18px; /* Меньше заголовок */
    }

    .service-item112 p {
        font-size: 14px; /* Читаемый текст */
    }
}


.slider-photo-edit img {
    max-height: 500px;    
    width: auto;          
    height: auto;         
    object-fit: contain;  
    display: block;       
    margin-left: auto;    
    margin-right: auto;  
}


/* REWIU PAGE */

.reviews22 {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
}

.reviews22 h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #333;
}

.reviews-container22 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-item22 {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item22 i {
    font-size: 40px;
    color: #ff6500;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.review-text22 {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin: 20px 0;
}

.author-name22 {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* Анимация при наведении */
.review-item22:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 📱 Адаптивность */
@media (max-width: 768px) {
    .reviews-container22 {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
    }
}

@media (max-width: 480px) {
    .reviews-container22 {
        grid-template-columns: 1fr; /* 1 колонка на телефонах */
    }

    .reviews22 h2 {
        font-size: 24px; /* Уменьшаем заголовок */
    }

    .review-item22 i {
        font-size: 30px; /* Меньше иконка */
    }

    .review-text22 {
        font-size: 16px; /* Читаемый текст */
    }

    .author-name22 {
        font-size: 14px;
    }
}


/* CONTACT PAGE */

.contact-block23 {
    text-align: center;
    padding: 50px 20px;
    /*background-color: #f8f8f8;*/
}

.contact-block23 h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
}

.contact-info23 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item23 {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.contact-item23 i {
    font-size: 40px;
    color: #ff6500;
    margin-bottom: 15px;
}

.contact-item23 h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-item23 p {
    font-size: 16px;
    color: #555;
}

.contact-item23 a {
    text-decoration: none;
    color: #ff6500;
}

.contact-item23 a:hover {
    color: #000;
}

/* Анимация при наведении */
.contact-item23:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 📱 Адаптивность */
@media (max-width: 768px) {
    .contact-info23 {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
    }
}

@media (max-width: 480px) {
    .contact-info23 {
        grid-template-columns: 1fr; /* 1 колонка на телефонах */
    }

    .contact-block23 h2 {
        font-size: 24px; /* Уменьшаем заголовок */
    }

    .contact-item23 i {
        font-size: 35px; /* Меньше иконка */
    }

    .contact-item23 h3 {
        font-size: 18px; /* Меньше заголовок */
    }

    .contact-item23 p {
        font-size: 14px; /* Читаемый текст */
    }
}



.hotel-advantages23 {
    text-align: center;
    padding: 50px 20px;
    /*background-color: #f8f8f8;*/
}

.hotel-advantages23 h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
}

.hotel-container23 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hotel-item23 {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.hotel-item23 i {
    font-size: 40px;
    color: #ff6500;
    margin-bottom: 15px;
}

.hotel-item23 h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.hotel-item23 p {
    font-size: 16px;
    color: #555;
}

/* Анимация при наведении */
.hotel-item23:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 📱 Адаптивность */
@media (max-width: 768px) {
    .hotel-container23 {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
    }
}

@media (max-width: 480px) {
    .hotel-container23 {
        grid-template-columns: 1fr; /* 1 колонка на телефонах */
    }

    .hotel-advantages23 h2 {
        font-size: 24px; /* Уменьшаем заголовок */
    }

    .hotel-item23 i {
        font-size: 35px; /* Меньше иконка */
    }

    .hotel-item23 h3 {
        font-size: 18px; /* Меньше заголовок */
    }

    .hotel-item23 p {
        font-size: 14px; /* Читаемый текст */
    }
}


