:root {
  --max-width: 1100px;
  --accent: #111;
  --muted: #6a6a6a;
  --bg: #f2f2f2;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--accent);
  line-height: 1.5;
}

/* NAVBAR */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header {
  background: transparent;
  padding: 18px 0;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.icon {
  width: 48px;
  height: 30px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}

/* HERO BARU */
.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px;
}
.hero-header {
  display: flex;
  justify-content: space-between;
}
.hero-title {
  font-size: clamp(32px, 6vw, 60px);
  font-weight: 800;
  margin: 0;
}
.hero-tagline {
  font-weight: 600;
  font-size: 1rem;
  align-self: center;
}
.hero-image img {
  width: 100%;
  border-radius: 4px;
  display: block;
  margin-bottom: 20px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  margin-bottom: 30px;
}
.hero-content p {
  font-size: 1rem;
  color: #333;
}
.hero-content .bold {
  font-weight: 600;
}
.hero-cta {
  text-align: right;
}
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 25px;
  background: #222;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}
.btn:hover {
  background: #444;
}

/* SECTION UMUM */
.section {
  padding: 70px 0;
}
.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 10px;
}
.section .muted {
  color: var(--muted);
  margin-bottom: 20px;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.section-left p {
  text-align: justify;
}
.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card h4 {
  margin: 12px 16px 6px;
}
.card p {
  margin: 0 16px 16px;
  font-size: 14px;
  color: var(--muted);
}

/* MENU */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.menu-item {
  background: #fff;
  padding: 18px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.menu-item h3 {
  margin: 0 0 6px;
}
.menu-item .price {
  font-weight: 700;
  margin-bottom: 8px;
}
.menu-item .desc {
  font-size: 14px;
  color: var(--muted);
}

/* LOKASI */
.lokasi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.lokasi-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin-bottom: 10px;
}

.lokasi-info .alamat {
  margin: 16px 0;
  font-weight: 500;
}

.lokasi-img img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .lokasi-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .lokasi-img img {
    margin-top: 20px;
  }
}

/* GALERI */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

/* FOOTER */
.site-footer {
  padding: 36px 0;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
  }
  .about {
    grid-template-columns: 1fr;
  }
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .places-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .nav-links {
    display: none;
  }
  .menu-grid,
  .places-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    text-align: left;
  }
}
