body {
  display: flex;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100vh;
}

.image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}

.image-container img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  border-radius: 12px;
}

.menu-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
}

.menu-container ul {
  list-style-type: none;
  padding: 0;
  width: 60%;
}

.menu-container li {
  margin-bottom: 20px;
}

.menu-container a {
  display: block;
  text-decoration: none;
  color: white;
  background-color: black;
  padding: 15px 20px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 1em;
}

.menu-container a:hover {
  color: black;
  background-color: white;
}

.contact-info {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9em;
  color: #333;
}

/* Adres Kodu sayfası için stiller */
.adres-kodu-page {
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 20px;
}

.image-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.image-gallery img {
  max-width: 200px;
  height: auto;
  border-radius: 12px;
}

.home-button {
  display: inline-block;
  text-decoration: none;
  color: black;
  background-color: white;
  padding: 15px 20px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 1em;
}

.home-button:hover {
  color: white;
  background-color: #333;
}
