/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.logo {
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}

.hamburger {
  width: 24px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: red;
  margin: 5px 0;
}

/* NAV */
.nav {
  position: fixed;
  top: 60px;
  right: -100%;
  width: 100%;
  height: calc(100vh - 60px);
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  transition: right 0.3s ease;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.nav a.active {
  opacity: 0.5;
}

.nav.open {
  right: 0;
}

/* TOUR HERO */
.tour-hero {
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 60px;
}

.tour-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  letter-spacing: 6px;
}

.tour-hero p {
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.7;
}

/* TOUR LIST */
.tour {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px 80px;
}

.tour-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid #222;
  padding: 24px 0;
}

.date {
  text-align: center;
  width: 70px;
}

.date .day {
  font-size: 28px;
  font-weight: 500;
}

.date .month {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.6;
}

.details h3 {
  font-size: 16px;
}

.details p {
  font-size: 13px;
  opacity: 0.6;
}

/* TICKETS */
.ticket {
  border: 1px solid red;
  padding: 8px 18px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
  text-decoration: none;
}

.ticket:hover {
  background: red;
}

.ticket.sold {
  border-color: #555;
  color: #555;
  pointer-events: none;
}

/* SOCIAL */
.social-bar {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 20px;
}

.social-bar a {
  color: #666;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-bar a:hover {
  color: #fff;
  transform: translateY(-2px);
}


/* FOOTER */
.footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 12px;
  color: #777;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: #777;
  margin: 0 10px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

/* MOBILE */
@media (max-width: 600px) {
  .tour-row {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .date {
    width: auto;
  }

  .ticket {
    align-self: flex-start;
  }
}

/* DESKTOP NAV FIX */
@media (min-width: 1024px) {

  .hamburger {
    display: none;
  }

  .nav {
    position: static;
    height: auto;
    width: auto;
    flex-direction: row;
    background: transparent;
    gap: 32px;
    right: 0;
    transition: none;
  }

  .nav a {
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.8;
  }

  .nav a:hover {
    opacity: 1;
  }
}

