:root {
  --black: #311F09;
  --golden: #F7C334;
}

html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: Montserrat;
  font-size: 20px;
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #f9f9f9;
  color: #18333f;
  position: relative;
}

header {
  margin-top: 25px;
  position: relative;
  z-index: 100;
}

/* Mobile Menu Styles */
.burger-menu {
  display: none; /* Hidden by default on desktop */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
  position: relative;
  margin-left: 15px;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  padding: 80px 20px 40px;
  transition: right 0.3s ease-in-out;
  z-index: 999;
  overflow-y: auto;
  box-sizing: border-box;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav__list li {
  margin-bottom: 15px;
}

.mobile-nav__list a {
  color: var(--black);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.mobile-nav__list a:hover,
.mobile-nav__list a:focus {
  color: var(--golden);
}

/* Overlay when mobile menu is open */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--black);
  position: relative;
}

.header-content__last {
  align-items: center;
  display: flex;
  gap: 15px;
  color: var(--black);
  margin-left: auto;
}

.header-btn {
  text-decoration: none;
  border-radius: 140px;
  background-color: #F7C334;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-items: center;
  padding: 16px;
}

.header-btn:hover {
  background-color: #253C47;
  transition: all .4s ease;
  transform: scale(1.05);
}

.language-btn {
  text-decoration: none;
  color: var(--black);
  font-weight: 700;
}

.language-btn:hover {
  color: var(--golden);
  transition: color .4s ease;
  transform: scale(1.1);
}

body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  background-color: #f9f9f9;
  color: #18333f;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.menu-grid-section {
  padding: 60px 0;
}

.menu-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 50px;
  color: #e4b640;
  font-weight: 700;
}

.menu-category {
  margin-bottom: 50px;
}

.menu-category h2 {
  font-size: 28px;
  color: #18333f;
  margin-bottom: 25px;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.menu-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 0 15px rgba(0,0,0,0.06);
  padding: 20px 24px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-card:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.menu-card h3 {
  font-size: 18px;
  color: #0c1d2c;
  margin-bottom: 10px;
}

.menu-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 16px;
}

.menu-card .price {
  align-self: flex-end;
  font-weight: bold;
  color: #e4b640;
  font-size: 16px;
}

.menu-nav-container {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  gap: 8px;
}

.menu-nav {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.nav-items {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.nav-items::-webkit-scrollbar {
  display: none;
}

.nav-item {
  font-family: Montserrat;
  font-size: 16px;
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  background: #f0f0f0;
  white-space: nowrap;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.nav-item:hover, .nav-item:focus {
  color: #fff;
  background: var(--golden);
  transform: translateY(-2px);
  text-decoration: none;
}

.nav-item.active {
  background: var(--golden);
  color: #fff;
  font-weight: 600;
}

.nav-arrow {
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 2;
}

.nav-arrow:hover {
  background: var(--golden);
  color: #fff;
  transform: scale(1.1);
}

.nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.nav-arrow svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .menu-nav-container {
    padding: 0 8px;
  }
  
  .nav-arrow {
    display: none; /* Hide arrows on mobile */
  }
  
  .nav-items {
    padding: 8px 0;
    -webkit-overflow-scrolling: touch;
  }
  
  .nav-item {
    font-size: 14px;
    padding: 6px 14px;
  }
  .menu-nav::-webkit-scrollbar {
    display: none;
  }
  .menu-nav a {
    min-width: 120px;
    max-width: 220px;
    margin: 0 4px;
    font-size: 16px;
    padding: 10px 12px;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
    white-space: nowrap;
    font-weight: 700;
    border: 1.5px solid #f7c33422;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    flex: 0 0 auto;
    display: inline-block;
  }
  .menu-nav a:hover, .menu-nav a:focus {
    background: var(--golden);
    color: #fff;
    transform: scale(1.05);
  }
}
