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

body {
  font-family: "Segoe UI", "Noto Sans Thai", sans-serif;
  color: #33241a;
  background: #fff8f0;
  line-height: 1.6;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 30px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #a12c2c;
}

.nav-links {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #33241a;
  font-size: 0.95rem;
}

#lang-toggle {
  margin-left: 20px;
  padding: 6px 14px;
  border-radius: 16px;
  border: 1px solid #a12c2c;
  background: #fff;
  color: #a12c2c;
  cursor: pointer;
  font-size: 0.85rem;
}

.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(135deg, #c0392b, #a12c2c);
  color: #fff;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 24px;
}

.cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-line {
  background: #06c755;
  color: #fff;
}

.btn-call {
  background: #fff;
  color: #a12c2c;
}

main {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}

section {
  margin-bottom: 60px;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.6rem;
  color: #a12c2c;
}

.menu-group {
  margin-bottom: 30px;
}

.menu-group h3 {
  margin-bottom: 12px;
  color: #c0392b;
  border-bottom: 2px solid #f0d9c8;
  padding-bottom: 6px;
}

.menu-list li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #f0d9c8;
}

.price {
  font-weight: 600;
  color: #a12c2c;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  background: #f7e2cc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

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

.review-card {
  background: #fff;
  border: 1px solid #f0d9c8;
  border-radius: 12px;
  padding: 20px;
}

.review-card p {
  margin-bottom: 10px;
  font-style: italic;
}

.review-card span {
  font-size: 0.85rem;
  color: #a0785a;
}

.contact {
  text-align: center;
}

.contact p {
  margin-bottom: 8px;
}

.reserve-form {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.reserve-form input {
  padding: 10px 14px;
  border: 1px solid #f0d9c8;
  border-radius: 8px;
  font-size: 0.9rem;
}

.reserve-form button {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  background: #a12c2c;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.map-placeholder {
  margin-top: 20px;
  height: 180px;
  background: #f7e2cc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0785a;
  font-size: 0.9rem;
}

footer {
  text-align: center;
  padding: 20px;
  color: #a0785a;
  font-size: 0.85rem;
  background: #fff;
}
