/* Global Styles */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  }

/* Navbar */
.navbar {
  background-color: #008080;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.navbar nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.navbar nav ul li a:hover,
.navbar nav ul li a.active {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: url('images/bg1.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 1rem;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #008080;
  color: white;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #006666;
}

/* Packages Section */
.packages {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #fff;
}

.packages h2 {
  margin-bottom: 2rem;
  color: #008080;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.card {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  overflow: auto-fit;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card h3 {
  color: #008080;
  margin: 1rem 0 0.5rem;
}

.card p {
  padding: 0 1rem 1rem;
}
/* Destination Page */
.page-header {
  text-align: center;
  padding: 6rem 2rem 3rem;
  background-size: cover;
  background-position: center;
  color: white;
  background-color: #004d4d;
}



/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background-color: #008080;
  color: white;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 36px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
/* Responsive Styles */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-icon {
    right: 10px;
    bottom: 10px;
    width: 50px;
    height: 50px;
  }