body{
  font-family: "Montserrat Alternates", sans-serif;
  background-color: #F4F1ED ; /* Optional background color */
  color: #623E2A;
}

/*menu*/
/* General Navbar Styles */
.menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  transition: background 0.3s ease-in-out, padding 0.3s ease-in-out;
  background: transparent; /* Transparent by default */
  color: white;
}

/* Dark background when scrolling */
.menu.scrolled {
  background: rgba(0, 0, 0, 0.9); /* Dark background */
  padding: 10px 20px; /* Slightly shrink navbar */
}

/* Branding */
.branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.branding img {
  height: 40px;
}

/* Navigation */
.nav-main {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.nav-main .navlink a {
  text-decoration: none;
  color: white;
  font-size: 18px;
}

/* Contact Number */
.contact-Num {
  display: flex;
  align-items: center;
}

/* Burger Menu Icon - Hidden by default */
.burger-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Responsive Styles for Small Screens */
@media (max-width: 768px) {
  .nav-main {
      display: none; /* Hide menu by default */
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 0;
      background: rgba(0, 0, 0, 0.9);
      width: 200px;
      text-align: center;
      padding: 10px;
      border-radius: 5px;
  }

  .nav-main.active {
      display: flex; /* Show menu when active */
  }

  .burger-menu {
      display: block; /* Show burger icon on small screens */
  }

  .contact-Num {
      display: none; /* Hide contact number on small screens */
  }
}


.call{
  height: 35px;
}




/* hero section*/
 /* Fullscreen hero section styling */
 .hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Background video styling */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Centered caption box styling */
.hero-caption {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 10px; 
}
.hero-caption p{
  margin-bottom: 50px;
  font-family: "Nunito Sans", sans-serif;
  
}

.hero-caption h1{
  margin: 50px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.hero-caption h5{
  margin: 25px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.hero-caption .btn {
  margin-top: 20px;
  font-family: "Nunito Sans", sans-serif;
  padding: 10px;
}


/* hero section*/

/*about section*/

.about-section {
  background-color: #F4F1ED ; /* Optional background color */
  color: #623E2A;
}

.about-section h3 {
  font-size: 1.75rem;
  font-weight: bold;
  margin: 50px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #555;
  margin: 50px;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.about-img{
  height: 550px;
}


  /*about end */

 /*Rooms*/
 #Rooms {
  background-color: #F4F1ED; /* Optional background */
  color: #623E2A;
  font-family: "Montserrat Alternates", sans-serif;
  font-weight: 400;
}

.Room-img {
  object-fit: cover;
  border: 1px solid #623E2A;;
}

.Rooms-text {
  
  background-color: #F4F1ED;
  border: 1px solid #623E2A;;
}

 /*Rooms*/

 /*kitchen*/
  
   #Open-Kitchen {
    background-color: #F4F1ED;
    font-family: "Montserrat Alternates", sans-serif;


  }

.Kitchen-text p {
    margin-top: 1rem;
    color: #555; /* Optional text color */
}

.Kitchen-img {
    position: relative; /* Required for absolute positioning of img */
}

.kitchen-image, .terrace-image {
    height: 300px; /* Set a fixed height for both images */
    object-fit: cover; /* Ensures images maintain aspect ratio and fill the space */
    width: 100%; /* Ensure images are responsive */
}
.quote{
  font-style: italic;
}
 /*kitchen*/

 /*Amenities*/
 #Amenities{
  background-color: #F4F1ED;
  font-family: "Montserrat Alternates", sans-serif;
  color: #623E2A;

 }


 /*Testimonials*/
#Testimonials{
  background-color: #F4F1ED;
  font-family: "Montserrat Alternates", sans-serif;
  color: #623E2A;

}

 .testimonial-card {
  background-color: #F4F1ED;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
}

.customer-name {
  margin-top: 10px;
  font-weight: bold;
  color: #007bff; /* Bootstrap primary color */
}
 /*Testimonials*/

 /*Contact*/
 #Contact{
  background-color: #F4F1ED;
  font-family: "Montserrat Alternates", sans-serif;
  color: #623E2A;
 }

  /*Contact*/


  /*Footer*/
  footer{
    background-color: #F4F1ED;
    font-family: "Montserrat Alternates", sans-serif;
    color: #623E2A;
  }

  /*others*/
  /* Adjust navbar position below top header */
nav.navbar {
  transition: top 0.3s ease;
}

/* Hide header on scroll */
.hidden-header {
  display: none;
}

/*Whatsapp*/
/* Default style */
.elfsight-app-ea33859d-4bd4-4c2e-8f51-abf5ac0a96b3 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

/* Style adjustments for smaller screens */
@media (max-width: 768px) {
  .elfsight-app-ea33859d-4bd4-4c2e-8f51-abf5ac0a96b3 {
      bottom: 15px;
      right: 15px;
      transform: scale(0.8); /* Resize for smaller screens */
  }
}

@media (max-width: 480px) {
  .elfsight-app-ea33859d-4bd4-4c2e-8f51-abf5ac0a96b3 {
      bottom: 10px;
      right: 10px;
      transform: scale(0.7); /* Resize further for very small screens */
  }
}




