@import url('https://fonts.googleapis.com/css2?family=Koulen&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanuman:wght@100;300;400;700;900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #dedddd;
    background-image:url('../../image/background\ edit.png');
}

.koulen-regular {
    font-family: "Koulen", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.hanuman-thin {
    font-family: "Hanuman", serif;
    font-weight: 100;
    font-style: normal;
  }
html {
    scroll-behavior: smooth;
}

a {
    font-family: "Koulen", sans-serif;
    text-decoration: none;
    color: #e9e9e9;
}

ul {
    list-style-type: none;
}
h1,
h2,
h3,
h4 {
    font-family: "Koulen", sans-serif;
}
h1{
    color: #000000;
}

p {
    font-family: "Hanuman", serif;
    font-size: 18px;
}

header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar {
    width: 100%;
    height: 80px;
    background-color:#173540;
    position: fixed;
    z-index: 99;
    display: flex;
    align-items: center;
}

#navbar .con {
    min-width: 1200px;
    margin: auto;
}

#navbar .nav-con {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#navbar .nav-con .logo{
    width: 200px;
    height: 70px;
    /* background-color: cyan; */
}
#navbar .nav-con .logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#navbar.scrolled {
    background-color:#173540;
    /* background-color: #173540; */
}

#navbar .navbar-nav {
    display: flex;
}

#navbar .navbar-nav .nav-item .nav-link {
    display: block;
    font-size: 16px;
    padding: 10px 20px;
    position: relative;
    color:#F7941F;
}

#navbar .navbar-nav .nav-item .nav-link:hover {
    color: lime;
}

#navbar .navbar-nav .nav-item .drop-down {
    width: 100%;
    height: auto;
    /* background-color: cyan; */
    display: flex;
    justify-content: center;
    position: absolute;
    visibility: hidden;
    top: 100%;
    left: 0;
}

.hover-box {
    width: 100px;
    height: 30px;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row {
    width: 1200px;
    height: 100%;
    background-color: white;
    display: flex;
    gap: 10px;
    border-radius: 10px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row .navbar-navdrop-col-2_4 {
    width: calc(1200px/5);
    height: 100%;
    /* background-color: teal; */
    margin: 10px 0px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row .navbar-navdrop-col-2_4 .nav-item-drop .nav-link-drop {
    /* background-color: chartreuse; */
    display: block;
    padding: 10px 20px;
    color: black;
    border-radius: 10px;
}

#navbar .navbar-nav .nav-item .drop-down .drop-down-row .navbar-navdrop-col-2_4 .nav-item-drop .nav-link-drop:hover {
    color: lime;
    /* background-color: #f2f1f1; */
}

#navbar .navbar-nav .nav-item:hover .drop-down {
    visibility: visible;
}

#navbar .nav-button {
    display: flex;
    list-style-type: none;
    align-items: center;
    gap: 15px;
    font-size: 20px;
}

#navbar .nav-button button {
    border-radius: 5px;
    border: none;
    background-color: transparent;
    border: 2px solid #F7941F;
    border-radius: 10px;
}

#navbar .nav-button button>a {
    display: block;
    font-family: "Koulen", sans-serif;
    padding: 10px 20px;
    font-size: 15px;
    /* color: #F7941F; */
}
.nav-button .icon-button a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    border: 1px solid #F7941F;
}

.nav-button .notification-button .link-note{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    border: 1px solid #F7941F;
}
.nav-button .notification-button .link-note{
    position: relative;
}
.nav-button .notification-button .link-note .message{
    width: 18px;
    height: 18px;
    background-color: red;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -5px;
}
.nav-button .notification-button .link-note .message span{
    font-size: 14px;
}
.nav-button .notification-button{
    position: relative;
}
.nav-button .notification-button .dropdown-note{
    width: 330px;
    /* height: 100px; */
    background-color: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    position: absolute;
    z-index: 99;
    right: -55px;
    visibility: hidden;
    top: 60px;
    border-radius: 10px;
    padding: 0px 10px 10px 10px;
}
.nav-button .notification-button:hover .dropdown-note{
    visibility: visible;
}
.nav-button .notification-button:hover .dropdown-note .droplist-note .tittle{
    display: flex;
    justify-content: space-between;
}
.nav-button .notification-button:hover .dropdown-note .droplist-note .tittle h3{
    color: #173540;
    font-size: 20px;
    font-weight: 100;
}

