    * {
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: white;
      color: black;
    }
 /* Navbar */
 .reservasi-button{
  display: none;
}

/* Navbar */
  .navbar {
    background: #333;
    color: #fff;
    padding: 15px 0;
    padding-right: 50px;
    padding-left: 50px;
  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  nav ul li a.active {
    color: #d1d6b9;
  }
  
  .nav-links a {
    margin: 0 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  nav ul li a:hover {
    color: #a73535;
  }

.btn-reservasi {
    background-color: #a73535;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    position: absolute;
    top: 7%;
    right: 50px;
    transform: translateY(-50%);
}
/* --- Toggle Button --- */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Container navbar untuk flex justify-between */
.navbar .container {
  display: flex;
  justify-content: space-between;
  padding-right: 10px;
  align-items: center;
  flex-wrap: wrap;
}

/* Toggle button ke kanan */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  z-index: 110;
  margin-left: auto; /* pastikan ke kanan */
}

/* Nav posisi penuh di bawah */
@media (max-width: 768px) {
  nav {
    width: 100%;
    order: 3; /* pastikan muncul di bawah toggle/logo */
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #222; /* sesuai navbar hitam */
    padding: 1rem;
    border-radius: 0 0 10px 10px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
  }

  nav ul.show {
    display: flex;
  }

  .reservasi-button {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    order: 4;
  }

  .nav-toggle {
    display: block;
  }
}

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.btn-all {
    background: #d64a3d;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
}

.menu {
    padding: 60px 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Ubah dari auto-fit */
    gap: 30px;
    justify-items: center; /* card rata tengah */
}

.card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h2 {
    color: #d64a3d;
    margin: 15px 0 5px;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.card p {
    color: #666;
    font-size: 14px;
    padding: 0 10px;
}

.order {
    background: #f7f7f7;
    text-align: center;
    padding: 60px 20px;
}

.order-icons {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-top: 30px;
}
.order-icons img {
    width: 100px;
    height: auto; 
    opacity: 0.8; 
    transition: transform 0.3s ease; 
}

.order-icons img:hover {
    transform: scale(1.1); 
}

.site-footer {
    
  background-color: #1e1e1e;
  color: #fff;
  font-family: sans-serif;
  text-align: center;
  padding: 0;
}

.footer-top {
  margin-bottom: 30px;
}

.footer-nav,
.footer-subnav {
  margin: 10px 0;
}

.footer-nav a,
.footer-subnav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-nav a:hover,
.footer-subnav a:hover {
  color: #a94442;
}

.footer-bottom {
  background-color: #a94442;
  padding: 30px 30px;
  color: #fff;
}

.footer-bottom p {
  margin: 0;
  font-weight: bold;
}

.footer-bottom span {
  color: white;
}

.footer-bottom small {
  display: block;
  margin-top: 5px;
  margin-left: 0px;
  font-size: 12px;
  color: #eee;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-nav, .footer-subnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-nav a,
  .footer-subnav a {
    margin: 5px 8px;
    font-size: 13px;
  }

  .social-icons a {
    margin: 0 6px;
  }
}

  
 .social-icons {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons a {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #a94442; /* Merah */
  border-radius: 50%;
  color: white;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #fff;
  color: #a94442;
}

/* --- Toggle Button --- */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Container navbar untuk flex justify-between */
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Toggle button ke kanan */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  z-index: 110;
  margin-left: auto; /* pastikan ke kanan */
}

/* Nav posisi penuh di bawah */
@media (max-width: 768px) {
  nav {
    width: 100%;
    order: 3; /* pastikan muncul di bawah toggle/logo */
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #222; /* sesuai navbar hitam */
    padding: 1rem;
    border-radius: 0 0 10px 10px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
  }

  nav ul.show {
    display: flex;
  }

  .reservasi-button {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    order: 4;
  }

  .nav-toggle {
    display: block;
  }
}

/* Awal gaya default */
.menu .container.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding: 1rem;
}

/* Tablet: 2 kolom */
@media (min-width: 600px) {
  .menu .container.grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 kolom */
@media (min-width: 992px) {
  .menu .container.grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Kartu menu */
.menu .card {
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
}

.menu .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.order {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #f9f9f9;
}

.order-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.order-icons a {
  display: inline-block;
  max-width: 120px;
  transition: transform 0.3s ease;
}

.order-icons img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.order-icons a:hover {
  transform: scale(1.05);
}



  
