/* styles.css */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #111;
}

.header {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.header img {
  width: 100%;
  max-width: 700px; /* match tour content */
  border-radius: 6px;
}

.tour-dates {
  max-width: 700px;
  margin: 0 auto 2rem auto;
  padding: 0 1rem;
}

.tour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.tour-date {
  font-weight: bold;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
}

.tour-venue a {
  color: #0070f3;
  font-weight: bold;
  text-decoration: none;
}

.tour-venue a:hover {
  text-decoration: underline;
}

.tour-city {
  color: #333;
  font-size: 0.9rem;
}

.ticket-btn {
  background: #0000ff;
  color: white;
  font-weight: bold;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.ticket-btn:hover {
  background: #3333ff;
}
