/* style.css */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f7f7;
  color: #333;
  line-height: 1.6;
  animation: fadeInPage 0.5s ease forwards;
  padding-bottom: 50px;
}

/* Başlık */
header {
  background: #121212;
  color: #ffd700;
  padding: 25px 20px;
  text-align: center;
  font-size: 2.4em;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Menü */
nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #222;
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

nav a {
  color: #ffd700;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background 0.3s, color 0.3s;
}

nav a:hover,
nav a.active {
  background: #ffd700;
  color: #121212;
}

/* Sayfa Konteyneri */
.container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 15px;
}

h1 {
  text-align: center;
  color: #121212;
  margin-bottom: 30px;
  font-weight: 700;
  font-size: 2em;
}

/* Ürünler */
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.product-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 280px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: productFadeIn 0.4s ease forwards;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.product-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin-bottom: 10px;
  color: #121212;
  font-weight: 700;
  font-size: 1.2em;
}

.product-info p {
  margin: 0;
  color: #555;
  font-weight: 500;
  font-size: 0.95em;
  min-height: 60px;
}

.incele-btn {
  margin: 0 20px 20px 20px;
  background-color: #ffd700;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  color: #121212;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1em;
  width: calc(100% - 40px);
  align-self: center;
}

.incele-btn:hover {
  background-color: #e6c200;
}

/* Animasyonlar */
@keyframes fadeInPage {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes productFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobil */
@media (max-width: 768px) {
  header {
    font-size: 1.8em;
    padding: 20px;
  }
  nav a {
    padding: 10px 15px;
    font-size: 0.95em;
  }
  .product-list {
    flex-direction: column;
    align-items: center;
  }
  .product-item {
    width: 95%;
  }
  .product-info h3 {
    font-size: 1.1em;
  }
  .incele-btn {
    font-size: 1em;
    padding: 12px;
  }
}
