    * {
      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;
  }

.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;
  }
}
  nav ul li a:hover {
    color: #a73535;
  }
  
  /* Hero */
  .hero {
    text-align: center;
    padding: 50px 0;
  }
  .hero h1 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .hero img {
    width: 100%;
    max-width: 700px;
    border-radius: 12px;
  }
  
  /* Blog Content */
  .blog-content {
    padding: 50px 0;
  }
  .blog-content h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .blog-content p {
    margin-bottom: 30px;
    line-height: 1.8;
    color: #555;
  }
  .blog-content img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    margin-top: 30px;
  }
  
  /* Footer */
  .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;
}