/* === GLOBAL STYLES === */
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Playfair Display', serif;
  margin: 0;
  background-color: #1e1a26;
  color: #eee;
  overflow-x: hidden;
  max-width: 100vw;
}

/* === HEADER === */
header {
  background: #4b2e83;
  color: #fff;
  padding: 12px 0; /* adds vertical space */
  min-height: auto;
}


@media (max-width: 600px) {
  .logo-img {
    height: 58px;
  }
}
.container.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  height: 54px;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-img {
  height: 85px;
  width: auto;
  margin-right: 12px;
}

/* === MAIN NAVIGATION === */
nav {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li {
  margin-left: 22px;
}
.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 2.5px;
  transition: background 0.2s;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.nav-menu a:hover {
  background: #ffd700;
  color: #463075;
}

/* === CATEGORY NAVIGATION === */
/* === PREMIUM CATEGORY NAVIGATION === */
.category-nav {
  background-color: #4b2e83;
  padding: 16px 0;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.category-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.category-nav li a {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background-color: #3a246c;
  color: #ffd700;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.category-nav li a:hover {
  background-color: #ffd700;
  color: #4b2e83;
  border-color: #ffd700;
  box-shadow: 0 0 8px #ffd700aa;
}


/* === MENU WRAPPER === */
.menu-wrapper {
  padding: 60px 0;
  background: linear-gradient(to right, #1a1423, #24152e);
}
.menu-heading {
  text-align: center;
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 40px;
}
.menu-category h2 {
  font-size: 28px;
  color: #f5e7a1;
  margin-bottom: 20px;
  border-bottom: 2px solid #ffd700;
}
.menu-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.menu-item img {
  width: 100%;
  height: 170px;
  object-fit: contain; /* fits image without cropping */
  background-color: #fff; /* optional: fill empty space */
  border-radius: 10px;
}
@media (max-width: 600px) {
  .menu-item img {
    height: 130px; /* reduce height for small screens */
  }

  .menu-item {
    padding: 10px;
  }

  .menu-info h3 {
    font-size: 1rem;
  }

  .menu-info p {
    font-size: 0.9rem;
  }

  .menu-info .price {
    font-size: 0.95rem;
  }
}

.menu-item:hover {
  transform: scale(1.02);
}
.menu-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.menu-info {
  padding: 15px;
}
.menu-info h3 {
  margin-top: 0;
  font-size: 18px;
  color: #ffd700;
}
.description {
  font-size: 14px;
  color: #ccc;
}
.price {
  display: block;
  font-weight: bold;
  margin-top: 10px;
  color: #fff;
}

/* === FOOTER === */
.footer {
  background: #2e1a47;
  color: #ddd;
  padding: 50px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.footer-col h4, .footer-col h3 {
  color: #ffd700;
  font-family: 'Cinzel', serif;
  font-size: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #444;
  color: #999;
  font-size: 13px;
}

/* === ACTION BUTTONS === */
.fixed-action-bar {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1001;
}
.action-btn {
  background: #ffd700;
  color: #2e1a47;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-family: 'Cinzel', serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  margin-left: 10px;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 4px;
  background: #ffd700;
  border-radius: 3px;
  margin: 4px 0;
  transition: all 0.28s cubic-bezier(.68,-0.55,.27,1.55);
}

@media (max-width: 900px) {
  .nav-menu {
    position: fixed;
    top: 0; right: 0;
    background: #4b2e83;
    flex-direction: column;
    align-items: flex-start;
    width: 210px;
    height: 100vh;
    padding-top: 78px;
    box-shadow: -4px 0 18px #2e1a4744;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(.7,0,.18,1);
    z-index: 1001;
  }
  .nav-menu.open {
    transform: translateX(0);
  }
  .nav-menu li {
    margin: 24px 0 0 22px;
  }
  .hamburger {
    display: flex;
  }
  nav {
    height: auto;
  }
  body, html {
  overflow-x: hidden;
  max-width: 100vw;
}
.hamburger {
  width: 38px;
  min-width: 38px;
  max-width: 44px;
}.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-right: 18px;   /* Add this for mobile space on right */
  padding-left: 10px;    /* Optionally also add left padding for symmetry */
  box-sizing: border-box;
}
}



