/* ===== Google Font ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #333;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 100vh;
  background: url('../images/hero/hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.logo {
  font-size: 42px;
  font-weight: 700;
}

.tagline {
  margin-top: 15px;
  font-size: 20px;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 10px;
  transition: 0.3s ease;
}

.btn-blue {
  background: #1e63d5;
  color: white;
}

.btn-blue:hover {
  background: #0d3c8f;
}

.btn-green {
  background: #25D366;
  color: white;
}

/* ===== NAV ===== */
.navbar {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.menu-icon {
  font-size: 28px;
  cursor: pointer;
  color: white;
}

.side-menu {
  position: fixed;
  right: -250px;
  top: 0;
  height: 100%;
  width: 250px;
  background: #0d3c8f;
  padding: 40px 20px;
  transition: 0.3s;
  z-index: 999;   /* ADD THIS LINE */
}

.navbar {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;  /* ensure clickable */
}

.side-menu a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 20px 0;
}

.side-menu.active {
  right: 0;
}

/* ===== COLLECTIONS ===== */
.section {
  padding: 60px 20px;
  text-align: center;
}

.card {
  text-align: center;
  padding-bottom: 20px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 20px;
  margin-top: 40px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card h3 {
  padding: 15px;
}

/* ===== ITINERARY ===== */
.day-title {
  color: #1e63d5;
  font-weight: 600;
  margin-top: 20px;
}

/* ===== COMING SOON ===== */
.coming {
  color: #e63946;
  font-weight: 600;
  margin-top: 10px;
}

/* ===== FLOAT BUTTONS ===== */
.float-btn {
  position: fixed;
  right: 20px;
  padding: 12px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
}

.whatsapp {
  bottom: 80px;
  background: #25D366;
}

.call {
  bottom: 20px;
  background: #1e63d5;
}

form input {
  width: 100%;
  max-width: 400px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.itinerary-box {
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.day-card {
  margin-bottom: 20px;
}

.day-header {
  background: #1e63d5;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ===== OVERLAY ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== SIDE MENU ===== */
.side-menu {
  position: fixed;
  right: -260px;
  top: 0;
  height: 100%;
  width: 260px;
  background: #0d3c8f;
  padding: 40px 20px;
  transition: 0.4s ease;
  z-index: 999;
}

.side-menu.active {
  right: 0;
}

.side-menu a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 20px 0;
  font-size: 18px;
}

/* ===== CLOSE BUTTON ===== */
.close-btn {
  font-size: 24px;
  color: white;
  text-align: right;
  cursor: pointer;
  margin-bottom: 30px;
}

/* ===== NAVBAR FIX ===== */
.navbar {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.price {
  color: #d5d51e;
  font-weight: 600;
  margin: 8px 0 12px;
  font-size: 16px;
}

/* Fix spacing inside package cards */
.card h3 {
  margin: 10px 0 5px;
  padding: 0; /* remove extra padding */
}

.price {
  margin: 5px 0 10px;
}

.card .btn {
  margin-top: 8px;
}

.coming-price {
  color: #e63946;
  font-weight: 600;
  margin: 6px 0 12px;
  font-size: 15px;
}

/* ===== POPUP ===== */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-content {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===== BACK BUTTON FIX ===== */
.top-nav {
  padding: 20px 40px;
}

.home-btn {
  display: inline-block;
  text-decoration: none;
  background: #1e63d5;
  color: white !important;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s ease;
}

.home-btn:hover {
  background: #0d3c8f;
}