    * {
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      background: #fff;
      color: white;
    }
 /* 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;
  }
}

 body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.team-section {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 28px;
  color: #a94442;
  margin-bottom: 30px;
}

.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-card h3 {
  margin: 10px 0 5px;
}

.team-card p {
  font-size: 14px;
  color: #555;
}

.team-card .role {
  font-weight: bold;
  margin-top: 10px;
  color: #333;
}


/* 🔁 Responsive Styles */
@media (max-width: 1024px) {
  .team-cards {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .team-card {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .team-card {
    width: 100%;
  }
}

 /* === 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-2 a {
    margin: 0 6px;
  }
}

.social-icons {
  margin-top: 15px;
}

.social-icons i {
  margin: 0 8px;
  color: #a94442;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover{
  color: #333;
}

  
 .social-icons {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

 .social-icons-2 {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icons-2 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-2 a:hover {
  background-color: #fff;
  color: #a94442;
}
