body {
  margin: 0;
  padding: 20px;
  font-family: 'Quicksand', sans-serif;
  background: #f5f5f5;
  color: #333;
  position: relative;
  z-index: 1;
  
}

/* Logo në sfond */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('img/BG-ORTUS.png'); 
  background-repeat: no-repeat;
  background-position: center;
  background-size: 300px;
  opacity: 50%;
  z-index: -1;
}

.filters {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filters button {
  padding: 10px 16px;
  border: none;
  border-radius: 4px;
  background: #0f4d42;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.filters button.active {
  background: #0c3e35;
}

.menu-section {
  margin-bottom: 30px;
}

.menu-section h2 {
  background: #16362d;
  color: #c7a638;
  padding: 10px;
  margin: 0 0 10px 0;
  font-size: 1.25rem;
  border-radius: 4px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 8px 0;
}

.menu-item + .menu-item {
  margin-top: 8px;
}

.menu-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0; /* vendoset në fund të rreshtit */
  border-bottom: 4px dotted #ccc;
  z-index: 0;
}


.menu-item span {

  padding: 0 6px;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .menu-item span {
    font-size: 0.9rem;
  }
}

/* Navbar e përgjithshme */
.navbar {

  border-bottom: 1px solid #ddd;
  padding: 12px 20px;
  font-family: 'Quicksand', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Emri i kafenes */
.navbar .brand {
  font-size: 1.6rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Dropdown-at */
.navbar .dropdowns {
  display: flex;
  gap: 12px;
}

.navbar select {
  padding: 8px 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  cursor: pointer;
}

/* Responsive për ekran të vogël */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .navbar .dropdowns {
    flex-direction: row;
    justify-content: center;
  }
}

.footer2{
    text-align: center;
}

