/* ======================
   NAVIGATION BUTTON
   ====================== */

.nav-button {
  position: fixed;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 1000;
}

.nav-button:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
}

/* ======================
   SOUP OF THE DAY PAGE
   ====================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0a0a0a;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 20px;
  max-width: 900px;
}

.title {
  color: #e8a045;
  font-family: 'Fredoka One', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: 400;
}

.photo-container img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.loading {
  color: #e8a045;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1.2rem;
}
