/* Reset and basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2c3e50;
  padding: 1rem 2rem;
  color: #fff;
}

.logo {
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f39c12;
}

/* Banner */
.banner {
  background: url('https://media.istockphoto.com/id/489838744/photo/sunset-over-indian-ocean.webp?a=1&b=1&s=612x612&w=0&k=20&c=pcajBbeOVWWEv0nUnmMpl_936W49YW_wMLCalr53VcI=') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.banner-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.search-form {
  display: flex;
  gap: 1rem;
}

.search-form input,
.search-form button {
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
}

.search-form button {
  background: #f39c12;
  color: #fff;
  cursor: pointer;
}

.search-form button:hover {
  background: #e67e22;
}

/* Services */
.services {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background: #ecf0f1;
}

.service {
  text-align: center;
  max-width: 200px;
}

.service img {
  width: 200px;
  height: 250px;
  margin-bottom: 1rem;
}

/* Destinations */
.destinations {
  padding: 2rem;
  text-align: center;
}

.destination-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  width: 250px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card h3 {
  margin: 0.5rem 0;
}

.card p {
  color: #777;
  margin-bottom: 1rem;
}

/* About */
.about {
  padding: 2rem;
  background: #f9f9f9;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-content img {
  width: 50%;
  border-radius: 5px;
}

.about-content div {
  width: 50%;
}

.about-content ul {
  list-style: disc;
  margin-left: 1.5rem;
  margin-top: 1rem;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-around;
  background: #2c3e50;
  color: #fff;
  padding: 2rem;
}

.footer-links h3 {
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

 
