@import url('https://fonts.googleapis.com/css2?family=Poppins: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');
body{
    margin: 0;
    color: white;
} 
svg{
    width: 25px;
}
.nav{
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    grid-template-rows: 50px;
    width: 1200px;
    width: 90%;
    height: 72px;
    margin: auto;
    margin-top: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    /* background: transparent;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.03); */
    box-shadow: 0 0 0.5em black;
    z-index: 100;
    position: sticky;
    top: 0;
    overflow: visible;
    background: rgba(18,18,20,.34);
    border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
}
header{
    position: sticky;
    top: 0;
    overflow: visible;
    z-index: 1000;
}
.logo{
    margin: 0 1em;
    font-family: 'Poppins', sans-serif;
    color: white;
}
.logo:hover{
    cursor: pointer;
}
.nav .logo{
    font-weight: bold;
}
.nav .menu{
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 28px;
    font-weight: 600;
}
.menu li{
    font-family: 'Poppins', sans-serif;
    color: white;
    transition: 0.33s all ease 0s;
}
.menu li:hover{
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    color: #f6e8c2;
    transform: translateY(-2px);
    text-shadow: none; 
}
.book_btn button{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border: 0.15em solid white;
    margin-right: 1.5em;
    padding: 0.5em 1em;
    color: white;
    font-size: 0.9em;
    background: transparent;
    border-radius: 16px;
	text-decoration: none;
    outline: none;
    box-shadow: 0 0 0.5em 0.15em white;
    text-shadow: 0 0 0.5em  white;
    transition: all 0.33s ease 0s;
}


.book_btn button:hover{
    transform: scale(1.05);
    color: white;
    background-color: black;
    box-shadow: 0 0 0.5em white;
    cursor: pointer;
}



/* css slider */
.slider{
    height: 100vh;
    width: 100%;
    margin-top: -84px;
    position: relative;
    min-height: calc(100vh - 72px);
    padding-top: 72px;   
    margin-bottom: 1em;          
}
.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
}
.slider .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 30%, transparent
    );
}
.slider .list .item .content{
    position: absolute;
    left: 10%;
    top: 20%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
}
.slider .list .item .content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 10px;
}
.slider .list .item .content h2{
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 80px;
    margin: 0;
}
.slider .list .item .content p{
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}
.slider .list .item.active{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.slider .list .item.active p:nth-child(1),
.slider .list .item.active h2,
.slider .list .item.active .slider-btn,
.slider .list .item.active p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.slider .list .item.active h2{
    animation-delay: 1s;
}
.slider .list .item.active p:nth-child(3){
    animation-duration: 1.3s;
}
.arrows{
    position: absolute;
    top: 30%;
    right: 50px;
    z-index: 100;
}
.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: -50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 0px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}
.thumbnail::-webkit-scrollbar{
    width: 0;
}
.thumbnail .item{
    width: 120px;
    height: 120px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}

.slider-btn {
    display:inline-block;
    margin-top:18px;
    padding:10px 22px;
    font-weight:600;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border: 0.15em solid white;
    color: white;
    font-size: 0.9em;
    background: transparent;
    border-radius: 14px;
	text-decoration: none;
    outline: none;
    box-shadow: 0 0 0.5em 0.1em white;
    text-shadow: 0 0 0.5em  white;
    transition: all 0.33s ease 0s;
}
.slider-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(181,137,59,0.18);
    transform: scale(1.05);
    color: white;
    background-color: black;
    box-shadow: 0 0 0.5em white;
    cursor: pointer;
}

.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.thumbnail .item.active{
    filter: brightness(1.5);
}
.thumbnail .item .content{
    font-size: 0.9em;
    font-weight: 600;
    color: white;
    background: rgba(0,0,0,0.5);
    position: absolute;
    inset: auto 10px 10px 10px;
    padding: 2px 5px;
    border-radius: 5px;
}
.thumbnail .item:hover {
    transform: scale(1.05);
    filter: brightness(1.5);
    cursor: pointer;
}

/* room part starts */

.rooms {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: auto;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #faf7f2 12%, #faf7f2 100%);
    padding: 32px 0 80px;
    
}

