

#header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
  }

  body {
    position: relative; /* Ensure positioning for the child element */
    height: 100vh;
    margin: 0;
  }
  
  #logo {
    width: 100px;
    height: auto;
  }
  
  
  
  #footer-logo {
    width: auto; 
    height: auto; 
  }

  #footer-logo img {
    max-width: 70%;
    height: auto; 
    display: block; 
  }

  #ezebooking {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
  }
  
  #navigation .nav-link {
    margin-right: 15px;
    font-size: 1rem;
    color: #0a0a0a;
  }
  
  #navigation .nav-link:hover {
    color: #0a0a0a;
  }
  
  .nav-link {
  font-weight: normal;
}

.nav-link.active, .nav-link.current {
  font-weight: bold;
}
  

  #backimage {
    position: relative; /* No absolute positioning */
    width: 100%; /* Make it responsive */
    height: 60vh; /* Adjust height dynamically */
    background-image: url('../images/backimage.jpg'); /* Replace with actual image path */
    background-size: cover; /* Ensures the image covers the full section */
    background-position: center top;/* Centers the image */
    background-repeat: no-repeat; /* Prevents repeating */
    margin: 0; /* Remove any margin */
    padding: 0px; /* Remove any padding */
    box-sizing: border-box; /* Ensure borders/padding do not affect the width/height */
  }

  .card-img-top, .carousel-item img {
    height: 200px;
    object-fit: cover;
}
.truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
/* Loader Styling */
.loader {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    
}
  
  .container-fluid {
    padding: 0; /* Remove padding from container */
    margin: 0; /* Remove margin from container */
  }
  
  .paragraph{
      margin-top:14pt;
      margin-bottom:14pt;
      line-height:normal;
      font-size:12pt;
      font-family:'Times New Roman'
  }
  
  .specify-ol {
  margin: 0pt;
  padding-left: 0pt;
  list-style-type: decimal; 
}

.specify-ol li {
  margin-top: 14pt;
  margin-left: 32pt;
  line-height: normal;
  padding-left: 4pt;
  font-family: 'Times New Roman';
  font-size: 12pt;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Times New Roman', serif;
  font-weight: bold;
  line-height: 1.2;
  color: #222; /* or any preferred text color */
  margin-top: 1.2em;
  margin-bottom: 0.6em;
}


  #footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0e0c03;
    padding: 20px;
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 14px;
  }

  #footer-nav {
    margin-top: 10px; /* Space between copyright and links */
  }

  #footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    text-align: center;
    font-size: 14px;   
  }
  
    #footer-nav-second {
    margin-top: 5px; /* Space between copyright and links */
  }

  #footer-nav-second a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    text-align: center;
    font-size: 14px;   
  }
  
  /* Social Media Icons */
  #social-icons {
    display: flex;
    gap: 10px;
  }

  #social-icons img {
    width: 30px;
    height: 30px;
    cursor: pointer;
  }

  #linkedin, #facebook {
    background-color: #007ad9;
    border-radius: 50%;
    padding: 5px;
  }

  #copyright {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    align-items: center;    /* Center-align items horizontally */
    justify-content: center; /* Center content vertically */
    width: 100%;
    padding: 20px 0;        /* Add vertical padding */
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 14px;        /* Adjusted font size for better readability */
    font-weight: 100;
    background-color: #0e0c03;
  }
  
  #footer-nav {
    margin-bottom: 10px; /* Add space below the navigation links */
  }
  
  #footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    margin: 0 10px; /* Add spacing between links */
  }

  #listmyhotel{
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 17px;
    font-weight: 400;   
    width:120px
  }
  
  
  #search {
    height: 182px; /* Set a fixed height for larger screens */
    background: #ffffff;
    background-blend-mode: normal;
    box-shadow: 0px 4px 4px 13px rgba(219, 207, 207, 0.27);
    border-radius: 10px;    
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }


 
  
  /* For small screens, set a more flexible height */
  @media (max-width: 576px) {
    #search {
      height: auto; /* Let the height adjust automatically on very small screens */
      padding: 15px; /* Add some padding for smaller screens */
    }

  }

  @media (max-width: 436px) {
    /* Container adjustment */
    .container-fluid {
      padding: 0 10px;
    }
  
    /* Row alignment */
    .row {
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: stretch;
    }
    #cityProper, #checkInDisplay, #checkOutDisplay, #roomsGuest, #pricePerNight {
      padding: 18px !important;
      cursor: pointer;
      user-select: none;
    }

  
    /* Search box */
    #search {
      width: 70%;
      padding: 10px;
    }

    #searchButton{
      margin-top: 12px !important ;
    }
  
  
    #cityProper {
      font-size: 14px;
      padding-bottom: 10px;
    }
  
    #searchInput {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
    }
  
    /* Recent and Popular Searches */
    #recentSearches, #popularLocations {
      margin-top: 10px;
    }
  
    .search-item {
      font-size: 12px;
      padding: 5px 0;
    }
  
    /* Date Displays */
    .date-display {
      font-size: 14px;
      margin-bottom: 10px;
    }
  
    /* Rooms and Guests */
    #roomsGuest {
      font-size: 14px;
      margin-bottom: 10px;
    }
  
    #dataRoomsGuest {
      display: flex;
      flex-direction: column;
    }
  
    #roomNumber, #adultNumber, #kidNumber {
      font-size: 12px;
    }
  
    /* Popup styling */
    .popup_rooms_guest, .popup_price_per_night {
      width: 100%;
      padding: 20px;
      background-color: white;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
  
    .popup_rooms_guest input, .popup_price_per_night ul {
      width: 100%;
      padding: 10px;
      margin-bottom: 10px;
    }
  
    .popup_rooms_guest button, .popup_price_per_night button {
      width: 100%;
      padding: 10px;
      background-color: #007bff;
      color: white;
      border: none;
      cursor: pointer;
    }
  
    .popup_rooms_guest button:hover, .popup_price_per_night button:hover {
      background-color: #0056b3;
    }
  
    /* Price Per Night */
    #pricePerNight {
      font-size: 14px;
      margin-bottom: 10px;
    }
  
    #priceOptions li {
      font-size: 12px;
      padding: 8px 0;
    }
  
    /* Ensure smaller elements do not get crowded */
    .error {
      font-size: 12px;
      color: red;
    }

    
  }
  
  #searchButton{
    margin-top: -68px;
   
  }

  
