/* Genel ayarlar */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #fff;
  position: relative;
  min-height: 100vh;
}

/* Logo */
.logo {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
.logo img { width: 300px; height: auto; }

/* Ana ikonlar */
.main-icon { position: absolute; width: 150px; }

/* İş ikonu */
.is-icon { top: 50%; left: 20%; transform: translateY(-50%); }

/* İkon1 alt ikonları */
.ikon1-sub-icons {
  position: absolute;
  top: 0;
  left: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.ikon1-sub-icons img {
  width: 60px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.ikon1-sub-icons img:hover { transform: scale(1.2); }

/* Aşk ikonu */
.ask-icon { top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Yaşam ikonları */
.yasam-icon-wrapper { top: 50%; right: 20%; transform: translateY(-50%); }
.yasam-main { width: 100%; }
.yasam-sub-icons {
  position: absolute;
  top: 0;
  left: 70px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.yasam-sub-icons img { width: 50px; transition: transform 0.3s ease; }
.yasam-sub-icons img:hover { transform: scale(1.2); }
.yasam-icon-wrapper:hover .yasam-sub-icons { opacity: 1; pointer-events: auto; }
.yasam-icon-wrapper:hover .yasam-main { opacity: 0; }

/* WhatsApp ikonu */
.whatsapp {
  position: fixed;
  left: 50%;
  bottom: 30px;
  z-index: 1000;
  width: 90px;
  transform: translateX(-50%);
  transition: transform 0.3s ease;
}
.whatsapp:hover { transform: translateX(-50%) scale(0.768); }

/* İş sayfası */
body.is-page { background-color: #fff; }
.is-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  box-sizing: border-box;
}
.full-image {
  width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
  transform-origin: center center;
}
.full-image:hover { transform: scale(1.02); }
