* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 40px;
  background: #0b5ed7;
  color: #fff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

.hero {
  height: 90vh;
  background: url("https://source.unsplash.com/1600x900/?travel") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.btn {
  background: #ff9800;
  padding: 10px 25px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.section {
  padding: 60px 40px;
  text-align: center;
}

.light {
  background: #f4f4f4;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 10px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.info-box {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form input, form textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  background: #0b5ed7;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
}

footer {
  background: #0b5ed7;
  color: white;
  text-align: center;
  padding: 20px;
}
#bookingForm {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#bookingForm input,
#bookingForm select {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#bookingForm button {
  background: #ff9800;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}