/* Navbar work start */
html{
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body{
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
    background-color: #f5efe6;
}
.navbar{
    display: flex;
    justify-content: space-between;
    padding:5px 30px;
    background-color: white;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.nav-left{
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo img{
    width: 100%;
    max-width: 85px;
    height: auto;
}
.hotel-name{
    font-size: 22px;
    font-weight: 800;
    color:  rgb(138, 27, 27);
    padding: 8px 15px;
    border-radius: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s ease;
    cursor: pointer;
    margin-left: 30px;
}
.hotel-name:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
.list ul{
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.list ul li a{
    position: relative;
    text-decoration: none;
    color: rgb(138, 27, 27);
    font-weight: 600;
}
.list ul li a:hover{
    color: rgb(242, 196, 128);
    cursor: pointer;
}
.list ul li a.active{
    color: rgb(220, 170, 80);
    position: relative;
}

.list ul li a.active::after{
    width: 100%;
}
.list ul li a::after{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: rgb(242, 196, 128);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}
.list ul li a:hover::after{
    width: 100%;
}
.nav-right{
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-whatsapp{
    width: 48px;
    height: 35px;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}
.nav-whatsapp:hover{
    transform: scale(1.1);
}
.menu-icon{
    display: none;
    font-size: 28px;
    cursor: pointer;
}
.mobile-booking{
    display: none;
}
.btn{
    background: linear-gradient(135deg, rgb(138, 27, 27), rgb(220, 170, 80));
    color: whitesmoke;
    border-radius: 10px;
    width: 100%;
    max-width: 150px;
    border: none;
    font-size: 15px;
    height: 55px;
    padding: 0 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 27, 27, 0.3);
}
@media (max-width:900px){
  .navbar{
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }
  .nav-left{
    width: 100%;
  }
   .hotel-name{
        margin: 0 auto;
        text-align: center;
    }
  .mobile-booking{
    display: block;
  }
  .menu-icon{
    display: block;
    position: absolute;
    top: 25px;
    right: 20px;
    cursor: pointer;
    font-size: 30px;
  }
  .nav-whatsapp{
    display: none;
  }
  .navbar button{
    display: none;
  }
  .list{
    display: none;
    width: 100%;
  }
  .list ul{
    flex-direction: column;
    width: 100%;
    padding: 20px 0;
  }
  .list ul li{
    padding: 10px 50px;
  }
  .list.show{
    display: block;
  }
}
@media (max-width:640px){
    .hotel-name{
        font-size: 18px;
        padding: 8px 10px;
        margin-left: 50px;
    }
}
@media (max-width:520px){
.navbar{
    padding: 5px 10px;
}
.hotel-name{
    padding: 6px 8px;
    font-size: 16px;
    margin-left: 30px;

}
}
@media (max-width:485px){
.navbar{
    padding: 5px 10px;
}
.nav-right{
    margin-right: 0;
}
    .hotel-name{
        font-size: 15px;
        padding: 6px;
        margin-left: 20px;
    }
    .logo img{
        width: 65px;
    }
}
@media (max-width:440px){
.navbar{
    padding: 5px;
}
.nav-right{
    margin-right: 0;
}
    .hotel-name{
        font-size: 14px;
        padding: 6px 2px;
        margin-left: 20px;
    }
    .logo img{
        width: 50px;
    }
    .menu-icon{
    display: block;
    position: absolute;
    top: 15px;
    right: 10px;
    cursor: pointer;
    font-size: 30px;
  }
}
@media (max-width:380px){
.navbar{
    padding: 5px;
}
.nav-right{
    margin-right: 0;
}
    .hotel-name{
        font-size: 12px;
        padding: 6px 2px;
        margin-left: 2px;
    }
    .logo img{
        width: 50px;
    }
}
@media (max-width:330px){
.navbar{
    padding: 5px;
}
.nav-right{
    margin-right: 0;
}
    .hotel-name{
        font-size: 11px;
        padding: 6px 2px;
        margin-left: 0;
    }
    .logo img{
        width: 50px;
    }
}
/* Navbar work end */
/* Hero section work start */
.hero{
     background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url("images/WhatsApp\ Image\ 2026-06-01\ at\ 8.53.33\ PM.jpeg");
    background-size: cover;
    background-position: 70% center;
    padding: 80px 100px 120px 100px;
    display: flex;
    min-height: 60vh;
    align-items: center;
}
.h1{
    color: white;
    font-size: 60px;
    max-width: 800px;
    line-height: 1.4;
     text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.pms{
    color: rgb(220, 170, 80);
     text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
.p{
    color: white;
    font-size: 20px;
    max-width: 500px;
}
.hero-tag{
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 10px 18px;
    border-radius: 30px;
    color: #f2c480;
    font-weight: 600;
    margin: 15px 0 25px;
}
.btn1{
    background: linear-gradient(135deg, rgb(138, 27, 27), rgb(220, 170, 80));
    color: white;
    border-radius: 10px;
    width: 100%;
    max-width: 200px;
    border: none;
    font-size: 15px;
    height: 55px;
    padding: 0 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn2{
    border-radius: 10px;
    width: 100%;
    max-width: 200px;
    border: none;
    font-size: 15px;
    height: 55px;
    padding: 0 25px;
    transition: all 0.3s ease;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    cursor: pointer;
}
.hero-buttons{
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.btn1:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 27, 27, 0.3);
}
.btn2:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 27, 27, 0.3);
}
@media (max-width:768px){
    .hero{
        padding: 80px 40px;
    }
    .h1{
        font-size: 40px;
    }
}
@media (max-width:570px){
    .hero{
        padding: 70px 20px;
    }
}
@media (max-width:460px){
    .h1{
        font-size: 26px;
        line-height: 1.2;
    }
    .p{
        font-size: 15px;
    }
    .btn1,
    .btn2{
    max-width: 200px;
    font-size: 12px;
}
.hero-buttons{
    flex-direction: column;
}
}

/* Hero section work end */
/* Booking section work start */
.booking{
    margin-top: -60px;
    position: relative;
    z-index: 100;
    padding: 0 50px;
}
.booking-box{
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    padding: 35px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: wrap;
}
.field{
    display: flex;
    flex-direction: column;
}
.field label{
    margin-bottom: 10px;
    color: rgb(138, 27, 27);
    font-weight: 600;
}
.field input,
.field select{
    width: 220px;
    padding: 14px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    transition: 0.3s;
    font-size: 15px;
    outline: none;
}
.field input:focus,
.field select:focus{
    border-color: rgb(220, 170, 80);
    box-shadow: 0 0 10px rgba(220,170,80,0.25);
}
.check-btn{
    height: 52px;
    padding: 0 30px;
    border: none;
    border-radius: 12px;
    color: white;
    background: linear-gradient(135deg, rgb(138, 27, 27), rgb(220, 170, 80));
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /* min-width: 230px; */
}
.check-btn:hover{
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(138, 27, 27, 0.3);
}
@media (max-width:700px){
    .booking{
        margin-top: 0;
        padding: 20px;
    }
    .booking-box{
        flex-direction: column;
        align-items: stretch;
    }
    .field input,
    .field select{
        width: 100%;
        box-sizing: border-box;
    }
}
/* Booking section work end */
/* About section start */
.about{
    display: flex;
    justify-content: space-between;
    margin: 50px;
    gap: 30px;
}
.aboutimg{
    display: grid;
    grid-template-columns: auto auto;
    gap: 15px;
    overflow: hidden;
}
.aboutimg img{
    width: 100%;
    height: 250px;
    max-width: 350px;
    border-radius: 10px;
    transition: 0.4s ease;
    object-fit: cover;
}
.aboutimg img:hover{
    transform: scale(1.05);
}
.text{
    margin-top: 30px;
}
.abouth1{
    color: rgb(138, 27, 27);
    font-size: 42px;
    text-align: center;
}
.aboutp{
    color: #555;
    font-size: 20px;
    max-width: 570px;
    margin-left: 30px;
    line-height: 1.4;
}
.lists{
    display: grid;
}
.lists ul{
    list-style: none;
    padding: 0;
}
.lists ul li{
    color: rgb(138, 27, 27);
    font-weight: bold;
    font-size: 20px;
    line-height: 1.7;
}
.lists ul li::before{
    content: "✓";
    color: rgb(220, 170, 80);
    font-weight: bold;
    margin-right: 10px;
}
@media (max-width:1250px){
    .about{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .aboutp{
        max-width: 800px;
        margin: auto;
    }
    .lists{
        display: flex;
        justify-content: center;
        text-align: left;
    }
}
@media (max-width:768px){
    .about{
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
    }
    .aboutimg img{
        width: 100%;
        max-width: 280px;
        height: 220px;
    }
    .abouth1{
        font-size: 38px;
    }
    .aboutp{
        font-size: 16px;
    }
}
@media (max-width:490px){
    .abouth1{
        font-size: 30px;
    }
    .aboutp{
        font-size: 14px;
        line-height: 1.6;
    }
}
@media (max-width:390px){
    .abouth1{
        font-size: 26px;
    }
}
/* About section end */
/* Rooms section start */
.rooms{
    display: grid;
    grid-template-columns: auto;
    gap: 20px;
    margin-top: 80px;
}
.roomsh1{
    color: rgb(138, 27, 27);
    font-size: 50px;
    text-align: center;
    margin-bottom: 0;
}
.roomsp{
    font-size: 20px;
    text-align: center;
    color: #555;
    margin-top: 0;
}
.rooms-card{
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.room-card{
    width: 100%;
    position: relative;
    max-width: 500px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background-color: white;
    padding-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
    transition: 0.3s ease;
}
.room-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.room-badge{
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgb(220, 170, 80);
    color: white;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
}
.room-card:hover img{
    transform: scale(1.08);
}
.room-card img{
    width: 100%;
    max-width: 500px;
    height: 350px;
    transition: 0.4s ease;
    object-fit: cover;
}
.heading{
    text-align: center;
}
.room-card h2{
    color: rgb(138, 27, 27);
    font-size: 26px;
    text-align: center;
    margin-bottom: 5px;
    position: relative;
    display: inline-block;
}
.room-card h2::after{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: rgb(242, 196, 128);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}
.room-card:hover h2::after{
    width: 100%;
}
.desc{
    color: #555;
    text-align: center;
    font-size: 18px;
    min-height: 80px;
    margin-bottom: 0;
    line-height: 1.5;
}
.lists ul{
    margin-left: 20px;
    margin-top: 0;
}
.available{
    color: rgb(220, 170, 80);
    font-size: 25px;
    text-align: center;
    margin-top: 0;
    font-weight: bold;
}
.rooms-btn{
    display: flex;
    gap: 30px;
    justify-content: center;
}
.room-btn{
    background: linear-gradient(135deg, rgb(138, 27, 27), rgb(220, 170, 80));
    color: white;
    border-radius: 10px;
    width: 100%;
    max-width: 150px;
    border: none;
    font-size: 15px;
    height: 55px;
    padding: 0 15px;
    transition: all 0.3s ease;
    cursor: pointer; 
}
.room-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 27, 27, 0.3);
}
/* Rooms section end */
/* Hide section start */
.room-details{
    display: none;
    max-width: 900px;
    margin: 50px auto;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(138,27,27,0.12);
}
/* Hide section end */
@media (max-width:550px){
    .roomsh1{
        font-size: 45px;
    }
    .roomsp{
        font-size: 18px;
    }
}
@media (max-width:485px){
    .roomsh1{
        font-size: 40px;
    }
    .roomsp{
        font-size: 16px;
    }
    .room-card img{
        height: 280px;
    }
}
@media (max-width:380px){
    .roomsh1{
        font-size: 30px;
    }
    .roomsp{
        font-size: 14px;
    }
    .rooms-btn{
        flex-direction: column;
        align-items: center;
    } 
}
/* facilities work start */
.facilities{
    display: grid;
    margin: 50px;
}
.facilitiesh1{
    font-size: 50px;
    text-align: center;
    color: rgb(138, 27, 27);
    margin-bottom: 10px;
}
.facilitiesp{
    font-size: 22px;
    color: #555;
    text-align: center;
    margin-top: 0;
}
.facility-card{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}
.facilities-card{
    width: 100%;
    max-width: 300px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    text-align: center;
    border-radius: 15px;
    padding: 25px;
    transition: 0.4s ease;
    background-color: white;
}
.facilities-card i{
    font-size: 40px;
    font-weight: bold;
    color: rgb(138, 27, 27);
}
.facilities-card h2{
    color: rgb(220, 170, 80);
    font-size: 25px;
}
.facilityp{
    font-size: 20px;
    color: #555;
    min-height: 70px;
}
.facilities-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.facilities-card:hover i{
    transform: scale(1.1);
    transition: 0.3s;
}
@media (max-width: 600px){
    .facilities{
        margin: 20px;
    }
}
@media (max-width:400px){
  .facilitiesh1{
    font-size: 35px;
  } 
  .facilitiesp{
    font-size: 16px;
  } 
}
@media (max-width:350px){
    .facilitiesh1{
        font-size: 30px;
    }
    .facilitiesp{
        font-size: 14px;
    }
    .facilities-card h2{
        font-size: 22px;
    }
    .facilityp{
        font-size: 15px;
    }
}
/* facilities work end */
/* Gallery section work start */
.gallery-section{
    display: grid;
    margin-top: 50px;
}
.galleryh1{
    font-size: 50px;
    text-align: center;
    color: rgb(138, 27, 27);
    margin-bottom: 10px;
}
.galleryp{
    font-size: 22px;
    color: #555;
    text-align: center;
    margin-top: 0;    
}
.gallery-images{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}
.gallery-images img{
    width: 100%;
    max-width: 370px;
    object-fit: cover;
    height: 300px;
    border-radius: 20px;
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}
.gallery-images img:hover{
    transform: scale(1.05);
}
@media (max-width:775px){
    .gallery-images img:hover{
        transform: scale(1.02);
    }
}
@media (max-width:400px){
    .galleryh1{
        font-size: 40px;
    }
    .galleryp{
        font-size: 18px;
    }
    .gallery-images img{
        width: 300px;
    }
    .gallery-images img:hover{
        transform: none;
    }
}
@media (max-width:320px){
    .galleryh1{
        font-size: 35px;
    }
    .galleryp{
        font-size: 15px;
    }
    .gallery-images img:hover{
        transform: none;
    }
}
/* Gallery section work end */
/* Contact section start */
.contact-section{
    display: grid;
    margin-top: 50px;
}
.contacth1{
    font-size: 50px;
    text-align: center;
    color: rgb(138, 27, 27);
    margin-bottom: 10px;
}
.contactp{
    font-size: 22px;
    color: #555;
    text-align: center;
    margin-top: 0;
    max-width: 800px;
    margin: 0 auto;
}
.contact-cards{
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 50px;
    flex-wrap: wrap;
}
.contact-card{
    width: 100%;
    max-width: 260px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 25px;
    border-radius: 20px;
    transition: 0.4s ease;
    text-align: center;
    background-color: white;
}
.contact-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.contact-card i{
    color: rgb(138, 27, 27);
    font-size: 30px;
}
.contact-card h3{
    font-size: 28px;
    color: rgb(220, 170, 80);
    margin-top: 5px;
}
.contactpa{
    font-size: 18px;
    color: #555;
    line-height: 1.2;
    min-height: 70px;
}
.contactpa a{
    text-decoration: none;
    color: #555;
}
.contact-btn{
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, rgb(138, 27, 27), rgb(220, 170, 80));
    color: white;
    border-radius: 10px;
    width: 150px;
    height: 55px;
    line-height: 55px;
    text-align: center;
}
.contact-btn:hover{
    transform: translateY(-3px);
     box-shadow: 0 15px 35px rgba(138, 27, 27, 0.18);
    transition: 0.3s ease;
}
.contact-card:hover i{
    transform: scale(1.1);
    transition: 0.3s;
}
.location{
    margin-top: -40px;
}
.location iframe{
    width: 100%;
    border-radius: 20px;
}
@media (max-width: 600px){
    .contact-cards{
        gap: 20px;
    }

    .contact-card{
        max-width: 100%;
    }
}
@media (max-width:500px){
    .contacth1{
        font-size: 42px;
    }
    .contactp{
        font-size: 18px;
    }
    .contact-cards{
        margin: 30px 15px;
    }
    .location{
    margin-top: 20px;
}
}
@media (max-width:370px){
    .contacth1{
        font-size: 35px;
    }
    .contactp{
        font-size: 15px;
    }
    .location{
    margin-top: 20px;
}
}
/* Contact section end */
/* Footer section start */
.footer-section{
    background-color: rgb(138, 27, 27);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border-top: 4px solid rgb(220, 170, 80);
}
.footerh1{
    color: rgb(220, 170, 80);
    font-size: 50px;
    margin-bottom: 5px;
}
.footerp{
    color: white;
    font-size: 20px;
    margin-top: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.footer-cards{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;    
}
.footer-card{
    background-color: #f8f5f2;
    border-radius: 20px;
    width: 100%;
    max-width: 250px;
    display: grid;
    min-height: 280px;
    gap: 10px;
    padding: 10px 20px;
    min-height: 220px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    text-align: left;
    transition: 0.3s;
}
.footer-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.footer-card h3{
    color: rgb(220, 170, 80);
    font-size: 25px;
    margin-bottom: 0;
    text-align: center;
}
.footer-card p{
    font-size: 20px;
    font-weight: bold;
    color: rgb(138, 27, 27);
    margin: 0;
    text-align: left;
}
.footer-card a{
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    color: rgb(138, 27, 27);
    text-align: left;
}
.footer-card a:hover{
    color: #555;
}
.footer-card a i{
    margin-right: 8px;
}
.copyright{
    color: white;
    font-size: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
}
@media (max-width:500px){
    .footerh1{
        font-size: 42px;
    }
    .footerp{
        font-size: 17px;
    }
}
@media (max-width:420px){
    .footerh1{
        font-size: 37px;
    }
    .footer-card{
        max-width: 100%;
    }
}
@media (max-width:320px){
    .footerh1{
        font-size: 32px;
    }
    .footerp{
        font-size: 15px;
    }
}
/* Footer section end */