

/* Parallax Background */
.tour-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1507874457470-272b3c8d8ee2?auto=format&fit=crop&w=1920&q=80') no-repeat center center fixed;
  background-size: cover;
  padding: 80px 20px;
}

.tour-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.2);
}

.tour-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

h1 {
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.tour-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 25px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s;
  flex-wrap: wrap;
}

.tour-item:hover {
  background: rgba(255,255,255,0.05);
}

/* Date block */
.tour-date {
  display: flex;
  align-items: center;
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
  min-width: 120px;
}

.tour-date::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255,255,255,0.25);
}

.day {
  font-size: 3rem;
  font-weight: 900;
  margin-right: 12px;
  line-height: 1;
  color: #fff;
}

.month {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  color: #e9b567;
  display: block;
  line-height: 1.3;
}

.weekday {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  display: block;
  margin-top: 3px;
}

/* Thumbnail close to dates */
.tour-thumb {
  width: 200px;
  height: 130px;
  margin-left: 20px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.4s ease, filter 0.4s ease;
}






.tour-thumb:hover {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.tour-info {
  flex: 1;
  padding: 0 20px;
  min-width: 220px;
}

.tour-name {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.tour-name:hover {
  color: #B48A4A;
}

.tour-meta {
  font-size: 1rem;
  color: #fff;
  margin-top: 6px;
}

.tour-meta i {
  margin-right: 6px;
  color: #fbc470;
}

.tour-actions {
  min-width: 140px;
  margin-top: 10px;
}

/* ✅ Same size buttons on desktop */
.tour-actions a {
  width: 160px; /* fixed width */
  padding: 10px 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #ffc061;
  border: 2px solid #B48A4A;
  background: transparent;
}

.tour-actions a:hover {
  background: #B48A4A;
  color: #111;
}

.sold-btn {
  border: 2px solid #555;
  color: #555;
  cursor: not-allowed;
  opacity: 0.7;
}

.sold-btn:hover {
  background: #555;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .tour-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .tour-date {
    margin-bottom: 10px;
  }

  .tour-date::after {
    display: none;
  }

  .tour-thumb {
    margin: 10px 0;
    width: 100%;
    height: 200px;
  }

  .tour-actions {
    margin-top: 12px;
    width: 100%;
  }

  /* ✅ Smaller buttons on mobile */
  .tour-actions a {
    width: 120px;
    font-size: 0.9rem;
  }
}





.sidebar {

  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  padding: 20px;
  max-width: 350px;
  margin: auto;
}

.sidebar-section {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.mapidea {
flex-wrap: wrap !important;
	
}



.sidebar-section:last-child {
  border-bottom: none;
}

.sidebar-section i {
  font-size: 20px;
  color: #B48A4A;
  min-width: 24px;
  margin-top: 3px;
}

.sidebar-section .text {
  flex: 1;
}

.sidebar-section .text  {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: bold;
  color: #fff!important;
}


.textwhites {

color: #fff !important;	
	
	
}


.sidebar-section .text p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Google Map box */
.map-box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #eee;
}

.map-box iframe {
  width: 100%;
  height: 180px;
  border: 0;
}

/* Venue link below map */
.map-link {
  display: block;
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #B48A4A;
  text-decoration: none;
  transition: 0.3s ease;
}

.map-link:hover {
  text-decoration: underline;
  color: #9d763e;
}

/* Buy Ticket button */
.buy-ticket {
  display: block;
  width: 100%;
  background: #B48A4A;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.buy-ticket:hover {
  background: #9d763e;
}

/* Responsive */
@media (max-width: 500px) {
  .sidebar {
    max-width: 100%;
    padding: 15px;
  }
  .sidebar-section {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .sidebar-section i {
    margin-bottom: 5px;
  }
}











