@import url('<link href="https://fonts.googleapis.com/css2?family=Chakra+Petch:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">');
body 
{
    overflow-x: hidden; 
    
}

/* ---------------hero container----------- */
.hero-container
{
  position: relative;
  
  padding: 0px !important;
  margin: 0px !important;
}
 
 /* ----------nav bar----------- */
 .navbar
 {
    background-color: rgba(226,213,203,255);
    padding-left: 1.2rem;
    padding-bottom: 0.5rem;
 }
.nav-link
{
  font-size: 18px;
  color: black;
  transition: color 0.3s ease;
}
.nav-link:hover
{

  font-weight: bolder;
  color: darkred !important;
}

.book-btn
{
    background-color: darkred;
    color: white; 
    border: 2px solid; 
    padding: 10px 20px; 
    border-radius: 5px; 
    font-size: 16px; 
    font-weight: bold; 
    text-align: center;
    text-decoration: none; 
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.book-btn:hover
{
    background-color: black;
    color: white;
}

 /* ----------logo--------- */
 .logo
 {
    height: 85px;
 }

 /* ---------------text container------------- */

 .custom-bg-container 
 {
   position: relative;
   width: 100%;
   height: 100vh;
   overflow: hidden;
   margin: 0px !important;
 }
 
 /* --------------sliders---------------- */
 .slider 
 {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;

 }
 
 .slider img 
 {
   width: 100%;
   height: 100%;
   /* object-fit: contain; */
   position: absolute;
   top: 0;
   left: 0;
   opacity: 0; 
   transition: opacity 1s ease-in-out; 
 }
 
 
 .slider img:nth-child(1) { opacity: 1; } 
 
 .custom-bg-container .row 
 {
   position: relative;
   z-index: 2; 
 }
 
 .food-image 
 {
   width: 100%;
   display: block;
   max-width: 100%;
 }
 
 /* -----------service section----------- */

 .service
 {
    color: black;
    transition: transform 0.5s ease;
 } 

 .service:hover 
 {
    background-color: rgba(226,213,203,255);
    transform: translateY(-10px);
 }

/* ------------about section----------- */

.welcome{
  color: red;
  font-size: 2.5rem;
}
.about-img
{
  transition: transform 0.5s ease;
}
.about-img:hover
{
  transform: translateY(-3px);
}

.about-para{
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.col-lg-6 {
  opacity: 0;
  transform: translateX(100px); /* Position off to the right */
  transition: opacity 1s ease, transform 1s ease; /* Smooth transition */
}

/* For the left column */
.col-lg-6.left-column {
  transform: translateX(-100px); /* Position off to the left */
}


.col-lg-6.active {
  opacity: 1;
  transform: translateX(0); /* Bring them back to their original position */
}
.container-xxl{
  overflow: hidden;
}

/* ------hotel----- */

.scroll-heading {
  transition: transform 0.3s ease-out, opacity 0.5s ease-out;
  transform: translateY(20px); /* Initial position */
  opacity: 0; /* Start with the heading invisible */
}

.scroll-heading.visible {
  opacity: 1; 
  transform: translateY(0); 
}

.room-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
  transform: translateY(-10px); /* Lift the card up on hover */
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
  background-color: rgba(226,213,203,255);
}

.room-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-details {
  padding: 20px;
}
.wrapper{
  padding: 70px 0;
  justify-items: center;
  background-color: rgba(226,213,203,255);
}
.booking-form {
  padding: 20px;
  border-left: 5px solid red;
  border-radius: 8px;
  width: 450px; /* Fixed width for larger screens */
  max-width: 90%; /* Max 90% width for smaller screens */
}

/* ----------hotel ends------ */

/*---- restaurant starts----- */
.menu-heading{
  text-decoration: underline;
  text-decoration-color: rgba(226,213,203,255);
  margin-top: 50px !important;
  font-size: 40px;
}
.carousel-item img{
  width: 400px;  
    height: auto;
}
.image-container .col-lg-4 img{
  width: 100%;
  border-radius: 25%;
}
.container .menu-category .menu-container{
  display: flex;
}
.container .menu-category .menu-container img{
  width: 100%;
  height: 450px;
}
.menu-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease-in-out;
}

.menu-item:hover {
  transform: scale(1.05);
  background-color: rgba(226,213,203,255);
}

.menu-item h5 {
  color: #007bff;
}

.image-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.image-container img {
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.image-container img:hover {
  transform: scale(1.1);
}

.image-small {
  width: 150px;
  height: 150px;
}

.image-big {
  width: 300px;
  height: 300px;
}

.text-center {
  margin-top: 30px;
  font-family: 'Arial', sans-serif;
}
.container .view-more-container{
  border: 2px solid black;
  width: 180px;
  height: 50px;
  text-align: center;
  justify-content: center;
  border-radius: 10px;
  margin-top: 15px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.container .view-more-container:hover{
  background-color: rgba(226,213,203,255);
}

/* ---------------menu section------------- */

.heading-container
{
  background-color: rgba(226,213,203,255);
  height: 100px;
  margin: 15px 0px;
}
.food-menu-heading
{
  font-family: 'Arial', sans-serif; 
  text-align: center; 
  color: #8b0916; 
  font-weight: 400; 
  padding-top: 10px;
}

.food-menu-icons
{
  display: flex; 
  align-items: center; 
  text-align: left; 
  margin-left: 1rem; 
  margin-right: 1rem;
  padding-bottom: 1rem; 
  text-decoration: none;
}

.burger-heading{
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem; 
}



/* --------------order section----------- */

.form-cont{
  text-align: center !important;
  justify-content: center !important;
}

.order-food-image
{
  width: 100%;
  height: 100%;
}

/* -------------footer headings--------- */

.footer-headings{
  font-family: 'Secondary Font', sans-serif; 
  margin-bottom: 1.5rem; 
  text-align: left; 
  color: rgba(231,180,85,255);
}


.company-links{
  text-decoration: none;
  color: white;
  transition: 0.3s ease;
}

.company-links:hover{
  transform: translateX(3px);
}


 @keyframes fadeIn 
 {
   0% 
   {
     opacity: 0;
   }
   100% 
   {
     opacity: 1;
   }
 }
 

/* -----------------------------media query----------------------------- */

  @media(max-width: 480px)
  {
    .custom-bg-container{
      height: 28vh;
    }
  }

  @media(max-width: 991px)
  {
    .custom-bg-container{
      height: 50vh;
    }
    .container .menu-category .menu-container{
      display: flex;
      flex-direction: column;
    }
  }

@media(min-width: 1400px) {
  .navbar {
      padding-left: 3rem;  
      padding-right: 3rem; 
  }
  .nav-link {
    font-size: 22px; 
  }
.nav-book-btn {
  padding: 15px 30px; 
  }
}



