/* ========================================================================== */
/* Base / Variables                                                           */
/* ========================================================================== */

body, html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background-color: rgb(228, 228, 222);
  font-family: 'Josefin Sans', sans-serif;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
}

/* ========================================================================== */
/* Typography                                                                 */
/* ========================================================================== */

h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  color: black;
}

h1 {
  font-size: 4.3rem; 
  line-height: 5rem;
}

h2 {
  font-size: 4rem; 
}

h3 {
  font-size: 3rem; 
}

h4 {
  font-size: 2.4rem; 
}

h5 {
  font-size: 1.5rem; 
}

p, span, li {
  font-size: 1rem; 
  font-weight: 400;
  font-family: 'Josefin Sans', sans-serif;
  color: black;
  line-height: 1.5rem;
}


@media (max-width: 1400px) {
  h1 {
    font-size: 4rem; 
    line-height: 5.2rem;
  }
  
  h2 {
    font-size: 3.8rem; 
  }
  
  h3 {
    font-size: 2.7rem; 
  }
  
  h4 {
    font-size: 2.2rem; 
  }
  
  h5 {
    font-size: 1.3rem; 
  }

  a {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1rem;
  }

  .section-subtitle {
    font-size: 2.8rem;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 3.2rem; 
    line-height: 4.8rem;
  }
  
  h2 {
    font-size: 3.5rem; 
  }
  
  h3 {
    font-size: 2.5rem; 
  }
  
  h4 {
    font-size: 2rem; 
  }
  
  h5 {
    font-size: 1.2rem; 
  }

  a, p {
    font-size: 0.8rem;
  }

  .button-link {
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.6rem; 
    line-height: 4rem;
  }
  
  h2 {
    font-size: 2.6rem; 
  }
  
  h3 {
    font-size: 2.2rem; 
  }
  
  h4 {
    font-size: 1.7rem; 
  }
  
  h5 {
    font-size: 1rem;
  }

  a, p {
    font-size: 0.7rem;
  }

  .button-link {
    padding: 7px 14px;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.2rem; 
    line-height: 3.2rem;
  }
  
  h2 {
    font-size: 2rem; 
  }
  
  h3 {
    font-size: 1.8rem; 
  }
  
  h4 {
    font-size: 1.5rem; 
  }
  
  h5 {
    font-size: 1rem; 
  }

  a, p {
    font-size: 0.7rem;
  }

  .button-link {
    padding: 6px 12px;
  }
}


/* ========================================================================== */
/* Links & Buttons                                                            */
/* ========================================================================== */

a {
  text-decoration: none;
  color: black;
  transition: color 0.3s ease;
}

a:hover {
  color: #555; 
}

a:active {
  color: #333; 
}

.button-link {
  text-decoration: none;
  color: black;
  background-color: #ffbb00;
  padding: 10px 20px;
  border-radius: 8px;
  display: inline-block;
  border: none;
  transition: all 0.3s ease-in-out;
}

.button-link:hover {
  background-color: #e6a800; 
  color: black;
  transform: translateY(-2px);
}

.button-link:active {
  transform: scale(0.95); 
}

.button-link:focus {
  outline: none; 
  transform: scale(1.05); 
}

/* ========================================================================== */
/* Landing Section                                                            */
/* ========================================================================== */

.landing-section {
  background: url('/group/images/img1.png') center center/cover no-repeat;
  color: black;
  padding: 8rem 2rem 6rem;
  text-align: center;
  font-family: 'Syne', sans-serif;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.landing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(36, 70, 32, 0.594);
  z-index: 0;
}

.landing-section h1 {
  padding-top: 50px;
  font-size: 3.5rem;
  margin: 0 auto 1rem;
  font-weight: 600;
  max-width: 900px;
  position: relative;
  z-index: 1;
  line-height: 4.5rem;
  color: #ffbb00;
}

.landing-section p {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
  color: white;
}

@media (max-width: 1024px) {
  .landing-section h1 {
    font-size: 3rem;
    line-height: 3.8rem;
  }

  .landing-section p {
    font-size: 1.1rem;
    max-width: 500px;
  }
}


@media (max-width: 768px) {
  .landing-section {
    padding: 5rem 1rem 4rem;
  }

  .landing-section h1 {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }

  .landing-section p {
    font-size: 1rem;
    max-width: 320px;
  }
}

@media (max-width: 440px) {
  .landing-section {
    padding: 3.5rem 1rem 3rem;
  }

  .landing-section h1 {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }

  .landing-section p {
    font-size: 0.9rem;
  }
}

/* ========================================================================== */
/* Featured Trip                                                              */
/* ========================================================================== */

.featured-trip {
  background: #f5f5f5;
  padding: 2rem 1.5rem;
  font-family: 'Josefin Sans', sans-serif;
}

.upcoming-trip-title {
  text-align: center;
  margin-bottom: 10px;
}

.featured-trip-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 12px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.featured-image {
  flex: 1;
  min-width: 280px;
}

.featured-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

.featured-content {
  flex: 1;
  padding: 2rem;
  min-width: 280px;
}

.featured-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  color: #3A4B1E;
  margin-bottom: 1rem;
}

