body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f8f8;
  color: #333;
  scroll-behavior: smooth;
}

header.kapak {
  position: relative;
  text-align: center;
  color: white;
  overflow: hidden;
}

header.kapak img {
  width: 100%;
  height: auto;
  filter: brightness(70%);
  animation: zoomIn 5s ease-in-out infinite alternate;
}

header.kapak h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  font-weight: bold;
  animation: fadeInDown 1s ease-out;
}

main.kategori-wrapper {
  padding: 40px 20px;
}

.kategori {
  margin-bottom: 60px;
}

.kategori-menu {
  text-align: center;
  padding: 40px 20px;
}

.kategori-menu h2 {
  margin-bottom: 10px;
}

.kategori-menu p {
  color: #666;
}

.kategori-menu-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.kategori-menu-links a {
  text-decoration: none;
  background: #b1949e;
  padding: 10px 20px;
  border-radius: 20px;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s;
}

.kategori-menu-links a:hover {
  background: #8c7b84;
  color: #fff;
}

.kategori-menu-links a.home-link {
  font-size: 18px;
  background: #b1949e;
  color: white;
  font-weight: bold;
}

.kategori-menu-links a.home-link:hover {
  background: #8c7b84;
  color: #fff;
}

.kategori h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #999;
  display: inline-block;
  padding-bottom: 5px;
}

.galeri {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.foto img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.foto img:hover {
  transform: scale(1.05);
}

/* Mobil görünüm için */
@media (max-width: 600px) {
  .galeri {
    grid-template-columns: 1fr;
  }
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #ffd7cd;
  color: white;
  font-size: 0.9rem;
}

/* Animasyonlar */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
