
body{
    height: 100vh;
    width: 100%;
    overflow-x: hidden;   
}
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/* facilities css code start */

.facilities-grid {
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}
nav{
    font-size: large;
    color: white;
}
.hero-img{
  width:100%;
  height:100vh;
  object-fit:cover;
}

.facility-card {
     background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 25px;
    padding: 30px 20px 20px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
}
.facility-card:hover{
    transform: translateY(-10px);
    box-shadow: #333 0 10px 20px;
}

.facility-card .icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
    background: rgba(255,255,255,0.3);
    padding: 15px;
    border-radius: 50%;
}

.facility-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #ff3c00;
}
.facility-card p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}
/* facilities css code end */
/* food css code start */


.food-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.food-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.food-section h1 {
    font-weight: 700;
}

.food-section h5 {
    color: #ff6600;
    font-weight: 600;
}
.dish{
    height: 100px;
    width: 100px;
    border-radius: 100px;
    transition: all 2s ease;
}
.dish:hover{
   
    transform: rotate(360deg);  
}
/* food css code end */
/* whatsapp logo css code start */
.whatsapp-float {
    position: fixed;
    bottom: 20px;     /* Distance from bottom */
    left: 20px;      /* Distance from right */
    z-index: 9999;    /* Always on top */
}

.whatsapp-icon {
    width: 90px;
    height: 80px;
    border-radius: 50%;
    background: white;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}
/* whatsapp logo css code end */
/* review card start */
.card{
  border-radius:20px;
}

.card-body{
  font-size:15px;
  color:#555;
}
/* review card end */
/* Book your stay start */
.booking-box {
  max-width: 100%;
  margin: 40px auto;
  padding: 30px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.booking-box h2 {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  margin-bottom: 6px;
}

.form-group input,
.form-group select {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}
.facilities-grid a{
  text-decoration: none;
}
.book-btn {
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover {
  background: #b8962e;
}


/* Book your stay end */
/* customize nav start */
.custom-navbar {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  transition: 0.4s;
}

/* Nav Links */
.navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  margin: 0 14px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #f8b400;
  transition: 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  color: #f8b400;
}

/* Transparent Book Button */
.btn-book {
  color: #fff;
  border: 2px solid #f8b400;
  background: transparent;
  padding: 7px 22px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}
.navbar-toggler{
  color:white;
  border-color:white;
  background-color: white;
}

.btn-book:hover {
  background: #f8b400;
  color: #000;
}

/* Scroll Effect */
.navbar.scrolled {
  background: #000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

/* customize nav end */
footer ol{
  list-style: none;
  
}