body {
  font-family: Arial, sans-serif;
  background-color: #2F2F2F;
  color: #F0FFF0;
  margin: 0;
  padding: 20px;
}

/* Header */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}
.logo {
  width: 120px;
  height: auto;
  margin-bottom: 10px;
}
.title-box {
  color: #7CFC00;
  font-weight: bold;
  font-size: 28px;
  text-align: center;
  border-top: 6px solid white;
  border-bottom: 6px solid white;
  padding: 12px 40px;
}

/* Ana sayfa menü kutuları */
.menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
.menu-section {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: #3A3A3A;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s, background-color 0.3s;
}
.menu-section:hover {
  transform: scale(1.05);
  background-color: #444;
}
.menu-section img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #7CFC00;
}
.menu-section h2 {
  margin-top: 10px;
  color: #7CFC00;
}

/* Ürün sayfaları */
h1 { text-align: center; color: #7CFC00; }
.row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.product {
  flex: 0 0 48%;
  background-color: #3A3A3A;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}
.product img {
  width: 100%;
  max-width: 300px;   /* genişlik sınırı */
  height: 160px;      /* sabit yükseklik */
  object-fit: cover;
  margin: 0 auto;
  border: 3px solid #7CFC00;
  border-radius: 10px;
  display: block;
}
.product h2 { color: #7CFC00; margin: 10px 0; }
.btn {
  display: inline-block;
  margin: 5px;
  padding: 10px 20px;
  background-color: #7CFC00;
  color: #2F2F2F;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
}
.btn:hover { background-color: #6ae600; }

/* Footer */
.footer {
  text-align: center;
  margin-top: 40px;
  color: #7CFC00;
  font-size: 20px;
  font-weight: bold;
}
.footer-line {
  margin-top: 40px;
  border-top: 3px solid white;
  padding: 15px 20px;
  text-align: center;
}
.footer-line img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}
.footer-line span {
  color: #F0FFF0;
  font-size: 18px;
  font-weight: bold;
  display: block;
}
.contact {
  text-align: center;
  margin-top: 20px;
  color: #F0FFF0;
  font-size: 16px;
  line-height: 1.8;
}
.contact i {
  margin-right: 8px;
  color: #7CFC00;
}

/* Responsive */
@media (max-width: 768px) {
  .row { flex-direction: column; }
  .product { flex: 0 0 100%; margin-bottom: 20px; }
}
@media (max-width: 600px) {
  .logo { width: 80px; }
  .title-box { font-size: 22px; padding: 8px 20px; }
}

/* Ortak görsel hover efekti */
.menu-section img,
.product img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-section img:hover,
.product img:hover {
  transform: scale(1.1); /* Görseli büyütür */
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* Hafif gölge ile öne çıkarır */
  position: relative;
  z-index: 5;
}
/* Ortak görsel hover efekti */
.menu-section img,
.product img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-section img:hover,
.product img:hover {
  transform: scale(1.1); /* Görseli büyütür */
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* Hafif gölge ile öne çıkarır */
  position: relative;
  z-index: 5;
}
