/* Temel ayarlar */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #111;
  color: #fff;
}

/* Başlık alanı */
header {
  background-color: #c80000;
  padding: 20px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

h1 {
  margin: 0;
  font-size: 24px;
  color: #fff;
  letter-spacing: 1px;
}

/* Menü kartları grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 30px 20px;
}

/* Her bir kategori kartı */
.menu-card {
  background-color: #1c1c1c;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.menu-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.menu-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.menu-title {
  padding: 12px;
  text-align: center;
  font-weight: 600;
  background-color: #c80000;
  color: #f4c300;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('img/logo.png') center center no-repeat;
  background-size: 300px;
  opacity: 0.1; /* çok silik olsun */
  z-index: -1;
}

/* Mobil uyum */
@media (max-width: 600px) {
  h1 {
    font-size: 20px;
  }

  .menu-title {
    font-size: 15px;
  }
}
/* Geri dön butonu */
.back-button {
  display: inline-block;
  text-decoration: none;
  color: #f4c300;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

.product-list {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-card {
  background-color: #1c1c1c;
  border-left: 5px solid #c80000;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.product-card p {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.product-card small {
  font-size: 13px;
  color: #bbb;
}

.price {
  color: #f4c300;
  font-weight: bold;
}
.welcome-box {
  background-color: #1c1c1c;
  padding: 20px;
  margin: 0 auto;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  
  text-align: center;
}

.welcome-box h1 {
  margin: 0;
  font-size: 26px;
  color: #fff;
  letter-spacing: 1px;
}
