/* @2025 - Steffen Klausen - steffen@klausenguldbaek.dk*/
/* - * - * - * - * - * - * - * - * - * - * - * - * */
/* ITINERARY STYLING */

.itinerary {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  margin: 0 auto;
  min-height: 516px;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  /* margin: 2rem auto; */
}

.itinerary-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 1rem 0;
  gap: 2rem;
}

.itinerary-item-plus-bottom {
  padding-bottom: 1.5rem;
}

.itinerary-item-plus-top {
  padding-top: 1.5rem;
}

/* .itinerary-item:not(:last-child):has(+ div)::after { */

div ~ .itinerary-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 2.5rem;
  top: -20%;
  width: 1px;
  height: 2rem;
  background-color: #ddd;
}

.itinerary-time {
  font-size: 1.2rem;
  font-weight: bold;
  min-width: 5rem;
  text-align: right;
}

.itinerary-title {
  font-size: 1rem;
  color: #666;
}

.itinerary-location {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 2rem;
  text-align: right;
  font-size: 1rem;
  line-height: 1.4;
}

.itinerary-separator {
  /* font-size: 1.3rem;
    font-weight: bold; */
  font-size: 1.8rem;
  margin-top: 1.5rem;
  color: #333;
}

.itinerary-separator-first {
  margin-top: 0;
}

.dinner-party {
  display: none;
}

.only-dinner-invites-flex,
.only-dinner-invites {
  display: none;
}

@media (max-width: 1000px) {
  .itinerary-time {
    font-size: 1.4rem;
  }

  .itinerary-title,
  .itinerary-location {
    font-size: 1.2rem;
  }
}