body {
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #f7f7f7 0%, #e0e0e0 100%);
  margin: 0;
  padding: 0;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

header {
  background: linear-gradient(90deg, #0a0101 0%, #333 100%);
  color: white;
  padding: 15px; /* Mobilde daha az padding */
  text-align: center;
  font-size: 1.8rem; /* Mobilde küçültüldü */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.img {
  height: 40px; /* Mobilde küçültüldü */
  margin-right: 10px;
  border-radius: 50%;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 8px; /* Mobilde daha az gap */
  margin: 15px 0;
  flex-wrap: wrap;
}

.filter-buttons button {
  padding: 12px 18px; /* Mobilde daha büyük padding */
  border: none;
  border-radius: 30px; /* Daha yuvarlak */
  background: linear-gradient(
    45deg,
    #0a0101 0%,
    #555 100%
  ); /* Gradyan ekledim */
  color: white;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem; /* Mobilde okunaklı */
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px; /* İkon için gap */
}

.filter-buttons button:hover {
  background: linear-gradient(45deg, #333 0%, #777 100%);
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Daha belirgin gölge */
}

.menu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px; /* Mobilde daha az gap */
  padding: 15px; /* Mobilde azaltıldı */
  max-width: 1200px;
  margin: 0 auto;
}

.category {
  font-weight: bold;
  font-size: 1.3rem; /* Mobilde küçültüldü */
  color: #0a0101;
  grid-column: 1 / -1;
  border-bottom: 3px solid linear-gradient(90deg, #0a0101 0%, #555 100%); /* Gradyan border */
  padding-bottom: 8px;
  margin-top: 15px;
}

.item {
  background: #fafafa; /* Hafif gri arka plan */
  padding: 20px; /* Mobilde artırıldı */
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.item img {
  width: 120px; /* Mobilde büyütüldü */
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.item-info {
  flex: 1;
}

.item-name {
  font-weight: bold;
  font-size: 1.2rem; /* Mobilde büyütüldü */
  margin-bottom: 5px;
}

.item-desc {
  font-size: 1rem; /* Mobilde büyütüldü */
  color: #555;
  margin-bottom: 10px;
}

.item-price {
  color: #0a0101;
  font-weight: bold;
  font-size: 1.3rem; /* Mobilde büyütüldü */
}

@media (max-width: 600px) {
  .menu {
    grid-template-columns: 1fr; /* Tek sütun */
    gap: 20px; /* Daha fazla gap */
  }
  .filter-buttons {
    gap: 10px; /* Daha fazla gap */
  }
  .filter-buttons button {
    padding: 15px 20px; /* Daha büyük */
    font-size: 1rem;
  }
  header {
    font-size: 1.5rem; /* Daha küçük */
  }
}

/**  body {
    font-family: 'Montserrat', sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 0;
  }


  header {
    background: #0a0101;
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 2rem;
    padding: 20px;
    margin: auto;
  }

  .img {
    max-width: 100%; 
    height: auto;   
  }

  .filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
  }

  .filter-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: #0a0101;
    color: white;
    cursor: pointer;
    transition: 0.3s;
  }

  .filter-buttons button:hover {
    background: #0a0101;
  }

  .menu {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }

  .category {
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom: 2px solid #0a0101;
    padding-bottom: 5px;
    margin-top: 20px;
  }

  .item {
    display: flex;
    align-items: center;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
  }

  .item:hover {
    transform: translateY(-3px);
  }

  .item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 15px;
  }

  .item-info {
    flex: 1;
  }

  .item-name {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .item-desc {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
  }

  .item-price {
    color: #0a0101;
    font-weight: bold;
  }
  **/
