body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #fff2d6;
  color: #222;
}

/* Subtle Pattern Background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(#d4af3730 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: -1;
}

.menu-header {
  text-align: center;
  padding: 60px 20px 30px;
}

.menu-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin: 0;
}

.menu-header p {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 10px;
}

.menu-container {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px 80px;
}

.menu-section {
  margin-bottom: 60px;
}

.menu-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-section li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dotted #bbb;
  font-size: 15px;
}

.menu-section li span:last-child {
  font-weight: 500;
  color: #8b6f3d;
}

.menu-footer {
  text-align: center;
  padding: 40px 20px;
  background: #111;
  color: #eee;
  font-size: 14px;
}

/* PDF Button Section */

.menu-pdf-access {
  margin-bottom: 30px;
}

.pdf-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid #d4af37;
  color: #d4af37;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.pdf-btn:hover {
  background: #d4af37;
  color: #111;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .menu-header h1 {
    font-size: 32px;
  }

  .menu-container {
    padding: 30px 15px 60px;
  }

  .menu-section li {
    font-size: 14px;
  }
}
