body {
  margin: 0;
  padding: 0;
  background: #f8f6f1;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

header {
  background: #800000;
  color: white;
  padding: 0.5rem 1rem 1rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  position: relative;
}

header img {
  width: 100px;
  height: auto;
  border-radius: 10px;
}

h1 {
  margin: 0;
  font-size: 2.8rem;
}

.brand {
  color: #ffeb3b;
  font-weight: bold;
}

.subheader {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.phone-highlight {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
  background: #fff;
  color: #800000;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  display: inline-block;
  margin-top: 1rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.menu-section {
  max-width: 1000px;
  margin: 1rem auto;
  padding: 1rem 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.menu-section h2 {
  border-left: 5px solid #800000;
  padding-left: 10px;
  margin-top: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #800000;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

th,
td {
  padding: 12px 10px;
  text-align: left;
}

th {
  background-color: #f0e5dc;
  font-weight: bold;
}

td:last-child,
th:last-child,
th.price,
td.price {
  text-align: right;
}

tr:nth-child(even) {
  background-color: #fdf8f4;
}

tr:hover {
  background-color: #ffe9e0;
}

.description {
  max-width: 900px;
  margin: 30px auto 10px auto;
  background: #fff3f0;
  border-left: 6px solid #8B0000;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 1.13rem;
  line-height: 1.6;
  color: #444;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scroll-padding-top: 60px;
}

nav {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 5px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

nav a {
  position: relative;
  padding: 5px;
  font-weight: 600;
  color: #8B0000;
  background: none;
  border: none;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #8B0000;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

@media screen and (max-width: 600px) {
  header img {
    width: 80px;
  }

  .menu-section {
    padding: 1rem;
  }

  table,
  th,
  td {
    font-size: 14px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .menu-section h2 {
    font-size: 1.5rem;
  }

  .phone-highlight {
    font-size: 1.2rem;
    padding: 0.3rem 0.8rem;
  }

  .description {
    padding: 15px;
    font-size: 1rem;
  }

  html {
    scroll-padding-top: 230px;
  }

  nav {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  nav a {
    width: 90%;
    text-align: center;
    font-size: 1rem;
    padding: 4px;
  }
}