#google_translate_element {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
}

/* Reset and Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

/* Banner */
#banner {
  background: #fff;
  height: 120px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ccc;
}

.left img {
  height: 100px;
}

/* Menu */
#menues {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  height: auto;
  width: 100%;
  z-index: 20;
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-bottom: 2px solid #ccc;
  border-radius: 10px;
  position: relative;
}

/* Individual Menu Items */
.menu {
  position: relative;
}

.menu > a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  padding: 10px 20px;
}

.menu > a:hover {
  color: blue;
}

/* Dropdown Arrow */
.arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.menu:hover .arrow {
  transform: rotate(180deg);
}

/* Submenu */
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border: 1px solid #ccc;
  width: 210px;
  z-index: 10;
  padding: 0;
}

.submenu a {
  color: black;
  padding: 10px;
  display: block;
  text-decoration: none;
}

.submenu a:hover {
  background-color: #d47f55;
}

.menu:hover .submenu {
  display: block;
}

/* Content Area */
#content {
  padding: 20px;
  background: black;
  background-size: cover;
  background-position: center;
  min-height: 100px;
}

/* Search Box */
.search-box {
  padding: 20px;
  text-align: center;
}

.search-box input {
  width: 60%;
  padding: 10px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* Hotel List */
.hotel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 10px;
  justify-content: center;
  background: none;
}

/* Hotel Card */
.hotel-card {
  width: 300px;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Slideshow */
.slideshow {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
}

.slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slideshow img.active {
  opacity: 1;
}

/* View Button */
.view-btn {
  display: block;
  width: 100%;
  padding: 10px;
  background: #282c35;
  color: white;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.3s;
}

.view-btn:hover {
  background: #000;
}

/* Slideshow Navigation */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 10px;
  cursor: pointer;
}

.nav-btn.left {
  left: 10px;
}

.nav-btn.right {
  right: 10px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox img {
  max-width: 80%;
  max-height: 80%;
  display: block;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: red;
  color: white;
  padding: 10px;
  cursor: pointer;
  font-size: 18px;
}

/* ===================== Responsive Styling ===================== */
@media (max-width: 768px) {
  #menues {
    flex-direction: column;
    gap: 15px;
    padding: 10px;
  }

  .menu {
    width: 100%;
    text-align: center;
  }

  .menu > a {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    padding: 10px;
  }

  .submenu {
    width: 100%;
    left: 0;
    border-radius: 0 0 10px 10px;
  }

  .submenu a {
    padding: 8px 12px;
    font-size: 14px;
  }

  .slideshow {
    height: 180px;
  }

  .hotel-card {
    width: 90%;
  }

  .search-box input {
    width: 90%;
  }

  .view-btn {
    font-size: 15px;
  }
}
