/* assets/css/tour.css */
/* Page-only TOUR layout (matches reference screenshot) */

.tourPage{
  background:#000;
  min-height:100vh;
}

/* top spacing like the reference */
.tourHero{
  padding: 86px 0 56px;
}

.tourHero__inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 22px;
  text-align:center;
}

.tourHero__tagWrap{
  display:flex;
  justify-content:center;
  margin-bottom: 12px;
}

.tourHero__tag{
  display:inline-block;
  padding: 6px 10px;
  border: 2px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.75);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: 10px;
  background: rgba(0,0,0,.20);
}

.tourHero__title{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: rgba(255,255,255,.92);
  font-size: clamp(30px, 3.6vw, 46px);
}

/* Table wrapper */
.tourSection{
  padding: 0 0 90px;
}

.tourSection__inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 22px;
}

/* HEAD row */
.tourHeadRow{
  display:grid;
  grid-template-columns: 140px 420px 1fr 180px;
  gap: 0;
  padding: 16px 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.30);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 10px;
}

.tourHeadCell--right{
  text-align:right;
}

/* ROWS */
.tourRows{
  width:100%;
}

.tourRow{
  display:grid;
  grid-template-columns: 140px 420px 1fr 180px;
  align-items:center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .18s ease;
}

/* Cells */
.tourCell{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  color: rgba(255,255,255,.78);
}

.tourCell--date{
  color: rgba(255,255,255,.88);
}

.tourCell--venue{
  color: rgba(255,255,255,.55);
  font-weight: 800;
  letter-spacing: .06em;
}

/* right */
.tourCell--cta{
  display:flex;
  justify-content:flex-end;
}

/* Learn more */
.tourLink{
  text-decoration:none;
  color: rgba(255,255,255,.60);
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 11px;
  display:inline-flex;
  align-items:center;
  gap: 10px;
}

.tourArrow{
  font-size: 11px;
  opacity: .9;
}

/* Hover effect: subtle like your reference (not white block) */
.tourRow:hover{
  background: #ffffff;
}

.tourRow:hover .tourCell{
  color: #000000;
}

.tourRow:hover .tourCell--venue{
  color: rgba(0,0,0,.65);
}

.tourRow:hover .tourLink{
  color: #000000;
}

.tourRow:hover .tourArrow{
  opacity: 1;
}

/* ================= TOUR STATS ================= */

.tourStats{
  padding: 90px 0 80px;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background:#000;
}

.tourStats__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  text-align:center;
}

.tourStats__tagWrap{
  margin-bottom: 40px;
}

.tourStats__tag{
  display:inline-block;
  padding: 6px 12px;
  border: 2px solid rgba(255,255,255,.35);
  color:#fff;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:11px;
}

.tourStats__grid{
  display:flex;
  justify-content:center;
  gap: 60px;
  flex-wrap:wrap;
}

.tourStatBox{
  width: 220px;
  height: 90px;
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.tourStatBox__number{
  font-size: 22px;
  font-weight: 900;
  letter-spacing:.08em;
}

.tourStatBox__label{
  font-size: 10px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color: rgba(255,255,255,.65);
}


/* ================= TOUR GALLERY ================= */

.tourGallery{
  padding: 80px 0 100px;
  background:#000;
}

.tourGallery__inner{
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 22px;
}

.tourGallery__grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.tourGallery__grid img{
  width:100%;
  height: 300px;
  object-fit:cover;
  filter: grayscale(100%) contrast(1.05);
  transition: transform .3s ease, filter .3s ease;
}

.tourGallery__grid img:hover{
  transform: scale(1.03);
  filter: grayscale(0%) contrast(1.1);
}

/* responsive */
@media (max-width: 900px){
  .tourGallery__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px){
  .tourGallery__grid{
    grid-template-columns: 1fr;
  }
}


/* Responsive */
@media (max-width: 1050px){
  .tourHeadRow,
  .tourRow{
    grid-template-columns: 120px 320px 1fr 160px;
  }
}

@media (max-width: 820px){
  .tourHeadRow{ display:none; }

  .tourRow{
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px 0;
  }

  .tourCell{
    text-transform:none;
    letter-spacing: normal;
    font-size: 13px;
  }

  .tourCell--venue{
    font-size: 12px;
    opacity: .9;
  }

  .tourCell--cta{
    justify-content:flex-start;
  }
}