.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note{
    width: 100%;
    background-color: rgb(221, 218, 218);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-4{
    width: 50px;
    /* background-color: yellow; */
}
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-4 .icon{
    width: 50px;
    font-size: 20px;
    height: 50px;
    border-radius: 100%;
    color: #292831;
    background-color:#9acd32;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}  
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-8{
    width: 240px;
    height: auto;
    padding: 5px 0px;
    /* background-color: rgb(129, 108, 108); */
    margin-left: 10px;
} 
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-8 p{
    font-size: 16px;
    margin-left: 15px;
    color: #000000;
}
.nav-button .notification-button .dropdown-note .dropitem-note .droplist-note .body-note .col-8 p span{
    font-size: 14px;
}
.profile-button .link-profile{
    display: block;
    width: 40px;
    height: 40px;
    /* line-height: 50px; */
    border-radius: 100%;
    /* overflow: hidden; */
    text-align: center;
    position: relative;
}
.profile-button .link-profile .img{
    position: relative;
}
.bookmark{
    width: 12px;
    height:12px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    position: absolute;
    top: -4px;
    right: 5px;
    z-index: 99;
}
.profile-button .link-profile .img{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    overflow: hidden;
}
.profile-button .link-profile .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-button{
    position: relative;
}
.profile-button .dropdown-profile{ 
    width: 280px;
    height: auto;
    background-color:#fff;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    position: absolute;
    border-radius: 10px;
    padding: 15px;
    visibility: hidden;
    right: 0;
    top: 60px;
    /* box-shadow: 1px 1px 15px rgb(209, 207, 207); */
}
.hold{
    width: 40px;
    height: 20px;
    background-color: rgba(255, 0, 0, 0);
    z-index: 99;
    position: absolute;
    right: 0;
    top: 100%;
}
.profile-button .dropdown-profile .droplist-profile a:hover .icon-click{
    color: lime;
}
.profile-button:hover .dropdown-profile{
    visibility: visible;
}
.profile-button .dropdown-profile .droplist-profile a .fa-chevron-right{
    float: right;
}
.profile-button .dropdown-profile .droplist-profile a .icon-click{
    color: black;
    font-size: 16px;
    padding: 5px;
}
.profile-button .dropdown-profile .droplist-profile .body-profile{
    width: 100%;
    /* background-color: red; */
    border-bottom: 1px solid black ;
    display: flex;
    transition: none;
    padding-bottom: 8px;
    margin-bottom: 15px;
    gap: 20px;
    align-items: center;
}
.profile-button .dropdown-profile .droplist-profile .body-profile .img{
    display: block;
    width: 40px;
    height: 40px;
    transition: none;
    border-radius: 100%;
    overflow: hidden;
}
.profile-button .dropdown-profile .droplist-profile .body-profile .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-button .dropdown-profile .droplist-profile .body-profile .name{
    /* width:200px ; */
    height: 60px;
    color: black;
    /* background-color:teal; */
}
.profile-button .dropdown-profile .droplist-profile .body-profile .name h4{
    color: black;
}


  /* ============================== */
  /* container */
section .container-1{
    width: 100%;
    height: auto;
}
.container-1 .destination{
    width: 100%;
}
.row{
    width: 1200px;
    display: flex;
}
.container-1 .destination{
    width: 100%;
    /* background-color: red; */
}
.container-1 .destination .row{
    width: 1200px;
    margin: auto;
    /* background-color: cadetblue; */
} 
.container-1 .destination .row .col-12{
    width: 100%;
    height: 150px;
    /* background: red; */
    display: flex;
    align-items: center;
}
.container-1 .destination .row .col-12 .tittle{
    width: 300px;
    /* background-color: blue; */
    font-size: 20px;
}
.container-1 .destination .row .col-12 .tittle>h1{
    color: #071516;
    font-size: 40px;
}
.container-1 .destination .row .col-12 .tittle >a{
    color: #292831;
    font-weight: 100;
}

.container
{
    width: 1200px;
    margin: auto;
    /* background-color: yellow; */
}

.container .nav-col
{
    width: 100%;
    height: 100%;
    margin-top: 10px;
    display: flex;
    column-gap: 10px;
}
.container .nav-col .col-4
{
    width: 360px;
    height: 600px;
    border: 1px solid gray;
    padding: 10px;
    border-radius: 10px;
}
.container .nav-col .col-4 h2
{
    font-family: "Koulen", sans-serif;
    font-size: 25px;
    text-align: center;
    padding: 10px;
}
.container .nav-col .col-4 .nav-text
{
    width: 340px;
    height: 220px;
}
.container .nav-col .col-4 .nav-text p
{
    font-family: "Hanuman", serif;
    font-size: 16px;
}
.container .nav-col .col-4 .nav-map
{
    width: 340px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
}
.container .nav-col .col-4 .nav-map iframe
{
    width: 100%;
    height: 100%;
}
.container .nav-col .col-8 .nav-hotel
{
    width: 100%;
    height: 80px;
    margin-top: 10px;
}
.container .nav-col .col-8 .nav-hotel .fa-solid
{
    font-size: 16px;
    color: #EBCA0F;
}
.container .nav-col .col-8 .nav-hotel h2
{
    font-family: "Koulen", sans-serif;
    font-size: 25px;
    padding: 5px;
}

.container .nav-col .col-8 .nav-hotel .nav-link
{

    height: 30px;
    font-size: 16px;
    font-family: "Hanuman", serif;
    padding: 5px;
    color: #071516;
    margin-top: -5px;
}
.container .nav-col .col-8 .nav-hotel .nav-link span
{
    font-family: "Hanuman", serif;
}
.container .nav-col .col-8 .nav-image
{
    width: 820px;
    height: 350px;
    display: flex;
    /* column-gap: 10px; */
    margin-top: 20px;
}
.container .nav-col .col-8 .nav-image .col-5
{
    width: 400px;
    height: 100%;
    row-gap: 5px;
    transition: 1s;
    margin-top: 10px;
}
.container .nav-col .col-8 .nav-image .col-5 .col-imge
{
    width: 267px;
    height: 160px;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}
.container .nav-col .col-8 .nav-image .col-5 .col-imge img
{
    width: 100%;
    height: 100%;
    transition: 0.3s;
}
.container .nav-col .col-8 .nav-image .col-5 .col-imge:hover img
{
    transform: scale(1.1);
}

.container .nav-col .col-8 .nav-image .col-7
{
    width: 95%;
    height: 330px;
    overflow: hidden;
    margin-top: 10px;
    background-color: red;
    border-radius: 10px;
}
.container .nav-col .col-8 .nav-image .col-7 img
{
    width: 100%;
    height: 100%;
    transition: 0.3s;
}
.container .nav-col .col-8 .nav-image .col-7:hover img
{
    transform: scale(1.1);
}

.container .nav-col .col-8 .nav-line
{
    width: 100%;
    height: 140px;
    display: flex;
    column-gap: 10px;
}
.container .nav-col .col-8 .nav-line .col-3
{
    width: 267px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.container .nav-col .col-8 .nav-line .col-3 img
{
    width: 100%;
    height: 100%;
    transition: 0.3s;
}

.container .nav-col .col-8 .nav-line .col-3:hover img
{
    transform: scale(1.1);
    
}
/* _______________________________________________ */


.container .con-reserve
{
    width: 99%;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}
.container .nav-about
{
    width: 600px;
}
.container .nav-about .about-text h2
{
    font-size: 25px;
    margin-top: 20px;
    margin-bottom: 15px;
}
.container .nav-about .about-text span
{
    font-family: "Koulen", sans-serif;
    font-size: 16px;
}

.container .nav-about .about-hotel h2
{
    font-size: 25px;
    font-family: "Koulen", sans-serif;
    font-weight: normal;
    margin-top: 20px;
    margin-bottom: 15px;
}
.container .nav-about .about-hotel ul
{
    margin-left: 20px;
}
.container .nav-about .about-hotel p
{
    font-family: "Hanuman", serif;
    font-size: 18px;
    margin-top: 5px;
}
.container .nav-about .about-text .about-icon
{
    width: 100%;
    display: flex;
    column-gap: 5px;
    margin-top: 15px;
}
.container .nav-about .about-text .about-icon .icon
{
    width: 120px;
    height: 100%;
    display: flex;
}
.container .nav-about .about-text .about-icon .icon p
{
    font-size: 18px;
    margin-left: 5px;
}
.container .nav-about .about-text .about-icon .icon .col-2
{
    width: 25px;
    height: 25px;
}
.container .nav-about .about-text .about-icon .icon .col-2 img
{
    width: 100%;
    height: 100%;
}
.container .nav-reviwe
{
    width: 100%;
    height: 350px;
    font-family: "Koulen", sans-serif;
    margin-top: 40px;
}
.container .nav-reviwe h2
{
    font-family: "Koulen", sans-serif;
    font-weight: normal;

}
.container .nav-reviwe p
{
    margin-top: 8px;
    font-size: 18px;
}
.container .nav-reviwe span
{
    font-size: 18px;
    color: #F7941F;
}
.container .navbar-room .amen-col-6 p
{
    margin-left: 10px;
    margin-top: 8px;
}
.container .navbar-room .amen-col-6 .col-2
{
    width: 30px;
    height: 30px;
}
.container .navbar-room .amen-col-6 img
{
    width: 100%;
    height: 100%;
}
.container .nav-amenities h2
{
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 25px;
    font-family: "Koulen", sans-serif;
    font-weight: normal;
}
.container .navbar-room
{
    width: 100%;
    margin-top: 5px;
    display: flex;
    column-gap: 10px;
}
.container .navbar-room .amen-col-6
{
    width: 350px;
    height: 200px;
}
.container .navbar-room .amen-col-6 .col-6-box
{
    width: 100%;
    height: 35px;
    display: flex;
    color: #292831;
    margin-top: 8px;
}
.container .navbar-room .amen-col-6 .col-6-box p
{
    font-family: "Hanuman", serif;
    color: #292831;
    font-size: 18px;
}
/* _____________________________________________________  */
.container .nav-booking
{
    width: 550px;
    height: 900px;
    background-color: transparent;
    /* border: 1px solid #173540; */
    background-color:white;
    border-radius: 5px;
    margin-top: 20px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.container .nav-booking p
{
    font-size: 16px;
    text-align: center;
}
.container .nav-booking .title-form{
    width: 550px;
    height: 60px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    /* background-color: yellow; */
    align-items: center;
}
.container .nav-booking .title-form h2{
    font-size: 25px;
    font-weight: normal;
    font-family: "Koulen", sans-serif;
    color: #071516;
}
.container .nav-booking .title-form p{
    font-size: 18px;
    color: #292831;
}
form .check-in{
    width: 520px;
    height: 40px;
    margin:10px auto;
    background-color: transparent;
    border: 1px solid #173540;
    border-radius: 5px;
    font-size: 16px;
    align-items: center;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    font-family: "Hanuman", serif;
}
form .check-in input{
    font-size: 16px;
    background-color: transparent;
    border: none;
    outline: none;
    font-family: "Hanuman", serif;
}
#select-room{
    font-size: 16px;
    outline: none;
    border: none;
}
 .choose{
    display: flex;
    justify-content: space-between;
    font-family: "Hanuman", serif;
}
form .person{
    width: 245px;
    height: 40px;
    margin:0px auto;
    background-color: transparent;
    border: 1px solid #173540;
    border-radius: 5px;
    font-size: 16px;
    align-items: center;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
}
form h2{
    font-size: 25px;
    font-weight: normal;
    font-family: "Koulen", sans-serif;
    margin-top: 20px;
    margin-bottom: 15px;

}
form .payment-form{
    padding: 15px;
}

form .card-name
{
    width: 100%;
    height: 50px;
    color: #292831;
}
form .card-name .card
{
    display: block;
    font-size: 16px;
    color: #292831;
    font-family: "Hanuman", serif;
    margin-top: 10px;
}
form .card-name input
{
    width: 520px;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid gray;
    font-family: "Hanuman", serif;
    font-size: 16px;
    outline: none;
    margin-top: 5px;
    color: #292831;
}
form .expiration-cvv{
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
}
form .expiration-cvv .date label{
    font-size: 16px;
    color: #292831;
    font-family: "Hanuman", serif;
}
form .expiration-cvv .date #expired{
    width: 245px;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid gray;
    font-family: "Hanuman", serif;
    font-size: 16px;
    outline: none;
    color: #292831;
}
form .visa-card{
    width: 250px;
    height: 50px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
form .visa-card .visa{
    width: 80px;
    height: 50px;
    align-content: center;
}
form .visa-card .visa img{
    width: 100%;
}

form .sevices{
    width: 520px;
    height: 40px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding: 0px 10px;
    background-color:transparent;
    border-radius: 5px;
    border: 1px solid #173540;
    align-items: center;
    font-size: 16px;
    margin-top: 20px;
    font-family: "Hanuman", serif;

}
form .sevices p
{
    font-size: 16px;
    color: #292831;
}

form .total{
    width: 520px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
form .total 
{
    margin-left: 15px;
    border-top: 1px solid gray;
    margin-top: 20px;
}
form .total h2{
    font-size: 25px;
    margin-left: -1px;
    font-family: "Koulen", sans-serif;
    color: #071516;
}
form .total p{
    font-size: 18px;
}
form .btn-book{
    width: 150px;
    height: 40px;
    cursor: pointer;
    background-color: #F7941F;
    border: none;
    margin-left: 200px;
    border-radius: 5px;
    font-size: 18px;
    color: #fff;
    /* margin-top: -20px; */
    font-family: "Hanuman", serif;
}
form p{
    font-size: 16px;
    padding: 10px 10px;
}

/* footer */
.footer{
    width: 100%;
    margin-top: 100px;
    height: auto;
}
.footer .row-foot{
    width: 100%;
    height:400px;
    color: white;
    background-color: #183540;
    border-radius: 200px 0px 0px 0px;
    padding: 20px 0px;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer .row-foot .col-3{
    width: calc(1200px/4);
    height: 100%;
    /* background-color: red; */
    padding: 20px;
}
.footer .row-foot .col-3>h2{
    font-size: 27px;
    font-weight: 100;
    margin-top: 20px;
    color:#F7941F;
}
.footer .row-foot .col-3 .logo{
    width: 200px;
    height: 70px;
}
.footer .row-foot .col-3 .logo img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.footer .row-foot .col-3 .body-txt{
    margin-top: 10px;
}
.footer .row-foot .col-3 .body-txt p{
    padding: 5px 0px;
    font-size: 17px;
    font-family: "Koulen", sans-serif;
    color: #F4F5F6;
}
.footer .row-foot .col-3 .body-txt .link{
    display: block;
    font-size: 20px;
    letter-spacing: 1px;
    /* background-color: cadetblue; */
    margin-top: 20px;
}
.footer .row-foot .col-3 .body-txt .icon{
    width: 100%;
    height: auto;
    /* background-color: cyan; */
    display: flex;
    align-items: center;
    font-size: 25px;
    gap: 15px;
}
