/* ========================================
   THE WALK - BRAND COLOR SYSTEM
   ======================================== */

/* The Walk Section - Warm Sand Background for Warmth */
.walk-section {
  background: var(--warm-sand);
  padding: var(--space-xl) 2rem;
  min-height: 60vh;
}

.walk-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
  padding: 2rem;
  background: var(--soft-cream);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.walk-intro p {
  color: var(--deep-navy);
  font-size: 1.125rem;
  line-height: 1.9;
  margin-bottom: 0;
  font-style: italic;
}

.walk-list {
  max-width: 900px;
  margin: 0 auto;
}

/* Loading Message */
.loading-message {
  text-align: center;
  color: var(--deep-navy);
  font-size: 1.125rem;
  padding: 3rem;
  font-style: italic;
}

/* Walk Entry */
.walk-entry {
  margin-bottom: 4rem;
  padding: 3rem;
  background: var(--soft-cream);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--rich-gold);
  animation: fadeInUp 0.6s ease-out;
}

.walk-entry:last-child {
  margin-bottom: 0;
}

.walk-date {
  font-size: 0.875rem;
  color: var(--rich-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  display: inline-block;
}

.walk-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-plum);
  margin-bottom: 2rem;
  line-height: 1.3;
}

.walk-content {
  color: var(--deep-navy);
  font-size: 1.1875rem;
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.walk-content p {
  margin-bottom: 1.75rem;
  font-size: 1.1875rem;
  line-height: 1.9;
}

.walk-content p:last-child {
  margin-bottom: 0;
}

/* Authenticity marker */
.walk-entry:nth-child(2n) {
  background: var(--warm-cream);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.empty-state h3 {
  color: var(--deep-plum);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.empty-state p {
  color: var(--deep-navy);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .walk-section {
    padding: var(--space-lg) 1.5rem;
  }

  .walk-intro {
    margin-bottom: 3rem;
    padding: 1.5rem;
  }

  .walk-intro p {
    font-size: 1rem;
    line-height: 1.8;
  }

  .walk-entry {
    margin-bottom: 3rem;
    padding: 2rem 1.5rem;
  }

  .walk-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .walk-content {
    font-size: 1.0625rem;
    line-height: 1.85;
  }

  .walk-content p {
    font-size: 1.0625rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .walk-intro {
    padding: 1.25rem;
  }

  .walk-entry {
    margin-bottom: 2.5rem;
    padding: 1.5rem 1.25rem;
  }

  .walk-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }

  .walk-content {
    font-size: 1rem;
    line-height: 1.8;
  }

  .walk-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .walk-date {
    font-size: 0.8rem;
  }
}

/* Fade In Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
