/* ================= Base Body Styles ================= */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  font-size: 14px;
  background-color: #ffffff;
}

/* Banner */
.banner img { 
  width: 100%; 
  height: auto; 
  display: block; 
}

/* Headings */
h1 {
  font-weight: 100;
  line-height: 45px;
  color: #7baf26;
  font-size: 22px;
  margin: 30px 0 15px 0;
}

h2 {
  font-weight: 100;
  line-height: 25px;
  color: #7baf26;
  font-size: 20px;
  margin: 20px 0 0px 0;
}

h3 {
  font-weight: 100;
  line-height: 20px;
  color: #7baf26;
  font-size: 17px;
  margin: 0 0 0.625rem 0;
  word-break: break-word;
}

p {
  line-height: 1.5;
  margin: 10px 0;
}

/* ================= Layout ================= */
.content-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px auto;
  width: 90%;
  gap: 20px;
  align-items: flex-start;
}

.content-main {
  flex: 0 0 65%;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  min-height: 400px;
}

.content-sidebar {
  flex: 0 0 25%;
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

.sidebar-placeholder {
  background: #ffffff;
  padding: 15px;
  border-radius: 8px;
}

/* ================= Sidebar Navigation ================= */
.NavLinkWrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.NavLinkWrapper img {
  display: inline-block;
  vertical-align: middle;
}

.NavLink {
  font-family: Arial, Helvetica, sans-serif; 
  font-size: 12px;
  text-decoration: none;
  font-weight: 100;
  color: #444444;
  line-height: 1.2;
}

.NavLink:hover {
  color: #7baf26;
}

/* ================= Tour Cards ================= */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 20px 0 40px 0;
  align-items: stretch;
}

.tour-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.tour-card .rate {
  font-size: 16px;
  margin: 8px 0;
  color: #222;
}

.tour-card .Description {
  font-size: 15px;
  color: #444;
  margin: 10px 0 18px;
  line-height: 1.4;
  flex-grow: 1;
}

.TourInfo-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #01542a;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.25s ease;
}

.TourInfo-btn:hover {
  background: #01743e;
}

/* ================= Individual Tour Page ================= */
.tour-main-img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.tour-photos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.tour-photos img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 6px;
}

/* Info table styling */
.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.info-table td {
  padding: 8px;
  background-color: #f7f7f7;
  border: 1px solid #cccccc;
  color: #434446;
  vertical-align: top;
}

.info-table tr:nth-child(odd) td {
  background-color: #f0f0f0;
}

/* Sections */
.section {
  margin-bottom: 25px;
}

/* Book Now Button */
.book-now-btn {
  display: inline-block;
  padding: 12px 20px;
  background-color: #01542a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease;
  text-align: center;
  margin-top: 20px;
}

.book-now-btn:hover {
  background-color: #7baf26;
}

/* ================= Responsive Styles ================= */
@media (max-width: 1024px) {
  .tour-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 640px) {
  .content-wrapper {
    flex-direction: column;
  }
  .content-main, .content-sidebar {
    flex: 0 0 100%;
  }
  .tour-grid {
    grid-template-columns: 1fr;
  }
  .tour-card img {
    height: 160px;
  }
  .tour-photos {
    justify-content: center;
  }
  .tour-photos img {
    width: 90%;
    height: auto;
  }
}


/* Ensure first column in info tables has the same width */
.info-table td:first-child {
    width: 150px; /* adjust width as needed */
    font-weight: bold;
    vertical-align: top;
}

.tour-features {
    font-size: 1.2em; /* makes it slightly bigger */
    line-height: 1.5; /* improves readability */
}