

section#tours {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
}

/* Header (Date + Venue in one line) */
.tour-header {
  font-size: 28px;
  font-weight: bold;
  line-height:30px;
  margin-bottom: 5px;
  color: #e9b567;
}
.tour-header span {
  font-weight: normal;
  color: #fff;
}

/* Location small text */
.location {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
}

/* Layout */
.tour-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

/* Left - Image & Text */
.tour-left {
  display: flex;
  flex-direction: column;
}
.tour-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.tour-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.tour-image:hover img {
  transform: scale(1.05);
  filter: brightness(1.2);
}
.tour-footer {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
}

/* Right - Info */
.tour-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
  font-weight: 400;
}
.tour-info .time,
.tour-info .venue {
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tour-info .venue {
  color: #e9b567;
}

.fa-clock-o {
  font-size: 26px;
  color: #fff; /* or another color you prefer */
}

.fa-map-o {
  font-size: 26px;
  color: #e63946; /* optional: keeps same red as venue text */
}

.venue-link {
  color: inherit;           /* same color as surrounding text */
  text-decoration: none;    /* remove underline */
}

.venue-link:hover {
  text-decoration: underline; /* underline only on hover */
  color: #0073e6;            /* optional: light blue hover effect */
}










/* Map */
.map iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}

/* Button */
.buy-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #c69c6d;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s, transform 0.2s;
}
.buy-btn:hover {
  background: #b0895c;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .tour-grid {
    grid-template-columns: 1fr;
  }
  .tour-header {
    font-size: 20px;
	color:#e9b567;
  }
}


.tour-poster {
    width: 100%;       /* Make the image responsive */
    max-width: 800px;  /* Limit the maximum width */
    height: auto;      /* Maintain aspect ratio */
    display: block;    /* Optional: remove inline spacing */
}