/* Forno — small extras that complement Tailwind. Palette/fonts live in app/layout.php. */
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; }
body { background-color: #fbf7f0; }

/* Subtle paper grain on cream surfaces */
.bg-cream { background-color: #fbf7f0; }

/* Hero image treatment: dim + warm overlay */
.hero-photo {
  background-size: cover;
  background-position: center;
}
.hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,25,23,.55) 0%, rgba(28,25,23,.35) 45%, rgba(28,25,23,.75) 100%);
}

/* Dotted leader for menu prices */
.leader {
  flex: 1;
  border-bottom: 2px dotted #d6d3d1;
  margin: 0 .65rem .35rem;
  min-width: 1rem;
}
