body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: #f8f8f8;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-family: "Lora", serif;
}

header h1 a {
  text-decoration: none;
  color: #333;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

header nav ul li {
  margin-left: 20px;
}

header nav ul li a {
  text-decoration: none;
  color: #555;
  font-weight: bold;
  transition: color 0.3s;
}

header nav ul li a:hover {
  color: #e9a50d;
}

#hero {
  background: linear-gradient(135deg, #f0e6d2, #e0c8a1);
  padding: 60px 0;
}

#hero .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#hero .hero-content {
  flex: 1;
  padding-right: 40px;
}
#hero .hero-image {
  flex: 1;
  text-align: right;
}
#hero .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
#hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Lora", serif;
  color: #333;
}
#hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}
.cta-button {
  display: inline-block;
  background-color: #e9a50d;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #d4940b;
}

#features {
  padding: 60px 0;
}

#features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: "Lora", serif;
}

.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

#map-preview {
  background: linear-gradient(135deg, #f0e6d2, #e0c8a1);
  padding: 60px 0;
}

#map-preview h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: "Lora", serif;
}

.preview-content {
  text-align: center;
}
.preview-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.preview-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#about {
  padding: 60px 0;
}

#about h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-family: "Lora", serif;
}

.about-content {
  text-align: center;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

/*  journey.html styles  */

#journey-hero {
  background: linear-gradient(135deg, #f0e6d2, #e0c8a1);
  padding: 60px 0;
  text-align: center;
}

#journey-hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: "Lora", serif;
}
#journey-hero p {
  font-size: 1.1rem;
}

#journeys-list {
  padding: 60px 0;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.journey-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}
.journey-card:hover {
  transform: translateY(-5px);
}
.journey-card img {
  width: 100%;
  height: 200px; /* fixed height for consistency */
  object-fit: cover;
}

.journey-card h3 {
  padding: 15px;
  margin: 0;
  font-family: "Lora", serif;
}
.journey-card p {
  padding: 0 15px 15px 15px;
}

.learn-more-btn {
  display: inline-block;
  background-color: #e9a50d;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  margin: 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}
.learn-more-btn:hover {
  background-color: #d4940b;
}

.journey-detail {
  padding: 60px 0;
  display: none;
}
.journey-detail.active {
  display: block;
}

.journey-detail h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Lora", serif;
}
.journey-details-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}
.journey-details-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  text-align: justify;
}
.journey-details-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: "Lora", serif;
  text-align: left;
}
.journey-details-content ul {
  text-align: left;
  padding-left: 20px;
}
.journey-details-content li {
  margin-bottom: 5px;
}

.map-image {
  width: 80%;
  max-width: 600px;
  height: auto;
  margin: 20px 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  /* Adjust the hero section to stack vertically */
  #journey-hero .container {
    flex-direction: column;
    text-align: center;
  }
  #journey-hero .hero-content {
    padding-right: 0;
  }
  #Compass {
    text-align: center;
  }
  #journey-hero h2 {
    font-size: 2rem;
    display: flex;
  }
  #journey-hero p {
    font-size: 1em;
  }
  /* Adjust header to display the menu icon and stack navigation */
  header .container {
    position: relative;
  }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  }
  .nav-list {
    display: flex;
    flex-direction: column;
    padding: 15px;
  }
  nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 10px 0;
    font-size: 16px;
  }

  nav.open {
    display: block;
  }

}

@media (max-width: 480px) {
  #hero h2 {
    font-size: 1.8rem;
  }
  #hero p {
    font-size: 0.9em;
  }
}
