
html {
  font-size: 15px; /* default is 16px → this shrinks everything slightly */
  scroll-behavior: smooth;
} 

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI';
}

body {
  background: #f4f6f8;
  color: #1f2937;
  line-height: 1.6;
  margin: 0;
}
.site-logo {
  height: 100%;
  max-height: 125px;
  width: auto;
  object-fit: contain;
}


.navbar {
  position: sticky;
  height: 75px;
  padding:  12px 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  background-size: 25px 25px, cover;
  background: radial-gradient(rgba(255,255,255,0.25) 1px, transparent 1px),linear-gradient(135deg, #3f5fa8, #4f6fc1);
  color: white;
  align-items: center;
  font-family: "Segoe UI", system-ui, sans-serif;
}
.navbar a.active {
  color: #f0e5e5;
  font-weight: bold;
}
.navbar ul {
  display: flex;
  list-style: none;
}
.navbar ul li a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.9;
}

.navbar ul li a:hover {
  opacity: 1;
}
.navbar ul li {
  margin-left: 20px;
  font-size: 18px;      /* bigger text */
  font-weight: 600;    /* bold but clean */
  letter-spacing: 0.5px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.navbar .social-icons a {
  color: #ffffff;
  font-size: 18px;
  margin-left: 15px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar .social-icons a:hover {
  transform: scale(1.2);
  opacity: 1;
}
.navbar a:hover {
  color: #38bdf8;
}
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.social-icons a:hover {
  transform: scale(1.1);
}

.social-icons a {
  color: #fff;             /* change if navbar bg is light */
  font-size: 18px;
  transition: transform 0.2s ease;
}

/* Brand colors on hover */
.social-icons a:hover .fa-facebook-f {
  color: #1877f2;
}

.social-icons a:hover .fa-instagram {
  color: #e1306c;
}
.weather-pill {
  display: flex;
  color: #1f2937;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #ffffff;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  /* LOWER than navbar */
}

/* =========================
   HAMBURGER
========================= */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}
.hero {
  min-height: 100vh;
    background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(15, 23, 42, 0.75)),
    url("../assets/image/img4.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  color: white;
  text-align: center;
}
.cta-btn {
  padding: 12px 25px;
  background: #38bdf8;
  color: black;
  margin-top: 20px;
  border-radius: 25px;
  text-decoration: none;
}

/* =========================
   PACKAGES (DESKTOP)
========================= */
.packages {
  padding: 60px;
  text-align: center;
}
.packages h2 {
  font-size: 28px;
  margin-bottom: 36px; /* adjust: 30–60px as you like */
}

/* .card-container {
  display: grid;
  grid-template-columns:  1fr;
  justify-content: center;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
} */
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px;
}


.card {
  content-visibility: auto;
  contain-intrinsic-size: 300px;
  max-width: 340px;
  width:100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3;
}
.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.5s ease;
  transform: scale(1.08);
}
.card h3 {
  font-size: 17px;
  margin: 8px 0 4px;
}
.card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card button {
  margin-bottom: 20px;
  padding: 14px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}


.booking-form input, button {
  background: #fff;  
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 15px;
}
.booking-form input,
.booking-form textarea {
  width: 100%;
}
/* =========================
   BOOKING PAGE STYLES
========================= */

.booking-section {
  max-width:900px;
  margin: 60px auto;
  padding: 20px;
}

.booking-section h1 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.booking-form {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.row {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  width: 100%
}

.row div {
  flex: 1;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.booking-form textarea {
  resize: none;
  height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 16px;
  margin-top: 20px;
  border-radius: 30px;
  border: none;
  font-size: 18px;
  font-weight: bold;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(56,189,248,0.4);
}

.success-message {
  display: none;
  margin-top: 25px;
  padding: 15px;
  text-align: center;
  background: #dcfce7;
  color: #166534;
  font-weight: 600;
  border-radius: 10px;
  animation: fadeIn 0.5s ease-in-out;
}
/* .details-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 20px;
} */

.details-section h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.details-section ul {
  margin-top: 20px;
  padding-left: 20px;
}

.details-section li {
  margin-bottom: 10px;
  line-height: 1.6;
}
/* ===== Luxury Editorial Style for Details ===== */
.details-section {
  min-height: 100vh;
  background: #f6efdf; /* soft luxury beige */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 90px 20px 70px;
  font-family: "Georgia", "Times New Roman", serif;
}

/* Title */
#packageTitle {
  font-size: 44px;
  line-height: 1.25;
  font-weight: 500;
  color: #1f1f1f;
  margin-bottom: 10px;
}

/* Duration */
#packageDuration {
  font-size: 18px;
  color: #555;
  margin-bottom: 6px;
}

/* Destination – highlighted like premium red line */
#packageDestination {
  font-size: 18px;
  color: #c82333;
  font-style: italic;
  margin-bottom: 40px;
}

/* Section heading */
.details-section h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1f1f1f;
  margin-bottom: 24px;
}

