/* ===========================================
   DAY STORY SECTION
   
   AI-generated narrative about the day in Warsaw.
   The AI observes the city only through data streams.
   =========================================== */

.day-story-section {
  display: none; /* Hidden by default, shown via ?narrative=1 */
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  background: transparent;
}

.day-story-text {
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  font-weight: 400;
  font-style: normal;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  text-align: center;
  margin: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.day-story-text.loaded {
  opacity: 1;
}

.day-story-text:empty {
  display: none;
}

/* Hide when About is active */
body.about-active .day-story-section {
  display: none;
}

@media (max-width: 768px) {
  .day-story-section {
    padding: 1.5rem 1rem;
  }
  
  .day-story-text {
    text-align: left;
  }
}

