body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f1ea;
}

/* TOP BANNER */
header.top-banner {
  height: 320px;
  display: block;
  overflow: hidden;
}

header.top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}

/* LAYOUT */
.layout {
  display: flex;
  min-height: calc(100vh - 320px);
}

.left-panel,
.right-panel {
  width: 26%;
  padding: 15px;
  background: #f0f0f0;
}

.center-panel {
  width: 48%;
  padding: 20px;
  background: #ffffff;
}

/* TITLES */
.menu-title {
  text-align: center;
  margin: 0 0 20px 0;
}

.map-gallery-title,
.takeaway-title {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  margin: 15px 0 10px 0;
}

/* MENU */
.menu-wrap {
  display: flex;
  justify-content: center;
}

.menu-inner {
  display: flex;
  gap: 4px;
}

.menu-main {
  width: 480px;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.menu-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-side {
  width: 150px;
  height: 480px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-side div {
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.menu-side img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* MENU GALERIE */
.menu-gallery {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.menu-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

/* MAP GALERIE */
.map-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.map-gallery img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

/* RIGHT GALLERY */
.right-gallery {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.right-gallery img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}

/* SOCIAL */
.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

.social-icons img {
  width: 28px;
  height: 28px;
}

/* LIGHTBOX */
#lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  z-index: 999999;
}

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  display: block;
}