* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: white;
  padding: 1rem 2rem;
  position: fixed;
  top: 0;
  z-index: 1000;
  width:100vw;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.book-btn {
  background-color: #ff7f50;
  border: none;
  padding: 0.5rem 1rem;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

.featured-destination {
  background: url('bali.png') no-repeat center center/cover;
  height: 70vh;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.buttons button {
  background-color: #ff7f50;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  cursor: pointer;
  border-radius: 5px;
}

.popular-destinations {
  padding: 3rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.destination-card {
  background-color: #f3f3f3;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  
}

.destination-card img {
  width: 80%;
  border-radius: 10px;
  height: 400px;
}

.destination-card:hover {
  transform: translateY(-5px);
}

.travel-packages {
  padding: 3rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.packages-container {
  display: flex;
  justify-content: space-around;
}

.package-card {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  width: 30%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.package-card button {
  background-color: #ff7f50;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
}

footer {
  background-color: #333;
  color: white;
  padding: 2rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-container div {
  width: 25%;
  margin: 0.5rem 0;
}

.footer-container h4 {
  margin-bottom: 1rem;
}

.footer-container ul {
  list-style: none;
  padding: 0;
}

.footer-container a {
  color: white;
  text-decoration: none;
  display: block;
  margin: 0.5rem 0;
}

.footer-container p {
  margin: 0.5rem 0;
}