/* ===================================
   BarcelonaMap - Stili per itinerari
   =================================== */

/* Layout generale della sezione */
.content-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

/* Titolo principale */
.content-section h2 {
  font-size: 1.8rem;
  color: #c8102e;
  text-align: center;
  margin-bottom: 1rem;
}

.content-section .intro {
  text-align: center;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Griglia a colonne per la timeline */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.timeline-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Box di ogni sezione */
.timeline-item {
  background: #fff;
  border-left: 5px solid #c8102e;
  padding: 1.4rem 1.6rem;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.timeline-item h3 {
  font-size: 1.3rem;
  color: #222;
  margin-bottom: 0.6rem;
}

.timeline-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-item li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.timeline-item li strong {
  color: #b71c1c;
}

/* Box consigli */
.tips {
  background: #fff7e6;
  border-left: 5px solid #ffc107;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.tips h4 {
  margin-bottom: 0.5rem;
  color: #b76e00;
}

.tips ul {
  margin: 0;
  padding-left: 1rem;
}

.tips li {
  margin-bottom: 0.4rem;
}

/* Adattamento desktop: due colonne */
@media (min-width: 900px) {
  .timeline-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-section h2 {
    font-size: 2rem;
  }
}
