/* ========================
GLOBAL
======================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;

  /* BACKGROUND IMAGE + ORANGE OVERLAY */
  background: 
    linear-gradient(rgba(244,120,33,0.75), rgba(244,120,33,0.75)),
    url("BG_PukkaFish.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: #fff;
}

/* ========================
TOP BAR
======================== */
.top-bar {
  background: white;
  padding: 20px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

header {
  color: #f47821;
  font-size: 22px;
  font-weight: bold;
}

.pukkafish {
  width: 140px;
  height: auto;
}

@media (max-width: 600px) {
  .pukkafish {
    width: 105px;
  }
}

/* ========================
NAVBAR DESKTOP
======================== */
nav ul {
  list-style: none;
  display: flex;
  gap: 14px;
}

nav ul li a {
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 25px;
  background: #f47821;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li a:hover {
  background: #c45410;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;
}

.close-menu {
  display: none;
}

/* ========================
MOBILE MENU
======================== */
@media (max-width: 600px) {
  .menu-toggle {
    display: block;
  }

  #mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1e1e1e;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: 0.4s;
    z-index: 2000;
  }

  #mobile-menu.active {
    transform: translateY(0);
  }

  #mobile-menu ul {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  #mobile-menu ul li a {
    font-size: 26px;
    background: #f47821;
    width: 220px;
    text-align: center;
  }

  .close-menu {
    display: block;
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 35px;
    border: none;
    background: none;
    color: white;
    cursor: pointer;
  }
}

/* ========================
HERO IMAGE
======================== */
.menuImage {
  position: relative;
  width: 100%;
  height: 42vh;
  overflow: hidden;
}

.menuImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menuImage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

/* ========================
PAGE TITLE
======================== */
.TitleMenu {
  text-align: center;
  font-size: clamp(26px, 5vw, 52px);
  font-weight: 700;
  margin: 40px auto;
  max-width: 850px;
  background-color: rgba(0,0,0,0.55);
  border-radius: 10px;
  padding: clamp(12px, 2vw, 20px);
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ========================
SECTION TITLES
======================== */
.semi-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 32px);
  margin-top: 40px;
  font-weight: bold;
}

.semi-title span {
  display: block;
  font-size: clamp(16px, 2.5vw, 20px);
  opacity: 0.85;
  margin-top: 6px;
}

/* ========================
MENU LIST
======================== */
.menuList {
  max-width: 850px;
  margin: 40px auto;
  padding: clamp(15px, 3vw, 30px);
  background: rgba(0,0,0,0.55);
  border-radius: 10px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ========================
MENU ITEMS
======================== */
.menuItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.25);
}

.menuItem:last-child {
  border-bottom: none;
}

.itemName {
  font-size: clamp(16px, 2vw, 18px);
}

.itemPrice {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: bold;
}

.itemDescription p{
  flex: 1;
  text-align: center;
}

/* ========================
FOOTER
======================== */
footer {
  background: white;
  padding: 30px;
  text-align: center;
}

footer .ftpukkalogo {
  width: 140px;
  height: auto;
}

@media (max-width: 600px) {
  footer .ftpukkalogo {
    width: 110px;
  }
}

/* ========================
PARALLAX FIX FOR MOBILE
======================== */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}