body {
  margin: 0;
  padding: 0;
  background-color: #FEF8FA;
  font-family: 'Poppins', sans-serif;
  color: #5c4c78;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.logo-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: -20px;
}

.logo {
  width: 140px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.05);
}

.title {
  font-family: 'Great Vibes', cursive;
  font-size: 48px;
  color: #a48ac3;
  margin-bottom: 32px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.02);
}

/* Mobil uyum */
@media (max-width: 600px) {
  .title {
    font-size: 36px;
  }

  .gallery {
    gap: 12px;
  }
}
