/* ========== Reset Dasar ========== */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #fafafa;
  margin: 0;
  padding: 0;
  color: black;
}

/* ========== Navbar ========== */
 .reservasi-button{
  display: none;
 }
.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;
  }

.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 (Mobile) ========== */
.nav-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  z-index: 110;
  margin-left: auto;
}

.reservasi-button {
  display: none;
}

/* ========== Responsive Navbar ========== */
@media (max-width: 768px) {
  nav {
    width: 100%;
    order: 3;
  }

  nav ul {
    display: none;
    flex-direction: column;
    background-color: #222;
    padding: 1rem;
    border-radius: 0 0 10px 10px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;
  }

  nav ul.show {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .reservasi-button {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    order: 4;
  }
}

/* ========== Reservasi Section ========== */
.container {
  text-align: center;
  max-width: 700px;
  width: 100%;
  margin: auto;
  padding: 50px 20px;
}

.container h2 {
  font-size: 28px;
  margin-bottom: 5px;
  font-weight: bold;
}

.container p {
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

.order-form {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 250px;
}

.full-width {
  width: 100%;
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
}

.form-group input {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.menu-item input[type="number"] {
  width: 60px;
  padding: 5px;
  border-radius: 10px;
  border: 1px solid #ccc;
}

.form-submit {
  margin-top: 30px;
}

.form-submit button {
  background-color: #c0392b;
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
}

.form-submit button:hover {
  background-color: #a93226;
}

/* ========== Footer ========== */
.site-footer {
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
  padding: 0;
  font-family: sans-serif;
}

.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;
  color: #fff;
}

.footer-bottom p {
  margin: 0;
  font-weight: bold;
}

.footer-bottom span {
  color: white;
}

.footer-bottom small {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: #eee;
}

/* ========== Social Icons & Gallery ========== */
.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;
  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;
}

.instagram-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.instagram-gallery img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

/* ========== Responsive Footer ========== */
@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;
  }
}
