/* Reset */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&amp;family=Lora:wght@400;700&amp;display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Playfair Display', sans-serif;
  background-color: #f7f5f2;
}
.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgb(68, 65, 63);
  flex-wrap: wrap;
  position: fixed;
  color: #f7f5f2;
  width: 100%;
  z-index: 15;
}
.nav-bar .logo {
  font-size: 24px;
  font-weight: bold;
}
.nav-bar nav {
  display: flex;
}
.nav-bar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
}
#nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
#nav-overlay.active {
  display: flex;
}
#nav-overlay nav {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  width: 80%;
  max-width: 400px;
  text-align: center;
}
#nav-overlay nav a {
  color: white;
  font-size: 28px;
  text-decoration: none;
  padding: 10px;
  border: 2px solid white;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}
#nav-overlay nav a:hover {
  background: white;
  color: black;
}
#nav-overlay .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 400px;
}
.slider .slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slider .slider-track img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  flex-shrink: 0;
}
.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}
.slider button.prev {
  left: 10px;
}
.slider button.next {
  right: 10px;
}
.banner-text {
  text-align: center;
  color: rgb(0, 0, 0);
  z-index: 5;
  padding: 20px;
}
.banner-text h1 {
  font-size: 48px;
  font-weight: bold;
  margin-top: 50px;
}
.banner-text p {
  font-size: 20px;
  margin-top: 10px;
}
.timeline {
  text-align: center;
  padding: 40px 20px;
}
.timeline h2 {
  margin-bottom: 20px;
  font-size: 32px;
}
.timeline-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.timeline-card {
  background: white;
  padding: 20px;
  border: 2px solid rgb(255, 107, 1);
  /* color: white; */
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.itinerary-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  border-radius: 5px;
}
.itinerary-slider .slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.itinerary-slider .slider-track img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  flex-shrink: 0;
}
.itinerary-slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 5px 8px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}
.itinerary-slider button.prev {
  left: 5px;
}
.itinerary-slider button.next {
  right: 5px;
}
.timeline-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.timeline-card ul {
  list-style: none;
  text-align: left;
  padding-left: 20px;
}
.timeline-card li {
  font-size: 16px;
  margin: 5px 0;
}
.pricing {
  text-align: center;
  padding: 40px;
}
.price-card {
  display: inline-block;
  background: rgb(255, 107, 1);
  padding: 20px;
  margin: 10px;
  border: 2px solid white;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  width: 250px;
}
.price-card:hover {
  width: 280px;
}
.price-card h3 {
  font-size: 20px;
}
.price-card p {
  font-size: 24px;
  font-weight: bold;
  color: white;
}
.highlights {
  text-align: center;
  padding: 40px;
}
.highlight-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 15px;
}
.highlight-card {
  background: black;
  color: white;

  padding: 20px;
  border-radius: 8px;
  width: 250px;
  box-shadow: 2px 2px 10px rgb(255, 107, 1,0.4);
}
.highlight-card p {
  font-size: 16px;
  margin-top: 10px;
}
footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
}
#whatsappButton {
  position: fixed;
  bottom: 20px;
  left: 95%;
  background-color: #25D366;
  border: none;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}
#whatsappButton svg {
  width: 50px;
  height: 50px;
}
@media (max-width: 768px) {
  #whatsappButton {
    left: 80%;
  }
  #whatsappButton svg{
    height: 40px;
    width: 40px;
  }
  .slider,
  .slider .slider-track img {
    height: 250px;
  }
  .banner-text h1 {
    font-size: 32px;
    margin-top: 50px;
  }
  .banner-text p {
    font-size: 16px;
  }
  .itinerary-slider,
  .itinerary-slider .slider-track img {
    height: 150px;
  }
  .timeline-card {
    width: 90%;
    margin: 10px auto;
  }
  .nav-bar nav {
    display: none;
    position: fixed;
  }
  .hamburger {
    display: flex;
  }
}

.pricing-button-container {
    text-align: center;
    margin: 2rem 0;
    padding: 1rem;
}

.pricing-button {
    background: #25D366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    margin-bottom: 1rem;
}

.pricing-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.pricing-button i {
    font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
    .pricing-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
}

.price-details {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.price-item {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    text-align: left;
}

.price-label {
    font-weight: 600;
    color: #333;
    display: block;
    padding: 8px 15px;
    border-bottom: 1px solid #eee;
}

@media screen and (max-width: 768px) {
    .price-details {
        width: 90%;
        margin: 1rem auto;
    }
    
    .price-item {
        font-size: 1rem;
    }
}