/* Itinerary list */
#itineraryList {
  list-style: none;
  max-width: 900px;
  padding: 0;
  margin: 0 auto 40px;
}

#itineraryList li {
  font-size: 18px;
  line-height: 1.8;
  color: #2b2b2b;
  margin-bottom: 18px;
  text-align: center; /* editorial look */
}

/* Back button – subtle luxury */
.details-section button {
  background: none;
  border: none;
  color: #1f1f1f;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  position: relative;
}

.details-section button::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  background: #c82333;
  margin: 12px auto 0;
}
/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.contact-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-box p {
  margin: 8px 0;
  font-size: 16px;
}

.contact-form {
  max-width: 400px;
  margin: 25px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

/* Common button style */


/* Individual colors */



.contact-form button:hover {
  background: #e05500;
}
/* =========================
   ABOUT PREVIEW SECTION
========================= */
.about {
  max-width: 900px;              /* prevents long unreadable lines */
  margin: 80px auto 60px;        /* spacing from other sections */
  padding: 40px 30px;
  text-align: center;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.about h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #0f172a;
  letter-spacing: 0.5px;
}

.about p {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  max-width: 700px;
  margin: 0 auto 30px;           /* centers text block */
}

/* Button improvement */
.about .cta-btn {
  display: inline-block;
  padding: 12px 26px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about .cta-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 25px rgba(14,165,233,0.4);
}


.about-page {
max-width: 1000px;
margin: 80px auto 60px;
padding: 40px 24px;
line-height: 1.8;
color: #1f2937;
}

.about-page h1 {
font-size: 42px;
text-align: center;
margin-bottom: 20px;
}

.about-page p {
font-size: 17px;
margin-bottom: 20px;
color: #444;
}
.about-section {
margin-top: 50px;
}

section.about h2 {
font-size: 28px;
margin-bottom: 12px;
color: #0f172a;
}

.about-section ul {
padding-left: 20px;
margin-top: 10px;
}

.about-section ul li {
font-size: 16px;
margin-bottom: 10px;
}
/* Destination field with arrow */
.destination-wrapper {
  width: 100%;
}

.destination-field {
  position: relative;
  width: 100%;
}

.destination-field input {
  width: 100%;
  padding: 14px 45px 14px 14px;
  padding-right: 48px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ccc;
  cursor: pointer;
}

.destination-field input:focus {
  outline: none;
  border-color: #333;
}

.arrow-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #555;
}

.arrow-btn:hover {
  color: #000;
}
.package-dropdown {
  list-style: none;
  padding: 0;
  margin: 5px 0 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  display: none;
  max-height: 220px;
  overflow-y: auto;
  background: #fff;
  position: absolute;
  width: 100%;
  z-index: 999;
}

.package-dropdown li {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
}

.package-dropdown li:hover,
.package-dropdown li.active {
  background: #f0f0f0;
}
/* =========================
   ADV / LOGO SECTION
========================= */

.adv-logos {
  background: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.adv-logos h2 {
  font-size: 30px;
  margin-bottom: 35px;
  color: #0f172a;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.logo-strip img {
  max-width: 110px;
  margin: 0 auto;
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo-strip img:hover {
  transform: scale(1.1);
  opacity: 1;
}
.contact-logo {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}

.contact-logo img {
  width: 48px;
  height: 48px;
}


/* Mobile tweak */
@media (max-width: 600px) {
  .logo-strip {
    gap: 20px;
  }

  .logo-strip img {
    max-width: 90px;
  }
}




@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   TABLET
========================= */

@media (max-width: 768px) {
  .navbar ul {
    background: linear-gradient(135deg, #3f5fa8, #4f6fc1);
  }
  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    z-index: 1100;
  }
  #navLinks {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #3f5fa8, #4f6fc1);
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 30px 0;

    /* animation setup */
    transform: translateY(-120%);
    transition: transform 0.35s ease-in-out;
  }
  #navLinks li {
    margin: 0;
  }
  #navLinks li a {
    color: #38bdf8;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 0;
  }
  #navLinks::before {
    content: "";
    width: 60%;
    height: 1px;
    background: rgba(255,255,255,0.3);
    margin-bottom: 20px;
  }
  .card-container {
    grid-template-columns: 1fr !important;
  }
  #navLinks.active {
    transform: translateY(0);
  }

  #navLinks.active {
    display: flex;
  }
  .row {
    flex-direction: column;
  }
  .about-page {
    margin: 40px auto;
    padding: 20px;
  }

  .about-page h1 {
    font-size: 30px;
  }

  .about-section h2 {
    font-size: 22px;
  }

  .about-page p {
    font-size: 15px;
  }
  #about {
    padding: 30px 18px;
    margin: 50px 16px;
  }

  #about h2 {
    font-size: 26px;
  }

  #about p {
    font-size: 15px;
    line-height: 1.7;
  }
  .hero {
    height: 70vh;
  }

  .hero h1 {
    font-size: 26px;
  }

}


     




