@import url("./header.css");
@import url("./navbar.css");
@import url("./footer.css");


:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #ffffff; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #bb9a49; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1a1a1a; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Section background utility */
.section-bg {
  background-color: #000000; /* default */
}

.section-bg.light-background {
  background-color: #121212;
}


/* Global body background */
body {
  background-color: #000000;
}
.justify-content-center{
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
}
/* ---------------------------------------------
   HERO SECTION
--------------------------------------------- */
.hero-section {
  position: relative;
  width: 100%;
  height: 350px;

  /* background-image is set per page inline */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 80px;
  max-width: 900px;
}

.hero-content h1 {
  font-family: Coldiac;
  font-size: 42px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

/* Hero Responsive */
@media (max-width: 768px) {
  .hero-section {
    height: 280px;
  }

  .hero-content {
    padding: 0 40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    height: 300px;
  }

  .hero-content {
    padding: 0 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }
}

/* Tour Page Specific Styles */
.tour-content-section {
  background-color: #000000;
  padding: 80px 0;
}

.tour-intro {
  max-width: 1200px;
  margin: 0 auto 60px;
  text-align: center;
}

.tour-intro h2 {
  font-family: Coldiac;
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 25px;
}

.tour-intro p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 20px;
}

.tour-section {
  max-width: 1200px;
  margin: 0 auto 60px;
}

.tour-section h3 {
  font-family: Coldiac;
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 25px;
}

.tour-section h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
  margin: 30px 0 15px;
}

.tour-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
  margin-bottom: 20px;
}

.tour-section ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.tour-section ul li {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #cccccc;
  padding-left: 30px;
  position: relative;
  margin-bottom: 12px;
}

.tour-section ul li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.tour-section a {
  color: #BB9A49;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tour-section a:hover {
  color: #BB9A49;
}

.city-highlight {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid #d4af37;
  border-radius: 15px;
  padding: 40px;
  margin: 40px auto;
  max-width: 1000px;
}

.city-highlight p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  margin: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.package-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid #2a2a2a;
  border-radius: 15px;
  padding: 30px;
  transition: all 0.4s ease;
  text-align: center;
}

.package-card:hover {
  border-color: #d4af37;
  transform: translateY(-5px);
}

.package-card h5 {
  font-family: Coldiac;
  font-size: 20px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 15px;
}

.package-card p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 20px;
}

.package-card .btn {
  display: inline-block;
  padding: 10px 25px;
  font-family: McQueen;
  font-size: 14px;
  font-weight: 500;
  color: #121212;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.package-card .btn:hover {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.experience-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.experience-card:hover {
  border-color: #d4af37;
}

.experience-card h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 10px;
}

.reference-link {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #d4af37;
  text-decoration: none;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.reference-link:hover {
  color: #ffffff;
}

.cta-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 2px solid #d4af37;
  border-radius: 20px;
  padding: 60px;
  text-align: center;
  margin: 60px auto;
  max-width: 900px;
}

.cta-section h3 {
  font-family: Coldiac;
  font-size: 36px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-section p {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 30px;
}

.cta-section .btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #121212;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-section .btn:hover {
  background-color: #d4af37;
  border-color: #d4af37;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .tour-intro h2 {
    font-family: Coldiac;
    font-size: 28px;
  }
  
  .tour-intro p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
  }
  
  .tour-section h3 {
    font-family: Coldiac;
    font-size: 24px;
  }
  
  .tour-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
  }
  
  .tour-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
  }
  
  .city-highlight {
    padding: 25px;
  }
  
  .city-highlight p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
  }
  
  .cta-section {
    padding: 40px 25px;
  }
  
  .cta-section h3 {
    font-family: Coldiac;
    font-size: 24px;
  }
  
  .cta-section p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
  }
}

/* FAQ Section Styles */
    .luxury-faq-section {
      background-color: #000000;
    }
    .faq-header {
      margin-bottom: 60px;
    }
    .faq-header h2 {
      font-family: Coldiac;
      font-size: 42px;
      font-weight: 400;
      text-transform: uppercase;
      color: #d4af37;
      margin: 0;
    }
    .faq-wrapper {
      max-width: 1200px;
      margin: 0 auto;
    }
    .faq-item {
      background-color: #1a1a1a;
      border-radius: 8px;
      margin-bottom: 20px;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .faq-item:hover {
      border-color: #d4af37;
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 30px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .faq-question h3 {
      font-family: McQueen;
      font-size: 20px;
      font-weight: 500;
      color: #ffffff;
      margin: 0;
      padding-right: 20px;
    }
    .faq-question i {
      font-size: 1.2rem;
      color: #ffffff;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 30px 25px 30px;
    }
    .faq-answer p {
      font-family: McQueen;
      font-size: 0.95rem;
      line-height: 1.7;
      color: #cccccc;
      margin: 0;
    }
    /* Responsive */
    @media (max-width: 768px) {
      .luxury-faq-section {
        padding: 60px 0;
      }
      .faq-header h2 {
        font-family: Coldiac;
        font-size: 1.8rem;
      }
      .faq-question {
        padding: 20px;
      }
      .faq-question h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
      }
      .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
      }
      .faq-answer p {
        font-family: 'Poppins', sans-serif;
      }
    }
    @media (max-width: 576px) {
      .faq-header h2 {
        font-family: Coldiac;
        font-size: 1.5rem;
      }
      .faq-question h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 0.95rem;
      }
      .faq-answer p {
        font-family: 'Poppins', sans-serif;
        font-size: 0.9rem;
      }
    } 