/* zanzibar.css - Cleaned Styles for zanzibar.setml */

/* Hero Section */
.zanzibar-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zanzibar-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 42, 68, 0.4) 0%, rgba(216, 169, 3, 0.2) 40%, rgba(26, 42, 68, 0.5) 100%);
  z-index: -2;
}

.zanzibar-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #F9F4E8;
  padding: 3rem 1rem;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1.2s ease-out forwards;
}

.zanzibar-hero .hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 5vw, 2.5rem);
  margin-bottom: 0.7rem;
  line-height: 0.9;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #D8A903;
}

.zanzibar-hero .hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  margin-bottom: 1.0rem;
  font-weight: 300;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  color: #F9F4E8;
}

.zanzibar-hero .btn-primary {
  padding: 0.75rem 1.17rem;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #D8A903, #A68A64);
  color: #F9F4E8;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(216, 169, 3, 0.5);
}

.zanzibar-hero .btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(216, 169, 3, 0.4);
}

.zanzibar-hero .hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.zanzibar-hero .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

/* Introduction Section */
.intro-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #F9F4E8, #E8E2D9);
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(216, 169, 3, 0.2);
}

.intro-brief {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #4A2C2A;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #D8A903;
  border-radius: 2px;
}

.lead {
  font-size: 1.3rem;
  color: #6B4E31;
  line-height: 2;
  margin-bottom: 2.5rem;
}

.intro-nav-bar {
  text-align: center;
  margin-bottom: 4rem;
}

.route-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 1.2rem 2.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.route-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(216, 169, 3, 0.25);
}

.route-item {
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: #4A2C2A;
  cursor: pointer;
  padding: 0.6rem 1.2rem;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  border-radius: 0.6rem;
}

.route-item:hover,
.route-item.active {
  color: #fff;
  background: #D8A903;
  transform: scale(1.05);
}

.route-content {
  max-width: 1050px;
  margin: 0 auto;
}

.route-description {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.route-description.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.route-description {
  opacity: 0;
  transform: translateY(20px);
}

.route-hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.route-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.route-hero:hover img {
  transform: scale(1.1);
}

.route-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #4A2C2A;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.route-brief {
  margin-bottom: 2.5rem;
}

.route-brief p {
  font-size: 1.2rem;
  color: #6B4E31;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.route-packages {
  margin-top: 2.5rem;
}

.packages-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #4A2C2A;
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.package-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.package-card:hover img {
  transform: scale(1.1);
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}

.package-content h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
  color: #9ACD32;
  font-weight: 700;
}

.package-content p {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #fff;
}

.package-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.package-cta {
  font-size: 1rem;
  color: #D8A903;
  text-decoration: none;
  border: 2px solid #D8A903;
  padding: 0.6rem 1.2rem;
  border-radius: 0.6rem;
  transition: color 0.4s ease, border-color 0.4s ease;
  background: transparent;
}

.package-cta:hover {
  color: #fff;
  border-color: #fff;
}

/* Testimonials Section */
/*.testimonials-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #F9F4E8, #E8E2D9);
  position: relative;
  overflow: hidden;
}

.testimonials-section .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #4A2C2A;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonials-section .section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #D8A903;
  border-radius: 1.5px;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.testimonial-slide.active {
  display: block;
}

.testimonial-text {
  font-size: 1.2rem;
  color: #6B4E31;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  font-size: 1rem;
  color: #4A2C2A;
  font-weight: 500;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(216, 169, 3, 0.8);
  color: #fff;
  border: none;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
  background: #D8A903;
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
} */

/* === Elite Experiences Section === */
.elite-experiences {
  padding: 4rem 0;
  background: #fff;
}
.elite-experiences .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--earth-brown);
  text-align: center;
  margin-bottom: 1rem;
}
.elite-experiences .lead {
  font-size: 1.1rem;
  color: var(--muted);
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3rem;
}
.elite-experiences .experience-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.elite-experiences .experience-tile {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.elite-experiences .experience-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}
.elite-experiences .experience-tile img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  filter: brightness(0.9);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.elite-experiences .experience-tile:hover img {
  transform: scale(1.05);
  filter: brightness(0.5);
}
.elite-experiences .tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,93,52,0.7) 30%, transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  text-align: left;
}
.elite-experiences .tile-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
  color: #D8A903;
}
.elite-experiences .tile-overlay p {
  font-size: 0.95rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .elite-experiences .experience-tile img {
    height: 180px;
  }
}



  /* Explore Zanzibar Section */
