/* style.css */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

.navbar {
  background-color: #004d40;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

.logo {
  margin: 0;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #a7ffeb;
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
              url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e') center/cover no-repeat;
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.about-preview, .packages {
  padding: 40px 20px;
  text-align: center;
}

.btn {
  background-color: #004d40;
  color: white;
  padding: 10px 20px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #00695c;
}

.package-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.package-card {
  background-color: #e0f2f1;
  padding: 20px;
  width: 150px;
  border-radius: 10px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
}

/* ===============================
   TOUR PACKAGES (Dynamic Section)
================================== */
.tour-packages {
  text-align: center;
  padding: 50px 20px;
  background: #f8f8f8;
}

.tour-packages h3 {
  color: #004d40;
  margin-bottom: 15px;
}

.tour-packages label {
  font-weight: bold;
  margin-right: 10px;
}

.tour-packages select {
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.3s ease;
}

.tour-packages select:focus {
  border-color: #004d40;
}

.packages-container {
  margin-top: 25px;
}

.packages-container ul {
  list-style: none;
  padding: 0;
}

.packages-container li {
  background: white;
  margin: 10px auto;
  padding: 12px;
  width: 60%;
  max-width: 400px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  font-weight: 500;
  color: #004d40;
}

/* ===============================
   WHATSAPP FLOATING BUTTON
================================== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 26px;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background-color 0.3s ease;
  z-index: 1000;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #20b958;
}

/* ===============================
   FOOTER
================================== */
.footer {
  background-color: #004d40;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

/* ===============================
   RESPONSIVE DESIGN
================================== */
@media (max-width: 600px) {
  .package-list {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    display: block;
    margin: 10px 0;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .packages-container li {
    width: 80%;
  }
}
