@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Manrope', sans-serif;
    scroll-behavior: smooth;
}

.hero-bg {
    background-image: url(./style/img/Main2.webp);
    background-size: cover;
    background-position: center;
}

.transition-all {
    transition: all 0.3s ease;
}

.btn-booking:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Стили для мобильного меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background-color: white;
    z-index: 1000;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Кнопка "Наверх" - ОБНОВЛЕННЫЕ СТИЛИ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #14b8a6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #0d9488;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

#block-search,
#block-search * {
    box-sizing: border-box;
}

#block-search {
    position: absolute;
    right: 30px;
    transform: translateY(calc(-100% - 80px));
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.tl-container {
    padding: 0 30px;
}

@media (max-width: 1700px) {
    #block-search {
        position: relative;
        right: 0;
        transform: none;
        max-width: 100%;
        border-radius: 0;
    }

    .tl-container {
        max-width: 1440px;
        margin: 0 auto;
    }
}