.explore-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #A68A64, #D8A903);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.explore-section .container {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.explore-section .section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #F9F4E8;
  margin-bottom: 1rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
}

.explore-section .section-heading::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #D8A903;
  border-radius: 1.5px;
}

.explore-section .lead {
  font-size: 1.2rem;
  color: #F9F4E8;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  font-weight: 300;
  opacity: 0.9;
}

.explore-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.explore-image {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.explore-cta {
  padding: 0.75rem 1.17rem;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #D8A903, #A68A64);
  color: #F9F4E8;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(216, 169, 3, 0.5);
}

.explore-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(216, 169, 3, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .explore-section {
    padding: 3rem 0;
  }
  .explore-section .section-heading {
    font-size: 2rem;
  }
  .explore-section .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .explore-image {
    max-width: 100%;
  }
  .explore-cta {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .zanzibar-hero {
    min-height: 50vh;
  }
  .zanzibar-hero .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .zanzibar-hero .hero-subtitle {
    font-size: 0.8rem;
  }
  .zanzibar-hero .btn-primary {
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
  }
  .intro-section {
    padding: 3.5rem 0;
  }
  .intro-brief {
    padding: 1.5rem;
    margin-bottom: 3rem;
  }
  .section-heading {
    font-size: 2.2rem;
  }
  .lead {
    font-size: 1.1rem;
  }
  .route-nav {
    flex-wrap: wrap;
    gap: 1.2rem;
    padding: 1rem 1.5rem;
  }
  .route-item {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }
  .route-hero img {
    height: 250px;
  }
  .route-title {
    font-size: 1.8rem;
  }
  .route-brief p {
    font-size: 1.1rem;
  }
  .packages-heading {
    font-size: 1.7rem;
  }
  .package-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .package-card {
    height: 350px;
  }
  .package-content h5 {
    font-size: 1.3rem;
  }
  .package-content p {
    font-size: 1.1rem;
  }
  .package-cta {
    font-size: 0.9rem;
  }
  .testimonials-section {
    padding: 3rem 0;
  }
  .testimonial-slide {
    padding: 1.5rem;
  }
  .testimonial-text {
    font-size: 1.1rem;
  }
  .testimonial-author {
    font-size: 0.9rem;
  }
  .explore-section {
    padding: 3.5rem 0;
  }
  .explore-section .section-heading {
    font-size: 2.2rem;
  }
  .explore-section .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .explore-content {
    flex-direction: column;
    gap: 2rem;
  }
  .explore-image {
    width: 100%;
  }
}


/* ==========================================================
   RESPONSIVE FIXES FOR MOBILE + TABLET (600px – 1024px)
   ========================================================== */

/* Tablets: 769px – 1024px */
@media (max-width: 1024px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr); /* 3 → 2 columns */
  }

  .route-hero img {
    height: 300px; /* reduce image height */
  }

  .intro-brief {
    padding: 2rem;
  }

  .route-title {
    font-size: 1.9rem;
  }

  .lead {
    font-size: 1.15rem;
  }
}

/* Mobile: 600px – 768px */
@media (max-width: 768px) {
  .package-grid {
    grid-template-columns: 1fr; /* stack packages */
  }

  .route-nav {
    flex-wrap: wrap;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
  }

  .route-hero img {
    height: 220px;
  }

  .package-card {
    height: 320px; 
  }
}

/* Very small phones: below 600px */
@media (max-width: 600px) {
  .zanzibar-hero .hero-title {
    font-size: 1.4rem;
  }

  .zanzibar-hero .hero-subtitle {
    font-size: 0.8rem;
  }

  .intro-brief {
    padding: 1.2rem;
  }

  .section-heading {
    font-size: 1.7rem;
  }

  .route-item {
    font-size: 1rem;
  }

  .package-content h5 {
    font-size: 1.2rem;
  }

  .lead {
    font-size: 1rem;
  }
}


/* Mobile & Tablet Fix for intro-nav-bar (TOP ATTRACTIONS Navigation) */
@media (max-width: 992px) {
  .intro-nav-bar {
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .route-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    padding: 1rem 1rem;
    width: 100%;
  }

  .route-item {
    font-size: 1rem;
    padding: 0.55rem 0.9rem;
    border-radius: 0.5rem;
    white-space: nowrap;
  }
}

@media (max-width: 600px) {
  .route-nav {
    gap: 0.5rem;
    padding: 0.8rem;
  }

  .route-item {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
  }
}

