/* Section Title */
.section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* space between icon and text */
  font-size: var(--font-4xl);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px var(--dark-shadow), -1px -1px 2px var(--light-shadow);
}

.section-icon {
  width: 80px;
  height: 80px;
  stroke: var(--accent, #31C5F4);
  fill: none; /* for inline svg */
  user-select: none;
}


/* Container for all tour entries */
.tour-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* Each tour item */
.tour-card {
  background: var(--bg-color);
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 16px var(--dark-shadow),
              -8px -8px 16px var(--light-shadow);
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
  transition: 0.3s ease;
}

.tour-card:hover {
  box-shadow: inset 8px 8px 16px var(--dark-shadow),
              inset -8px -8px 16px var(--light-shadow);
}

/* Poster image */
.tour-poster {
  width: 180px;
  height: 270px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 6px 6px 12px var(--dark-shadow),
              -6px -6px 12px var(--light-shadow);
  flex-shrink: 0;
}

/* Text content */
.tour-info {
  flex: 1;
}

.tour-location {
  font-size: var(--font-lg);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  text-shadow: 1px 1px 1.5px var(--dark-shadow),
               -1px -1px 1.5px var(--light-shadow);
}

.tour-date {
  font-size: var(--font-base);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--bg-color);
  box-shadow: inset 4px 4px 8px var(--dark-shadow),
              inset -4px -4px 8px var(--light-shadow);
  color: var(--text-color);
  display: inline-block;
  margin-bottom: 1rem;
}

/* Embedded Map */
.tour-map {
  width: 300px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 6px 6px 12px var(--dark-shadow),
              -6px -6px 12px var(--light-shadow);
}

.tour-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .tour-card {
    flex-direction: column;
    align-items: center;
  }

  .tour-poster {
    width: 220px;
    height: 330px;
  }

  .tour-map {
    width: 100%;
    height: 250px;
  }

  .tour-info {
    text-align: center;
  }
}
