* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img {
  max-width: 100%;
  display: block;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #1a1a1a;
  color: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar h1 a {
  color: #ffd700;
  text-decoration: none;
  font-size: 24px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  color: #ffd700;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #222;
}
.page-hero {
  padding: 100px 10% 50px;
  text-align: center;
  background: linear-gradient(to right, #203a43, #2c5364);
  color: white;
}

.page-hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.destination-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 60px 10%;
  background: #f4f4f4;
}

.destination-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.destination-card:hover {
  transform: translateY(-5px);
}

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

.destination-card h3 {
  font-size: 20px;
  margin: 15px;
  color: #222;
}

.destination-card p {
  font-size: 14px;
  margin: 0 15px 20px;
  color: #555;
}
.footer {
  background-color: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
}

body {
  scroll-behavior: smooth;
}
.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 60px 10%;
  background: #f4f4f4;
}

.experience-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-5px);
}

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

.experience-card h3 {
  font-size: 20px;
  margin: 15px;
  color: #222;
}

.experience-card p {
  font-size: 14px;
  margin: 0 15px 20px;
  color: #555;
}
.book-btn,.confirm-btn {
  display: inline-block;
  margin: 0 15px 20px;
  padding: 10px 18px;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.book-btn:hover {
  background-color: #e6c200;
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 60px 10%;
  background: #f9f9f9;
}

.booking-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 20px;
  text-align: center;
}

.booking-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.booking-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #222;
}

.booking-card label {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
}

.booking-card input[type="date"] {
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 5px;
  width: 100%;
}

.confirm-btn:hover {
  background-color: #e6c200;
}
/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* Popup Box */
.popup-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
}

.popup-box h3 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #222;
}

.popup-box label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #333;
}

.popup-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.popup-box button {
  width: 100%;
}

#close-popup {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
  transition: 0.2s;
}

#close-popup:hover {
  color: #000;
}
#success-message h4 {
  color: #28a745;
  font-size: 20px;
  margin-bottom: 10px;
}

#success-message p {
  font-size: 14px;
  color: #333;
}
.contact-form-section {
  padding: 60px 10%;
  background: #f8f8f8;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.success-message {
  margin-top: 15px;
  color: #28a745;
  font-weight: 500;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .booking-grid,
  .experiences-grid {
    padding: 40px 5%;
    gap: 20px;
  }

  .experience-card h3,
  .booking-card h3 {
    font-size: 18px;
  }

  .experience-card p,
  .booking-card label {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .contact-form {
    padding: 25px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 14px;
  }
}
/* Desktop: hide hamburger */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #000;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
  }

  #nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
  }

  #nav-links.show {
    display: flex;
  }

  #nav-links li a {
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
  }
}
.navbar ul li a.active {
  color: #ffd700;
  font-weight: bold;
}
