/* tour.css */
.hero-tour {
  background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85));
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--neon-green);
}
.hero-tour h1 {
  font-size: 4.5rem;
  text-shadow: 0 0 40px var(--neon-green);
}
.hero-tour .hero-sub {
  font-size: 1.4rem;
  margin-top: 15px;
  max-width: 700px;
}

.tour-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tour-item {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 30px;
  align-items: center;
  transition: all 0.4s;
}
.tour-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(0, 255, 159, 0.3);
}

.tour-date {
  text-align: center;
}
.tour-date .month {
  font-size: 1.1rem;
  color: var(--neon-pink);
  font-weight: 700;
}
.tour-date .days {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: white;
}

.tour-info h2 {
  margin: 0 0 12px 0;
  color: white;
}
.tour-location {
  color: #ccc;
  font-size: 1.05rem;
}

.tour-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 160px;
}

.btn-calendar,
.btn-ticket {
  padding: 12px 24px;
  border-radius: 50px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}
.btn-calendar {
  background: transparent;
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
}
.btn-ticket {
  background: var(--neon-green);
  color: #000;
}

.tba .tour-date .days {
  font-size: 1.8rem;
  color: #888;
}