

.food-body {
  margin: 0;
  font-family: sans-serif;
  background-image: url('images/bg3.png');
  background-repeat: repeat;
  background-size: auto;
  min-height: 100vh;
  padding-bottom: 3rem;
}

.back-home {
  position: fixed;
  top: 1rem;
  left: 1rem;
  font-size: 0.85rem;
  color: pink;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.back-home:hover {
  opacity: 1;
}

/* ── two column ── */

.page-layout {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 4rem 2rem 0;
  width: 100%;
  box-sizing: border-box;
  justify-content: center;
}

/* ── left stickers ── */

.sticker-panel {
  flex: 0 0 180px;
  position: relative;
  min-height: 500px;
}

.sticker {
  position: absolute;
  width: 120px;
}

.s1 { top: 20px;   left: 10px;  transform: rotate(-8deg); }
.s2 { top: 180px;  left: 30px;  transform: rotate(5deg);  }
.s3 { top: 340px;  left: 5px;   transform: rotate(-3deg); }
.s4 { top: 500px;   left: 10px;  transform: rotate(-8deg); }

/* ── right column ── */

.right-column {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.food-header {
  text-align: center;
  margin-bottom: 1rem;
}

.food-header h1 {
  font-size: 2rem;
  color: pink;
  text-shadow: 1px 1px red;
}

/* ── scroll ── */

.food-scroll-box {
  width: 580px;
  max-height: 75vh;
  overflow-y: auto;
  background-color: Lavenderblush;
  border: 2px solid PaleVioletRed;
  border-radius: 8px;
  padding: 0;
  box-sizing: border-box;
}

/* scrollbar styling */
.food-scroll-box::-webkit-scrollbar {
  width: 6px;
}
.food-scroll-box::-webkit-scrollbar-thumb {
  background: LightPink;
  border-radius: 3px;
}

/* ── food entry ── */

.food-entry {
  border-bottom: 1px dashed FireBrick;
  padding-bottom: 1.5rem;
  margin-bottom: 0;
}

.food-entry:last-child {
  border-bottom: none;
}

.entry-header {
  background-color: PaleVioletRed;
  border-bottom: 1px dashed FireBrick;
  padding: 0.5rem 1rem;
}

.entry-title {
  font-size: 1rem;
  font-style: italic;
  color: DarkRed;
}

.entry-body {
  padding: 1rem 1.25rem 0;
  font-size: 0.88rem;
  color: #3a2a10;
  line-height: 1.6;
}

.entry-meta {
  font-style: italic;
  font-size: 0.8rem;
  color: IndianRed;
  margin: 0 0 0.5rem;
}

/* ── text wrap ── */

.entry-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.25);
  margin-bottom: 0.5rem;
}

.img-right {
  float: right;
  margin-left: 1rem;
}

.img-left {
  float: left;
  margin-right: 1rem;
}

/* clearfix so entries don't bleed into each other */
.entry-body::after {
  content: '';
  display: table;
  clear: both;
}

/* ── responsive ── */

@media (max-width: 700px) {
  .page-layout {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem 0;
  }

  .sticker-panel {
    display: none;   /* hide stickers on mobile */
  }

  .food-scroll-box {
    width: 95vw;
    max-height: 70vh;
  }

  .entry-img {
    width: 110px;
    height: 110px;
  }
}