:root {
  --krem: #f8efe6;
  --krem-gelap: #ecd7c3;
  --cokelat: #4b2e2b;
  --cokelat-lembut: #7a4d3a;
  --teks: #2a1c1a;
  --putih: #fffdf9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--teks);
  background: var(--krem);
  line-height: 1.6;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  background: var(--putih);
  border-bottom: 1px solid var(--krem-gelap);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}

.logo {
  color: var(--cokelat);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-link {
  color: var(--cokelat-lembut);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-link:hover,
.nav-link.aktif {
  background: var(--krem-gelap);
  color: var(--cokelat);
}

.menu-toggle {
  display: none;
  border: none;
  background: var(--krem-gelap);
  color: var(--cokelat);
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.hero {
  background: linear-gradient(rgba(75, 46, 43, 0.7), rgba(75, 46, 43, 0.7)),
    radial-gradient(circle at top right, #d6b08a, #8c5a42);
  color: var(--putih);
  position: relative;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(75, 46, 43, 0.7);
  z-index: 0;
}

.hero-content {
  padding: 96px 0;
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 8px 0 12px;
}

.cta {
  display: inline-block;
  margin-top: 14px;
  background: var(--krem);
  color: var(--cokelat);
  text-decoration: none;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
}

.section {
  padding: 48px 0;
}

.grid-dua {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--putih);
  border: 1px solid var(--krem-gelap);
  border-radius: 14px;
  padding: 22px;
}

.pengantar {
  margin-top: -6px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--putih);
  border: 1px solid var(--krem-gelap);
  border-radius: 10px;
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: 14px;
  border-bottom: 1px solid var(--krem-gelap);
}

th {
  background: #f3e2d3;
  color: var(--cokelat);
}

.menu-img-cell {
  padding: 8px;
  text-align: center;
}

.menu-thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.info-list {
  padding-left: 18px;
}

.footer {
  background: var(--cokelat);
  color: var(--putih);
  text-align: center;
  padding: 20px 0;
  margin-top: 32px;
}

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: 72px;
    right: 4%;
    left: 4%;
    display: none;
    flex-direction: column;
    background: var(--putih);
    border: 1px solid var(--krem-gelap);
    border-radius: 12px;
    padding: 12px;
  }

  .nav.terbuka {
    display: flex;
  }

  .grid-dua {
    grid-template-columns: 1fr;
  }

  .menu-thumbnail {
    width: 50px;
    height: 50px;
  }

  th:first-child,
  td:first-child {
    display: none;
  }

  th {
    padding: 10px;
  }

  td {
    padding: 10px;
  }
}
