/* .cihannav-container içinde sadece bu stil uygulanacak */
.cihannav-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050; /* Navbar için varsayılan z-index */
  background-color: white; /* Arka plan rengini beyaz yap */
  width: 100%;
}

/* Genel Ayarlar */
.cihannav-container nav {
  padding: 0 15px;
}

.cihannav-container .d-flex {
  display: flex;
  align-items: center;
}

.cihannav-container .menu-items {
  display: flex;
  gap: 20px;
}

.cihannav-container .menu-link {
  color: #0e2431;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cihannav-container .menu-link:hover {
  font-weight: bold;
}

.cihannav-container .search-bar {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 0 15px;
}

.cihannav-container .search-input {
  width: 100%;
  max-width: 300px;
  padding: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.cihannav-container .logo img {
  height: 25px;
}

/* Menü Tetikleyici (Hamburger) */
.cihannav-container .cihannavcustom-checkbox {
  display: none;
}

.cihannav-container .hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 26px;
  cursor: pointer;
  z-index: 1001;
}

.cihannav-container .line {
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: #0e2431;
}

.cihannav-container .cihannavcustom-checkbox:checked ~ .menu-items {
  transform: translateX(0);
}

.cihannav-container .cihannavcustom-checkbox:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.cihannav-container .cihannavcustom-checkbox:checked ~ .hamburger-lines .line2 {
  opacity: 0;
}

.cihannav-container .cihannavcustom-checkbox:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Menü Elemanları */
.cihannav-container .menu-items {
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-100%);
  transition: transform 0.5s ease-in-out;
  padding-top: 80px;
  text-align: center;
  list-style: none;
  z-index: 999;
}

.cihannav-container .menu-items li {
  margin: 10px 0;
}

.cihannav-container .cihannavcustom-checkbox:checked ~ .menu-items {
  transform: translateX(0);
}
