* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:Arial, Helvetica, sans-serif;
  background-color: #2a2a2a;
  color: #ffffff;
}

.bangalorecafe-navbar {
  background-color: #4a1e1e;
  padding: 0;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bangalorecafe-navbar-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.bangalorecafe-navbar-menu {
  display: flex;
  list-style: none;
  gap: 0;
}

.bangalorecafe-navbar-item {
  position: relative;
}

.bangalorecafe-navbar-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 24px;
  width: 1px;
  background-color: #d4a574;
  opacity: 0.5;
}

.bangalorecafe-navbar-link {
  display: block;
  color: #ffffff;
  text-decoration: none;
  padding: 28px 25px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.bangalorecafe-navbar-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #f4b942;
  transition: width 0.3s ease;
}

.bangalorecafe-navbar-link:hover {
  background-color: #5a2626;
  color: #f4b942;
}

.bangalorecafe-navbar-link:hover::before {
  width: 100%;
}

.bangalorecafe-navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  background: none;
  border: none;
}

.bangalorecafe-navbar-toggle-bar {
  width: 28px;
  height: 3px;
  background-color: #f4b942;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.bangalorecafe-navbar-toggle.active
  .bangalorecafe-navbar-toggle-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.bangalorecafe-navbar-toggle.active
  .bangalorecafe-navbar-toggle-bar:nth-child(2) {
  opacity: 0;
}

.bangalorecafe-navbar-toggle.active
  .bangalorecafe-navbar-toggle-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
  .bangalorecafe-navbar-container {
    padding: 0 15px;
  }

  .bangalorecafe-navbar-toggle {
    display: flex;
  }

  .bangalorecafe-navbar-menu {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    z-index: 999999999999999999;
    flex-direction: column;
    background-color: #4a1e1e;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .bangalorecafe-navbar-menu.active {
    max-height: 500px;
  }

  .bangalorecafe-navbar-item {
    width: 100%;
    border-bottom: 1px solid #d4a574;
    opacity: 0.3;
  }

  .bangalorecafe-navbar-item:last-child {
    border-bottom: none;
  }

  .bangalorecafe-navbar-item::after {
    display: none;
  }

  .bangalorecafe-navbar-menu.active .bangalorecafe-navbar-item {
    animation: slideDown 0.3s ease forwards;
  }

  .bangalorecafe-navbar-menu.active .bangalorecafe-navbar-item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .bangalorecafe-navbar-menu.active .bangalorecafe-navbar-item:nth-child(2) {
    animation-delay: 0.15s;
  }

  .bangalorecafe-navbar-menu.active .bangalorecafe-navbar-item:nth-child(3) {
    animation-delay: 0.2s;
  }

  .bangalorecafe-navbar-menu.active .bangalorecafe-navbar-item:nth-child(4) {
    animation-delay: 0.25s;
  }

  .bangalorecafe-navbar-menu.active .bangalorecafe-navbar-item:nth-child(5) {
    animation-delay: 0.3s;
  }

  .bangalorecafe-navbar-menu.active .bangalorecafe-navbar-item:nth-child(6) {
    animation-delay: 0.35s;
  }

  .bangalorecafe-navbar-menu.active .bangalorecafe-navbar-item:nth-child(7) {
    animation-delay: 0.4s;
  }

  @keyframes slideDown {
    to {
      opacity: 1;
    }
  }

  .bangalorecafe-navbar-link {
    padding: 18px 25px;
    text-align: left;
  }

  .bangalorecafe-navbar-link::before {
    height: 100%;
    width: 4px;
    left: 0;
    top: 0;
    bottom: 0;
  }

  .bangalorecafe-navbar-link:hover::before {
    width: 4px;
  }
}

/* Demo content */
.demo-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.demo-content h1 {
  color: #4a1e1e;
  margin-bottom: 20px;
}
