/* ================================
   HEADLINE
================================ */
.headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
}

/* ================================
   CITY TEXT (Rotating)
================================ */
.city {
  display: inline-block;
  margin-left: 10px;
  white-space: nowrap;
  padding: 0 8px;             /* spacing around the text */
  border-radius: 4px;          /* optional rounded corners */
  font-family: 'Fraunces', serif;
  font-size: 1.08em;
  font-weight: 600;
  color: #FFFFFF;              /* white text */
  background-color: #FF0000;   /* solid red background */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* ================================
   ANIMATION STATES
================================ */
.fade-out {
  opacity: 0;
  transform: translateY(-8px);
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}