.rooms h1{
    position: absolute;
    top: 0%;
    font-weight: 700;
    line-height: 1.1;
    text-transform: none;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: clamp(32px, 3.8vw, 52px);
    letter-spacing: .01em;
    color: #1a1a1a;
    margin: 0 0 22px;
}
.rooms_track{
    margin-top: 5em;
    padding: 1em 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.room_arrows{
    position: absolute;
    display: none;
}
.room_content{
    width: 45%;
    height: 500px;
    float: left;
    position: relative;
    padding: 1em;
    margin: 0.5em;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1px 0 rgba(255,255,255,0.6) inset, 0 8px 24px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05);
    border-radius: 20px;
    transition:  transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.room_content:hover{
    transition: 0.33s all ease 0s;
    transform: translateY(-4px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 18px 48px rgba(0,0,0,0.18), 0 4px 10px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.10);
}

.room_content img{
margin-bottom: 14px;
width: 100%;
height: 240px;
object-fit: cover;
border-radius: 18px;
display: block;
transition: transform .6s ease;
}
.room_content:hover img{
    transform: scale(1.03);
}
.room_content h2{
margin: 10px 4px 8px;
font-family: "Playfair Display", serif;
font-weight: 700;
font-size: 26px;
color: #1a1a1a;

}
.room_content p{
margin: 0 4px 12px;
font: 500 15px/1.75 'Poppins', sans-serif;
color: #6b6a67;
}




/* responsive columns */
@media (max-width: 1024px){
.rooms { grid-template-columns: repeat(2, minmax(0,1fr)); }
.room_content img{ height: 240px; }
}
@media (max-width: 600px){
.rooms { grid-template-columns: 1fr; gap: 24px; }
.room_content{ border-radius: 20px; padding: 16px; }
.room_content img{ height: 220px; border-radius: 18px; }
}

/* room part end */




/* responsive css */

/* Responsive navigation*/

@media screen and (min-width: 768px){
    .res_nav{
    display: none;
}
}

@media screen and (max-width: 768px){
    .nav {
        display: none;
    }


    .res_nav{
        display: grid;
        grid-template-columns: 50px 1fr 50px;
        grid-template-rows: 50px;
        width: 1200px;
        width: 90%;
        height: 72px;
        margin: auto;
        margin-top: 10px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        justify-content: space-between;
        border-radius: 14px;
        /* background: rgba(11,11,12,0.12);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255,255,255,0.03); */
        box-shadow: 0 0 0.5em black;
        z-index: 100;
        position: sticky;
        top: 0;
        overflow: visible;
        background: rgba(18,18,20,.36);
        border: 1px solid rgba(255,255,255,.18);
        backdrop-filter: blur(8px);
    }

    .res_nav ul li{
        display: block;
    } 

    .res_nav ul li:hover{
        font-size: 1.1em;
        font-weight: bold;
        color: black;
        text-shadow: 0 0 0.5em white;
    }

    .res_nav .logo{
        font-weight: bold;
    }
   
   .dropdown  {
     font-size: 1em;  
     color: white;
     font-family: inherit;
     overflow: visible;
     position: relative;
   }
   
   
   .dropdown-content {
    height: 100vh;
    min-width: 312px;
    width: 100%;
    position: fixed;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .33s ease, transform .33s ease, visibility 0s linear .33s;
    position: absolute;
    top: 135%;
    left: -122%;
    border: 1px solid rgba(255,255,255,0.03);
    box-shadow: 0 0 0.5em black;
    border-radius: 14px;
    background-color: rgba(6,6,6,0.95);
    z-index: 1000;
    
   }
   
   .dropdown-content ul li {
    float: none;
    color: white;
    padding: 0.5em 0;
    text-decoration: none;
    text-align: left;
    margin-top: 0.7em;
   }
   .dropdown-content ul {
  margin: 7px 0 28px;
  padding: 8px 6px;
}
.dropdown-content ul li {
  padding: 12px 12px;     
  font-size: 18px;      
  font-weight: 500;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
   .book_btn button{
    font-size: 0.83em;
    border: none;
    box-shadow: none;
    text-decoration: underline;
   }
   
   .nav-toggle-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
   }

   .nav-toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    color: #fff;
    font-size: 1.25rem;
    position: relative;
   }
   

   .nav-toggle-input:checked ~ .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity .33s ease, transform .33s ease;
   }
   
   .nav-toggle-input:not(:checked) + .nav-toggle-btn .fa-bars { 
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0);
   }
   .nav-toggle-input:not(:checked) + .nav-toggle-btn .fa-xmark { 
    opacity: 0; 
    transform: translate(-50%, -50%) rotate(-90deg) scale(.9);
   }
   .nav-toggle-input:checked + .nav-toggle-btn .fa-bars { 
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scale(.9);
   }
   .nav-toggle-input:checked + .nav-toggle-btn .fa-xmark { 
    opacity: 1; 
    transform: translate(-50%, -50%) rotate(0) scale(1);
   }

   .nav-toggle-btn i {
    position: absolute;
    left: 0%;
    top: 60%;
    transform: translate(-50%, -50%);
    transition: opacity .25s ease, transform .25s ease;
   }

}


/* responsive slider */
/* tablet */

@media screen and (max-width: 678px) {
    .thumbnail{
        justify-content: start;
    }
    .slider .list .item .content h2{
        font-size: 60px;
    }
    .arrows{
        top: 10%;
    }
}

/* mobile-l*/
@media screen and (max-width: 425px) {
    .thumbnail{
        justify-content: start;
        bottom: -125px;
        margin-left: 5px;
    }
    .thumbnail .item{
        width: 75px;
        height: 75px;
    }
    .thumbnail .item .content{
    font-size: 0.5em;
    font-weight: 600;
    color: white;
    position: absolute;
    inset: auto 10px 10px 10px;
    background: rgba(0,0,0,0.5);
    padding: 2px 5px;
    border-radius: 5px;
}
    .slider .list .item .content h2{
        font-size: 40px;
    }
    .arrows{
        display: none;
    }
}
/* mobile-m*/
@media screen and (max-width: 375px) {
    .thumbnail{
        justify-content: start;
        bottom: -125px;
        margin-left: 5px;
    }
    .thumbnail .item{
        width: 65px;
        height: 65px;
    }
    .thumbnail .item .content{
    font-size: 0.5em;
    font-weight: 600;
    color: white;
    position: absolute;
    inset: auto 10px 10px 10px;
    background: rgba(0,0,0,0.5);
    padding: 2px 5px;
    border-radius: 5px;
}
}
/* mobile-s*/
@media screen and (max-width: 320px) {
    .thumbnail{
        justify-content: start;
        bottom: -125px;
        margin-left: 2px;
    }
    .thumbnail .item{
        width: 55px;
        height: 55px;
    }
    .thumbnail .item .content{
    font-size: 0.5em;
    font-weight: 600;
    color: white;
    position: absolute;
    inset: auto 10px 10px 10px;
    background: rgba(0,0,0,0.5);
    padding: 2px 5px;
    border-radius: 5px;
    }
 }