/* Genel */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Header */
header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 30px;
  background: #fff;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
header .logo {
  display: flex;
  align-items: center;
}
header .logo img {
  height: 50px;
  margin-right: 10px;
}
header .menu a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 15px;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: #fff;
  color: #333;
  font-size: 14px;
  z-index: 1;
  box-shadow: 0 -2px 6px rgba(0,0,0,0.1);
}

/* -------- ANASAYFA -------- */
body.anasayfa #mediaContainer {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 0;
}
body.anasayfa #mediaContainer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------- LOKASYON -------- */
body.lokasyon .map-container {
  width: 100%;
  height: calc(100vh - 120px); /* 80px header + ~40px footer */
  position: relative;
}
body.lokasyon .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* -------- KAMPANYALAR -------- */
body.kampanya .campaigns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
}
body.kampanya .campaigns img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
  cursor: pointer;
}
body.kampanya .campaigns img:hover {
  transform: scale(1.05);
}
body.kampanya .campaigns img:active {
  transform: scale(1.2);
}
