
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

html {
    overflow-x: hidden;
}
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100vw;
}


/* Верхняя панель (navbar) на всю ширину экрана */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: rgba(300,300,300, 0.7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000; /* выше других элементов на странице */
    padding: 0% 2%;
}
.left-section, .right-section{
    width:20%;

}
/* Кнопка открытия скрытого меню */
.menu-btn {
    width:10%;
    font-size: 20px;
    background-color: transparent;
    color: black;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    margin: 3px 0;
    background-color: black;
}

/* Логотип по центру панели */
.logo {
    max-height: 100px;
    width:auto;
    /* Дополнительно можно регулировать ширину или высоту
     .logo {
       height: 50px;
       width: auto;
     }
  */
}

/* Контейнер скрытого меню (слева) */
.hidden-menu {
    position: fixed;
    top: 100px;
    left: 0;
    width: 200px;
    height: 100%;
    background-color: rgba(300,300,300, 0.7);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    
}

    /* Активное состояние меню (видимое) */
    .hidden-menu.active {
        transform: translateX(0);
    }

/* Кнопка "Book Now" */
.book-now-btn {
    background-color: #a38d54;
    color: white;
    border: none;
    padding: 0.5em 1em;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

/* Контейнер для Language-кнопки + выпадающее меню */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Кнопка Language */
.language-btn {
    display:flex;
    align-items:center;
    height:64px;
    background-color:rgba(0, 0, 0, 0);
    text-align: left;
    width: auto;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 32px;
}
.language-btn img{
    width:24px;
    height:24px;
}
/* Содержимое dropdown (спрятано по умолчанию) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(300,300,300, 0.7);
    margin-top: 5px;
    min-width: 100px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

    /* Показываем dropdown при наличии класса .show */
    .dropdown-content.show {
        display: block;
    }

    /* Ссылки внутри dropdown */
    .dropdown-content a {
        display: block;
        padding: 6px 12px;
        color: black;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid #666;
    }

        .dropdown-content a:hover {
            background-color: #666;
        }

/* Иконка телефона (ссылка) */
.phone-icon {
    color: black;
    text-decoration: none;
}
.phone-icon img{
    width:24px;
    height:24px;
}
    .phone-icon:hover {
        color: inherit; /* Использовать цвет текста родителя или установить свой */
        text-decoration: none; /* Отключить подчеркивание */
        outline: none;
    }

/* Правая секция в топ-баре */
.right-section {
    display: flex;
    justify-content:flex-end;
    align-items: center;
    gap: 25px; /* пространство между элементами */
}

/* Элементы меню без использования ul/li */
.menu-item {
    padding: 15px;
    border-bottom: 1px solid #555;
}

    .menu-item a {
        font-size:20px;
        color: black;
        text-decoration: none;
        display: block;
    }

.floating-button {
    color:black;
    text-decoration: none;
    display: inline-block;
    width: auto;
    line-height: 45px;
    margin: 10px 20px;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 3px;
    font-weight: 600;
    transition: .3s;
    border-bottom: 3px solid transparent;
}
    .RoomTypeCard .floating-button{
        margin:0;
        width:auto;
    }

    #RoomsTypesBox .RoomTypeCard:hover .floating-button,
    .floating-button:hover,
    .Hotel:hover .floating-button,
    .Rooms:hover .floating-button,
    .Night:hover .floating-button {
        border-bottom-color: #a38d54;
        color: #a38d54;
    }

.GrLanguage {
    font-family: "Roboto Slab", serif;
    font-weight: 400;
    font-style: normal;
    font-optical-sizing: auto;
}

.EngLanguage {
    font-family: 'Hind Siliguri', sans-serif;
}

html {
    background-image: url("Images/Background.jpg");
    background-repeat: repeat;
}

::-webkit-scrollbar {
    width: 0px;
}

::-webkit-scrollbar-thumb {
    background: #a38d54;
}

    ::-webkit-scrollbar-thumb:hover {
        background: gray;
    }

body {
    margin: 0;
    padding: 0;
}

.footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    height: fit-content;
    position: relative;
    border-width: 4px;
    border-style: solid;
    border-image: linear-gradient(to right, #e5e5e5, rgba(229,229,229, 20%), rgba(229,229,229, 20%), rgba(229,229,229, 80%) 40%, rgba(229,229,229, 80%) 60%, rgba(229,229,229, 20%), rgba(229,229,229, 20%), #e5e5e5) 1;
    border-right: 0;
    border-left: 0;
    color: black;
    padding: 2px;
    text-align: left;
    font-size: 20px;
}
.BoxOfContacts {
    display: flex;
    flex-direction: column;
}

.Social {
    text-align: center;
    width: 300px;
}

    .Social h3 {
        font-weight:400;
        font-size: 25px;
    }

    .Social img {
        width: 64px;
        height: 64px;
    }
.Contacts a {
    color:black;
    font-weight: 300;
}

.footer h2 {
    margin-top: 2px;
    margin-bottom: 2px;
}

.ContactsBox {
    padding:2% 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: fit-content;
}

    .ContactsBox p {
        margin: 10px;
        font-size: 20px;
    }

.Contacts img {
    width: 32px;
    height: 32px;
}

.CopyRights {
    background-color: lightgray;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

    .CopyRights p {
        margin: 10px;
    }

#Gr2_0{
    width:50%;
}
/*/////////////////////////////////////*/
form {
    gap: 2%;
    font-weight: 400;
    font-size: 18px;
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: center;
    padding: 2% 0;
    background-color: rgba(0,0,0, 0.1);
}
.AvailableRooms {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: flex-end;
}
.form-block {
    display: flex;
    flex-flow: column;
    align-items: center;
}
.btn-primary {
    height: 52%;
    width: 100%;
    /*padding: 0.5rem 0.6rem;*/
    font-size: 18px;
    font-weight: 400;
    color: black;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    background-color: white;
    transition: 0.2s;
}

    .btn-primary:hover {
        color: white;
        border: 1px solid #ccc;
        box-shadow: inset 0 1px 3px #ddd;
        background-color: #a38d54;
    }

.form-select {
    width: 100px;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 3px #ddd;
    margin: 0;
}

/*///////////////////////////////////////*/
.ui-widget-header {
    background: #a38d54;
    border: 1px solid #a38d54;
}

.slide-block {
    /* Начальная анимация */
    transform: translateX(100%); /* Изначально за правым краем */
    transition: transform 1.5s ease;
    opacity: 0; /* Прозрачность 0 в начале */
}

/* Направления выезда (исходное состояние). */

/* Справа */
.slide-from-right {
    transform: translateX(100%);
}

    .slide-from-right.active {
        transform: translateX(0);
        opacity: 1;
    }

/* Слева */
.slide-from-left {
    transform: translateX(-100%);
}

    .slide-from-left.active {
        transform: translateX(0);
        opacity: 1;
    }

/* Сверху */
.slide-from-top {
    transform: translateY(-200%);
}

    .slide-from-top.active {
        transform: translateY(0);
        opacity: 1;
    }

/* Снизу */
.slide-from-bottom {
    transform: translateY(200%);
}

    .slide-from-bottom.active {
        transform: translateY(0);
        opacity: 1;
    }



@media only screen and (max-width: 768px) {
    .logo {
        max-height: 80px;
        width: auto;
    }

    .left-section, .right-section{
    width:auto;

}


    .AvailableRooms {
        padding:2% 0;
        width: 75%;
    }
    form {
        font-size:16px;
        flex-flow: column;
        align-items: center;
        row-gap:2%;
    }
    .form-block{
        padding:2% 0;
        justify-content:center;
        flex-flow:row;
        width:100%;
    }
    .form-label{
        width:25%;
    }
    .form-control{
        width:50%;
    }
    .form-select{
        width:50%
    }
    .btn-primary{
        font-size:17px;
    }
    .floating-button{
        font-size:17px;
    }
    .footer{
        
    }
    .footer a{
        font-size:15px;
        text-decoration:none;
        text-align:center;
    }
    .Social{
        font-size:24px;
    }
    .Social h3{
        font-size:16px;
    }
    .Social img{
        width:36px;
        height:36px;
    }
    .menu-item a{
     font-size:18px;
 }
    .book-now-btn {
        text-align: center;
        padding: 0.4em 0.1em;
    }
    .Contacts img{
        width:20px;
        height:20px;
    }
}