#search div {
  margin-bottom: 4px; /* Space between each section */
}

#cityProper, #checkInDisplay, #checkOutDisplay, #roomsGuest, #pricePerNight {
  padding: 35px; /* Padding for the sections */
  cursor: pointer;
  user-select: none;
}

#location, #dateCheckIn, #dateCheckOut, #roomNumber, #adultNumber, #rooms, #adultNumber,#dateCheckInWeekday, #dateCheckOutWeekday,#kidNumber,#pricePerNightText {
  font-size: 16px; 
  font-weight: bolder;
}

.popup_rooms_guest {
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 15px;
  z-index: 1000;
  display: none;  /* Hide by default */
  border-radius: 8px;
  width: 250px;  /* Adjust width as needed */
}



.popup_rooms_guest label {
  display: block;
  margin-top: 10px;
}

.popup_rooms_guest input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.popup_rooms_guest button {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup_rooms_guest button:hover {
  background-color: #0056b3;
}

.popup_rooms_guest .error {
  color: red;
  margin-top: 5px;
}

.kid-age_rooms_guest {
  margin-top: 5px;
}

.popup_price_per_night {
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 15px;
  z-index: 1000;
  display: none;
  border-radius: 8px;
  width: 200px;
}

#priceOptions {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

#priceOptions li {
  padding: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

#priceOptions li:hover {
  background-color: #f5f5f5;
}

#priceOptions li.selected {
  background-color: #007bff;
  color: white;
  font-weight: bold;
}

#applyPriceFilter {
  width: 100%;
  padding: 8px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#applyPriceFilter:hover {
  background-color: #0056b3;
}

#cityProper {
  position: relative;
  width: 300px;
  cursor: pointer;
}


#suggestionsList {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#searchInput {
  width: calc(100% - 20px);
  padding: 10px;
  margin: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#recentSearches, #popularLocations {
  padding: 10px;
  border-top: 1px solid #eee;
}

#recentSearches strong, #popularLocations strong {
  display: block;
  margin-bottom: 5px;
  color: #555;
}

.search-item {
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 5px;
}

.search-item:hover {
  background-color: #f5f5f5;
}


.highlighted-room {
    border: 2px solid #f39c12; /* Orange border */
    background-color: #fff3cd; /* Light yellow background */
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.clickable {
    cursor: pointer;
    border: 1px dashed #007bff; /* Highlight when empty */
    padding: 0.2px;
    text-align: center;
}

#dataRoomsGuest {
  display: flex;
  flex-wrap: wrap; /* Ensures the content wraps when needed */
  justify-content: space-between; /* Adds space between items */
  margin-bottom: 15px; /* Adjust space between sections */
}

/* For larger screens (desktops) */
@media (min-width: 992px) {
  #dataRoomsGuest {
    flex-direction: column; /* Align items in a horizontal row */
  }

  #dataRoomsGuest > div {
    flex: 1 1 20%; /* Each item takes up 20% of the width */
  }
}

/* For smaller screens (tablets and mobiles) */
@media (max-width: 991px) {
  #dataRoomsGuest {
    flex-direction: column; /* Stack items vertically on smaller screens */
  }

  #dataRoomsGuest > div {
    flex: 1 1 100%; /* Each item takes 100% of the width */
    margin-bottom: 10px; /* Space between the items on smaller screens */
  }

html, body {
    overflow: auto !important;
    height: auto !important;
}



}
