/* ============ Base & Background ============ */
:root {
  --content-width: 700px;
  --brand-ink: #111;
  --venue: #766064;
  --btn: #56483D;
  --btn-hover-bg: #F9C8E8;
  --btn-hover-ink: #56483D;
  --border: #ddd;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(to bottom, #F9C8E8 0%, #ffffff 100%);
  color: var(--brand-ink);
}

/* ============ Sticky Header (logo) ============ */
.sticky-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  padding: 0.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* border-bottom: 1px solid var(--border); */
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}

.sticky-header img {
  max-height: 50px;
  max-width: 200px;
  object-fit: contain;
}

/* ============ Shared Width Container ============ */
.page-container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 1rem; /* breathing room on mobile */
}

/* ============ Video Header ============ */
.video-header {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
}

.header-video {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;  /* unclickable */
  user-select: none;
  -webkit-user-drag: none;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0); /* tweak if you want darkening */
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .header-video { display: none; }
  .video-header { min-height: 160px; background: #00000010; }
}

/* ============ Content Section (white card) ============ */
.content-section {
  background: #fff;
  margin-top: 1rem;
  padding: 2rem 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Title */
.tour-title {
  margin: 0 auto 1rem auto;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ Tour List (Grid Layout) ============ */
.tour-dates {
  margin: 0 auto 1rem auto;
}

.tour-item {
  display: grid;
  grid-template-columns: 1fr auto; /* info | button */
  align-items: center;
  column-gap: 1rem;
  border-bottom: 1px dashed var(--border);
  padding: 1rem 0;
}

.tour-date {
  font-weight: 800;
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.tour-venue a,
.venue-plain {
  color: var(--venue);
  font-weight: 700;
  text-decoration: none;
}

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

.tour-city {
  color: #444;
  font-size: 0.92rem;
}

/* Button */
.ticket-btn {
  color: #fff;
  background: var(--btn);
  font-weight: 800;
  padding: 0.6rem 1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, transform 0.05s;
  white-space: nowrap;
}

.ticket-btn:hover {
  background: var(--btn-hover-bg);
  color: var(--btn-hover-ink);
}

.ticket-btn:active {
  transform: translateY(1px);
}

.ticket-btn.tbd {
  background: transparent;
  color: var(--btn);
  cursor: default;
  pointer-events: none;
  border: 1px solid var(--btn);
}

/* ============ Footer ============ */
.site-footer {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  /* border-top: 1px solid var(--border); */
  font-size: 0.95rem;
  color: #555;
}

.site-footer a.instagram-link {
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.5rem;
  transition: transform 0.2s;
  vertical-align: middle;
}

.site-footer a.instagram-link:hover { transform: scale(1.1); }
