* {
  margin: 0;
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  width: 100%;
  padding: 10px 4px;
  position: fixed;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 6px rgba(0, 0, 1, 0.1);
}

nav img {
  height: 60px;
  width: 130px;
  margin-left: 70px;
  filter: contrast(1000);
  filter: brightness(1000);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-right: 70px;
}

nav ul button {
  color: white;
  font-size: 15px;
  border: none;
}

.button-daftar {
  background-color: #5459ac;
  padding: 13px 25px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
}
.button-daftar:hover {
  background-color: #725cad;
  color: white;
}
.button-masuk {
  background-color: whitesmoke;
  cursor: pointer;
  border-radius: 10px;
  padding: 13px 25px;
  color: black;
}

/* bagian hero */
.hero {
  background-image: url("img/hero2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  color: white;
  padding-top: 70px;
}

.hero-content-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-content-text h1 {
  margin-bottom: 20px;
  font-size: 35px;
  margin-top: 80px;
}
.hero-navigasi-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 20px 120px;
  background-color: white;
  border-radius: 50px;
  box-shadow: 0 8px 10px rgba(0, 0, 1, 0.3);
  position: absolute;
  z-index: 1000px;
  top: -40px;
}

.hero-navigasi-container a {
  text-decoration: none;
  color: #56b4e9;
  font-family: sans-serif;
  font-weight: 600;
  padding: 10px;
}
.hero-navigasi-container a:hover {
  background-color: #5459ac;
  color: white;
  border-radius: 10px;
}

.destinasi-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 70px;
}
.card-destinasi {
  background-color: white;
  padding: 70px 100px 40px 100px;
  border-radius: 20px;
  /* menyesuaikan dengan panjang isinya fit-content */
  padding: 70px 80px 40px 80px;
  border-radius: 10px;
  width: fit-content;
  display: flex;
  justify-content: center;
  gap: 70px;
}

input[type="text"] {
  border-radius: 10px;
  padding: 15px 20px;
  border: none;
  box-shadow: 0px 5px 10px rgba(0, 0, 1, 0.3);
}
input[type="text"]:focus {
  outline: none;
}

.tombol-cari button,
.tukar-mode button {
  padding: 15px 25px;
  border-radius: 10px;
  border: none;
  background-color: #56b4e9;
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 10px rgba(0, 0, 1, 0.3);
}

.card-dari,
.card-ke {
  width: fit-content;
}

/* section destinasi */
.container-card {
  padding: 0 100px;
  margin: 20px 0;
}
.judul-card-destinasi {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 25px;
}

.container-card-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(1rem, 1fr));
  gap: 20px;
}
.card {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 1, 0.1);
  background-color: white;
  padding: 10px 10px;
  cursor: pointer;
}
.card img {
  height: 160px;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.card-body {
  padding: 20px;
}

.property-name {
  padding-bottom: 15px;
  font-weight: 600;
}
.card-body .rating,
.card-body .location {
  color: #555;
  font-size: 13px;
  padding: 4px 0;
}

.card-body .price {
  font-weight: 600;
  color: #56b4e9;
  font-size: 17px;
  padding-top: 50px;
}


.judul-card-hotel {
  text-align: center;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 25px;
}

.hotel-card {
  position: relative;
  min-width: 300px;
  max-width: 300px;
  background-color: whitesmoke;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 1, 0.5);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

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

.hotel-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
}

.hotel-info {
  padding: 30px;
}

.hotel-info h3 {
  font-size: 16px;
  margin: 0 0 15px;
}

.hotel-info p {
  font-size: 14px;
  color: #666;
  margin: 0 0 15px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.badge {
  color: black;
  font-weight: bold;
  padding: 8px 8px;
  font-size: 13px;
}

.text {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

.reviews {
  font-size: 12px;
  color: #666;
}

.price {
  font-size: 14px;
  color: #000;
}

.price strong {
  font-weight: bold;
  color: #56b4e9;
}

.heart-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #333;
  font-size: 18px;
  background-color: #fff;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  transition: color 0.3s ease;
  cursor: pointer;
}

.heart-icon:hover {
  color: #fff;
  background-color: #e60023;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px auto;
  overflow: hidden;
  padding: 0 100px;
}

.inspiration__wrapper {
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

.hotel-list {
  display: flex;
  gap: 35px;
  flex-wrap: nowrap;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

.slider-btn {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  background: #fff;
  color: #56b4e9;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0.85;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.18),
    0 1.5px 6px rgba(44, 62, 80, 0.1);
}
.slider-btn.left {
  left: 10px;
}
.slider-btn.right {
  right: 10px;
}
.slider-btn:hover {
  background: #56b4e9;
}

.trusted-service-section {
  padding: 40px 20px;
  background-color: #fff;
}

.service-container {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.service-container > .service-box {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  max-width: 320px;
  min-width: 280px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.service-container > .service-box:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-box img {
  width: 60px;
  height: auto;
  margin-right: 15px;
}

.service-text h3 {
  font-size: 16px;
  margin: 0 0 5px;
  font-weight: 700;
}

.service-text p {
  font-size: 14px;
  margin: 0;
  color: #555;
}

/*  --------------------footer section  ----------------------------------------------*/
footer {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  border-top: solid 1px #dddddd;
  padding: 20px 80px;
}

.footer-img {
  width: 100%;
  height: 90px;
}

.footer-layout {
  display: flex;
  flex-direction: column;
  padding: 0px 10px;
  font-size: 14px;
  gap: 20px;
}

.footer-layout a{
  text-decoration: none;
  padding: 0px 0px 5px 0px;
  color: black;
}

.footer-layout-nomor {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 5px 0px;
}

.footer-layout-email {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 5px 0px;
}
.footer-layout-email a {
  text-decoration: none;
  padding: 0px 0px 5px 0px;
  color: black;
}

.footer-layout-panggilan{
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 5px 0px;
}
.footer-layout-panggilan a {
  text-decoration: none;
  padding: 0px 0px 5px 0px;
  color: black;
}

.perusahaan,
.dukungan,
.produk,
.aplikasi{
  width: 100%;
  padding: 15px 0px;
  font-size: medium;
}
.google-play,
.app-store{
  width: 100%;
  height: 65px;

}
