*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #1a1a0e;
  font-family: Georgia, 'Times New Roman', Times, serif;
  color: #3d2800;
  line-height: 1.4;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.5rem;
}

.site-header {
  text-align: center;
  padding: 1.5rem 0 0.75rem;
}

.site-header h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: #f0be3c;
  letter-spacing: 0.04em;
  font-weight: normal;
  font-family: Georgia, serif;
  text-transform: uppercase;
}

/* Navigation */
.nav-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  padding: 0.5rem 0 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #1a1a0e 60%, transparent);
}

.nav-menu a {
  color: #e3dbc5;
  text-decoration: none;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: bold;
  padding: 5px 12px;
  border: 1px solid rgba(240, 190, 60, 0.3);
  border-radius: 20px;
  transition: all 0.2s ease;
  background: rgba(70, 80, 40, 0.7);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.nav-menu a:hover {
  color: #f0be3c;
  border-color: #f0be3c;
  background: rgba(240, 190, 60, 0.1);
  transform: translateY(-1px);
}

.menu-section {
  background: #465028;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.menu-grid {
  display: flex;
  flex-wrap: wrap;
}

.menu-col {
  padding: 1rem;
  width: 100%;
}

.menu-col-gold {
  background: #f0be3c;
}

.menu-col-dark {
  background: #465028;
}

.section-photo {
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-photo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .section-photo img {
    width: 80px;
    height: 80px;
  }
}

.section-title {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  text-align: center;
  margin-bottom: 0.75rem;
  color: #3d2800;
  font-weight: bold;
  font-family: Georgia, serif;
}

.menu-col-dark .section-title {
  color: #f0be3c;
}

.subsection-title {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  text-align: center;
  margin: 1rem 0 0.5rem;
  color: #3d2800;
  width: 100%;
  font-weight: bold;
  font-family: Georgia, serif;
}

.menu-col-dark .subsection-title {
  color: #f0be3c;
}

.sub-subsection-title {
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  text-align: left;
  margin: 0.6rem 0 0.3rem;
  color: #3d2800;
  width: 100%;
  font-weight: bold;
  font-family: Georgia, serif;
}

.menu-col-dark .sub-subsection-title {
  color: #e3dbc5;
}

.menu-item {
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(61,40,0,0.15);
}

.menu-col-dark .menu-item {
  border-bottom-color: rgba(227,219,197,0.15);
}

.menu-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.item-name {
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: bold;
  color: #3d2800;
  flex: 1;
}

.menu-col-dark .item-name {
  color: #e3dbc5;
}

.item-price {
  font-size: clamp(0.8rem, 1.4vw, 0.95rem);
  white-space: nowrap;
  color: #3d2800;
  flex-shrink: 0;
}

.menu-col-dark .item-price {
  color: #e3dbc5;
}

.item-desc {
  font-size: clamp(0.65rem, 1.1vw, 0.8rem);
  color: rgba(227,219,197,0.85);
  margin-top: 0.1rem;
  line-height: 1.3;
}

.menu-col-gold .item-desc {
  color: rgba(61,40,0,0.7);
}

.item-img {
  text-align: center;
  margin: 1rem 0;
}

.menu-col-dark .item-img {
  margin: 1.5rem 0;
  display: flex;
  justify-content: flex-end;
}

@media (min-width: 768px) {
  .container {
    padding: 1rem;
  }

  .menu-col {
    padding: 1.5rem;
  }

  .menu-col-gold {
    width: 35%;
  }

  .menu-col-dark {
    width: 65%;
  }

  .menu-item {
    margin-bottom: 0.5rem;
    padding-bottom: 0.35rem;
  }
}
