/* RESET & GLOBAL */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #0e0e0e, #1b1b1b);
  color: #f5f5f5;
}

/* CONTENT CONTAINER */
.container {
  padding: 20px;
}

/* BANNER */
.banner {
  position: relative;
  background: url("images/banner.jpg") center / cover no-repeat;
  height: 220px;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.banner h1 {
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
}

.banner p {
  font-size: 14px;
  color: #dddddd;
  margin-top: 6px;
}

/* MENU NAV */
.menu-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px;
  background: #0f0f0f;
}

.menu-nav a {
  flex: none;
  padding: 8px 14px;
  border-radius: 20px;
  background: #1c1c1c;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
}

/* SECTIONS & ANIMATION */
.section {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CATEGORY */
.category {
  margin-bottom: 70px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.category.show {
  opacity: 1;
  transform: translateY(0);
}

.category h2 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

/* GRID */
.items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ITEM CARD */
.item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
}

.item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 8px;
  display: block;
}

.item-name {
  margin: 8px 0 4px;
  font-weight: 500;
  font-size: 16px;
}

.price {
  font-weight: 600;
  color: #d4af37;
  font-size: 16px;
  margin-bottom: 8px;
}

/* FOOTER */
.footer {
  background: #1a1a1a;
  color: #ffffff;
  text-align: center;
  padding: 24px 12px;
}

.footer-image {
  width: 100%;
  overflow: hidden;
}

.footer-image img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 16px;
}

/* PHONE LINK FIX */
.footer-phone,
.footer-phone:link,
.footer-phone:visited,
.footer-phone:hover,
.footer-phone:active {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  display: block;
  width: 100%;
  text-align: center;
}

.footer-phone:hover {
  color: #d4af37;
}

.footer-info p {
  margin: 4px 0;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .banner {
    height: 180px;
  }

  .banner h1 {
    font-size: 22px;
  }

  .items {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-image img {
    max-height: 180px;
    border-radius: 12px;
  }
}
