 .navbar {
  background-color: #ffffff;
  border-bottom: 2px solid #4B2E2E;
  padding: 0.3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1000;
}

.logo {
   
  color: #4B2E2E;
  align-items: center;
  justify-content: center;
  display: flex;
}
.logo img {
  max-width: 100%;
  height: 40px;
}
 @media (max-width: 768px) {
     .logo img {
       height: 30px;
     }
   
  }

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #4B2E2E;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #a15600;
}

/* MENU ICON */
.menu-icon {
  display: none;
  font-size: 2rem;
  color: #4B2E2E;
  cursor: pointer;
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    display: none;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.05);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}
