/* ============================================
   Calendar page — agenda list
   Save as css/calendar.css
   Adjust the two color values below if they
   differ from your style.css palette:
   gold accent  #c9a86a
   hairline     rgba(201, 168, 106, 0.35)
   ============================================ */

.calendar-section {
  max-width: 820px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

/* Month heading */
.cal-month {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #c9a86a;
  border-bottom: 1px solid rgba(201, 168, 106, 0.35);
  padding-bottom: 0.6rem;
  margin: 3rem 0 0.5rem;
}

.cal-month:first-of-type {
  margin-top: 1rem;
}

/* City / country subheading */
.cal-place {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin: 2rem 0 0.2rem;
}

/* Event row */
.cal-event {
  display: flex;
  align-items: baseline;
  gap: 1.6rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cal-event:last-of-type {
  border-bottom: none;
}

/* Day number */
.cal-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 400;
  min-width: 3.2rem;
  line-height: 1;
}

/* Title + venue */
.cal-info {
  flex: 1;
}

.cal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.02em;
}

.cal-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.65;
  margin: 0.3rem 0 0;
}

/* Optional ticket / registration link */
.cal-link {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: #c9a86a;
  border-bottom: 1px solid #c9a86a;
  padding-bottom: 2px;
  margin-top: 0.7rem;
  transition: opacity 0.3s ease;
}

.cal-link:hover {
  opacity: 0.65;
}

/* Category tag */
.cal-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  opacity: 0.75;
}

/* Performances get the gold treatment */
.cal-tag-performance {
  color: #c9a86a;
  border-color: #c9a86a;
  opacity: 1;
}

/* Closing note */
.cal-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  opacity: 0.7;
  margin-top: 3.5rem;
  text-align: center;
}

.cal-note a {
  color: #c9a86a;
}

/* Mobile: stack the row */
@media (max-width: 560px) {
  .cal-event {
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
  }
  .cal-date {
    min-width: 2.4rem;
    font-size: 1.6rem;
  }
  .cal-tag {
    order: 3;
    margin-left: 3.6rem;
  }
}
