/* ========================================================
   SAYFA GENEL AYARLARI VE YUMUŞAK KAYDIRMA EFEKTİ
   ======================================================== */
html {
  scroll-behavior: smooth;
}

/* ========================================================
   DAKTİLO (TYPEWRITER) EFEKTİ İMLEÇ STİLLERİ
   ======================================================== */
.cursor {
  font-weight: 300;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ========================================================
   YUKARI ÇIK (SCROLL TOP) BUTONU STİLLERİ
   ======================================================== */
#scrollTopBtn {
  position: fixed;
  top: auto;
  bottom: 30px;
  right: 15px;
  z-index: 1001;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #a4f9ff, #1e3a8a);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s,
    width 0.3s,
    height 0.3s,
    border-radius 0.3s,
    background-color 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#scrollTopBtn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-icon {
  width: 24px;
  height: 24px;
  fill: white;
}

/* ========================================================
   SAĞ ÜST ASANSÖRLÜ NAVİGASYON MENÜSÜ VE ANİMASYONLARI
   ======================================================== */
#elevator-nav {
  position: fixed;
  right: 12px;
  top: 20px;
  width: 95px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.4);
  padding: 15px 6px 15px 6px;
  border-radius: 15px;
  backdrop-filter: blur(5px);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  padding-right: 0px;
  padding-left: 0px;
  position: relative;
  width: 100%;
}

.nav-item {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  text-align: center;
  opacity: 0.6;
  transition:
    opacity 0.3s,
    color 0.3s;
}

.nav-item:hover {
  opacity: 1;
  color: #a4f9ff;
}

.nav-item.active {
  opacity: 1;
  color: #a4f9ff;
  text-shadow: 0 0 8px rgba(164, 249, 255, 0.6);
}

.elevator-track {
  position: relative;
  width: 0;
  min-width: 0;
  display: none;
}

#elevator {
  position: absolute;
  left: 5px;
  top: 0; /* JS ile dinamik ayarlanıyor */
  transform: scale(0.7); /* İkonu biraz küçültelim ki dar alanda sırıtmasın */
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 0 5px rgba(164, 249, 255, 0.6));
}
