/* === Base Styles === */
body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Slab', serif;
  line-height: 1.7;
  background-color: #fdf6ec; /* unified beige */
  color: #333;
  overflow-x: hidden;
}

/* === Navbar === */
.navbar {
  background-color: #FBFCFA !important;
  border-bottom: 1px solid #d6cfc9 !important;
  font-family: 'Roboto Slab', serif;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  padding-top: max(safe-area-inset-top, 12px);
  padding-bottom: max(safe-area-inset-bottom, 12px);
}

.offset-navbar {
  padding-top: 70px;
}

/* === Containers === */
.container,
.menu-content {
  max-width: 800px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.menu-content {
  padding: 2rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* === Jumbotron === */
.jumbotron {
  background-color: #ede0d4 !important;
  background-image: none !important;
  padding: 4rem 2rem;
}

/* === Typography === */
.lead {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  color: #a94442;
  font-weight: 700;
}

.roboto-slab {
  font-family: 'Roboto Slab', serif;
}

.beige-bg {
  background-color: #ede0d4 !important;
}

/* === Logo === */
.logo-blend {
  box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #ede0d4;
  border: 2px solid #ede0d4;
}

.logo-small {
  max-width: 220px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .logo-small {
    margin-top: 1rem;
  }
}

/* === Contact Info === */
.contact-info {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-info span {
  margin: 0.5rem 1rem;
}

.icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.contact-link {
  text-decoration: none;
  color: #2c3e50;
}

.contact-link:hover {
  text-decoration: underline;
  color: #1a73e8;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.icon-wrapper {
  min-width: 2rem;
  width: 30px;
  display: flex;
  justify-content: center;
  margin-right: 10px;
}

/* === Business Hours === */
.business-hours {
  margin: 3rem auto;
}

/* === Table Styles === */
.table-responsive {
  overflow-x: auto;
}

table {
  width: 100%;
  table-layout: fixed;
  word-wrap: break-word;
}

td,
th {
  white-space: normal;
  overflow-wrap: break-word;
  vertical-align: middle;
  padding: 0.75rem 1rem;
}

th {
  font-weight: 700;
}

.highlight-row {
  background-color: #e5edf6;
}

/* === List Styles === */
.info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

/* === Buffet Card === */
.buffet-card {
  background-color: #fff;
  border: 1px solid #e2ded7;
  max-width: 250px;
  flex: 1 1 200px;
  transition: box-shadow 0.3s ease;
  font-family: 'Roboto Slab', serif;
  color: #3c3c3c;
}

/* === Menu Section === */
.menu-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.menu-note {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #444;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25em;
  color: #333;
  margin-top: 2rem;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.5rem;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  margin-top: 0;
  font-style: italic;
}

/* === Menu List === */
.menu-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dotted #ddd;
  font-size: 1rem;
}

.price {
  font-weight: bold;
  margin-left: 1rem;
  color: #2c3e50;
}

.description {
  font-size: 0.9rem;
  color: #777;
  display: block;
  margin-top: 0.25rem;
}

/* === Responsive Images === */
img {
  max-width: 100%;
  height: auto;
  display: block;
}