body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: url(images/img1.jpg);
  background-size: cover;
  background-position: center;
}

.navbar {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-items {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.nav-items li {
  position: relative;
}

.nav-items li a {
  color: white;
  text-decoration: none;
  padding: 14px 20px;
  display: block;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
  border-radius: 8px; /* Adds rounded corners */
}

.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 8px; /* Adds rounded corners */
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
  border-radius: 8px; /* Adds rounded corners */
}

.nav-items li a:hover,
.dropdown:hover .dropbtn {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px; /* Keeps rounded corners on hover */
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 8px; /* Keeps rounded corners on hover */
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.search-container {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.search-container input[type="text"] {
  padding: 6px;
  margin-right: 10px;
  font-size: 17px;
  border: none;
  border-radius: 4px;
}

.search-container button {
  padding: 6px 10px;
  background: rgba(221, 221, 221, 0.9);
  font-size: 17px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

.search-container button:hover {
  background: rgba(204, 204, 204, 0.9);
  border-radius: 8px; /* Adds rounded corners on hover */
  transition: background-color 0.3s ease, border-radius 0.3s ease;
}

/* Styles for the Paket Wisata card layout */
.paket-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.paket-container h1 {
  text-align: center;
  margin-bottom: 20px;
  color: white;
}

.paket-card-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.paket-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease-in-out;
  text-align: center;
}

.paket-card img {
  width: 100%;
  height: auto;
}

.paket-card-content {
  padding: 20px;
}

.paket-card-content h2 {
  margin-bottom: 10px;
  font-size: 1.5em;
}

.paket-card-content p {
  color: #555;
  font-size: 1em;
  line-height: 1.5;
}

.paket-card:hover {
  transform: scale(1.05);
}
