body {
  font-family: 'Roboto', sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  width: 100%;
  height: 75px;
  background-color: #e91e63;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.header h1 {
  margin: 0;
  font-size: 2rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: bold;
}

.menu-title {
  text-align: center;
  padding: 20px 0;
}

.menu-title h2 {
  margin: 0;
  font-size: 1rem; /* Yazı boyutu küçültüldü */
  color: #000;
  font-family: 'Playfair Display', serif;
  font-weight: normal; /* Yazı kalınlığı azaltıldı */
}

.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); 
  gap: 10px; /* Kartlar arası boşluk azaltıldı */
  width: 100%;
  max-width: 1200px;
  padding: 10px;
  margin: 0 auto;
  box-sizing: border-box;
  flex-grow: 1;
}

.menu-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  width: 100%; /* Kartların genişliği ekrana göre ayarlandı */
  max-width: 100%; /* Kartların taşmaması için maksimum genişlik ayarlandı */
}

.menu-card:hover {
  transform: translateY(-10px);
}

.menu-card img {
  width: 100%;
  height: 150px; /* Kart içindeki resimlerin yüksekliği küçültüldü */
  object-fit: cover;
  transition: filter 0.3s ease;
}

.menu-card:hover img {
  filter: blur(2px);
}

.menu-details {
  padding: 10px;
  transition: color 0.3s ease;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-details h2 {
  color: #000;
  font-size: 1.2rem !important; /* Menü içi başlıkların yazı boyutu küçültüldü */
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

.menu-card:hover .menu-details h2 {
  color: #e91e63;
}

.content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px; /* Padding küçültüldü */
  box-sizing: border-box;
}

.content-container h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  padding: 8px; /* Hücre içi boşluk küçültüldü */
  text-align: left;
  vertical-align: middle;
}

th {
  background-color: #f2f2f2;
  color: #333;
}

td {
  color: #555;
}

.price {
  font-size: 1rem; /* Fiyat yazı boyutu küçültüldü */
  color: #e91e63;
  font-weight: bold;
}

.product-img {
  width: 100px;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* Instagram Icon */
.instagram-icon {
  width: 30px;
  height: 30px;
  margin-top: 10px;
}

/* Footer */
.footer {
  background-color: #e91e63;
  color: white;
  text-align: center;
  padding: 10px 0;
  position: relative;
  width: 100%;
  margin-top: auto;
}

.footer p {
  margin: 5px 0;
  font-size: 0.8rem; /* Footer yazı boyutu küçültüldü */
}

.footer a {
  color: white;
  text-decoration: none;
}

/* Mobile Responsive adjustments */
@media (max-width: 768px) {
  .menu-container {
    padding: 5px;
    grid-template-columns: repeat(2, 1fr); /* Mobilde 2 sütunlu görünüm */
    gap: 10px;
  }

  .menu-card img {
    height: 120px; /* Resim yüksekliği mobilde küçültüldü */
  }

  .header h1 {
    font-size: 1.5rem;
  }

  .footer p {
    font-size: 0.7rem;
  }

  .content-container h2 {
    font-size: 1.5rem;
  }

  table, th, td {
    font-size: 0.8rem;
  }

  .product-img {
    width: 75px;
  }

  /* Menü kartlarında yazan başlıkların yazı boyutunu küçültme */
  .menu-details h2 {
    font-size: 1rem !important; /* Mobilde başlık yazı boyutu küçültüldü */
  }
} 