.featured-content p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 1rem;
  line-height: 1.6rem;
}

.featured-date {
  font-weight: 600;
  color: #3A4B1E;
  margin-bottom: 1.5rem;
}

.featured-cta {
  background-color: #ffbb00;
  color: #212a15;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  font-size: 0.9rem;
  transition: all 0.3s ease-in-out;
}

.featured-cta:hover {
  background-color: #e0a700;
  transform: translateY(-2px);
}

.featured-cta:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .featured-trip-container {
    flex-direction: column;
  }

  .featured-content {
    padding: 1.1rem;
    text-align: center;
  }
}






/* ========================================================================== */
/* Main Content Section                                                       */
/* ========================================================================== */

.main-content {
  max-width: 1600px;
  margin: 3rem auto 6rem;
  padding: 0 2rem;
  font-family: 'Josefin Sans', sans-serif;
  color: black;
  line-height: 1.4rem;
  font-weight: 400;
  margin-top: 100px;
}

.main-content h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-align: center;
  color: #222;
}

.main-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
  margin-top: 50px;
  text-align: center;
  padding: 0 30px;
}

@media (max-width: 1024px) {
  .main-content h2 {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .main-content {
    margin: 2rem 1rem 4rem;
  }

  .main-content h2 {
    font-size: 2rem;
  }

  .main-content p {
    margin-top: 35px;
  }
}

@media (max-width: 440px) {
  .main-content h2 {
    font-size: 1.5rem;
    line-height: 2.2rem;
  }

  .main-content p {
    font-size: 0.9rem;
  }
}

/* ========================================================================== */
/* Info Cards                                                                 */
/* ========================================================================== */

.info-cards {
  width: 100%;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 100px;
}

.info-card {
  background: linear-gradient(to bottom, #212a15, #3a4b1e);
  padding: 2rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  width: 280px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: default;
  box-sizing: border-box;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.info-card img {
  width: 110px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

.info-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
  line-height: 2rem;
}

.info-card p {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: white;
  line-height: 1.3rem;
  margin-top: 20px;
}


@media (max-width: 1024px) {
  .info-card {
    width: 220px;
  }
}

@media (max-width: 768px) {
  .info-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .info-card {
    width: 90%;
    max-width: 320px;
  }

  .info-card h3 {
    font-size: 1.3rem;
  }

  .info-card p {
    font-size: 1rem;
  }
}

@media (max-width: 440px) {
  .info-card h3 {
    font-size: 1.1rem;
  }

  .info-card p {
    font-size: 0.9rem;
  }
}



  
/* ========================================================================== */
/* Testimonial Section                                                        */
/* ========================================================================== */

.testimonial-section {
  max-width: 900px;
  margin: 5rem auto 6rem;
  padding: 0 1.5rem;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  color: #222;
  margin-top: 100px;
}

.testimonial-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  padding: 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-dp {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.testimonial-text {
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 600px;
  margin-bottom: 1rem;
  font-style: italic;
  color: #333;
}

.testimonial-stars {
  color: #ffbb00;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
}

.testimonial-dots {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.testimonial-dots .dot {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.testimonial-dots .dot.active,
.testimonial-dots .dot:hover {
  background-color: #ffbb00;
  box-shadow: 0 0 6px rgba(255, 187, 0, 0.6);
  outline: none;
}

@media (max-width: 768px) {
  .testimonial-section {
    margin: 3rem auto 4rem;
  }

  .testimonial-dp {
    width: 70px;
    height: 70px;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .testimonial-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 440px) {
  .testimonial-section h2 {
    font-size: 1.5rem;
  }
}

/* ========================================================================== */
/* Booking Steps Section                                                      */
/* ========================================================================== */

.booking-steps-section {
  max-width: 900px;
  margin: 5rem auto 6rem;
  padding: 0 1.5rem;
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  color: #222;
  margin-top: 150px;
}

.booking-steps-section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  margin-bottom: 3rem;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: nowrap;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: default;
  position: relative;
}

.step-icon {
  background-color: #ffbb00;
  color: black;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  box-shadow: 0 4px 12px rgba(255, 187, 0, 0.5);
  transition: transform 0.3s ease;
}

.step-icon:hover {
  transform: scale(1.15);
}

.step-text {
  font-size: 1.2rem;
  font-weight: 600;
  max-width: 140px;
  line-height: 1.3rem;
  color: #333;
}

/* Horizontal connecting line between steps */
.steps-container::before {
  content: "";
  position: absolute;
  top: 45px; /* center relative to icons */
  left: 8.5%;
  right: 8.5%;
  height: 3px;
  background: #ffbb00;
  z-index: 0;
  border-radius: 2px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -50%;
  width: 100%;
  height: 3px;
  background: transparent;
  z-index: 0;
}

  
@media (max-width: 768px) {
  .steps-container {
    flex-direction: column;
    gap: 3rem;
    position: relative;
  }

  .steps-container::before {
    display: none;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .step {
    position: static;
  }

  .step-text {
    max-width: 100%;
  }
}
  
  
@media (max-width: 440px) {
  .booking-steps-section h2 {
    font-size: 1.5rem;
  }

  .step-text {
    font-size: 1rem;
  }
}
  
