/* ===== NAVBAR — TEMİZ VE ÇAKIŞMASIZ ===== */

.bg-dark.text-primary {
  display: none !important;
}

body {
  margin: 0;
  padding-top: 80px;
  background: #050505;
}

.navbar.navbar-expand-lg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 9999;
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0 40px;
}

/* CONTAINER: 3 sütunlu grid — logo sol, menü tam orta, sağ boş */
.navbar.navbar-expand-lg .container {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* LOGO — sol sütun */
.navbar-brand {
  display: flex;
  align-items: center;
  justify-self: start;
  position: static;
  left: auto;
  transform: none;
}

.navbar-brand img {
  height: 62px;
  width: auto;
  filter: none;
  opacity: 0.95;
  transition: 0.3s;
}

.navbar-brand img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* MENÜ — orta sütun, tam ortada */
.navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-self: center;
}

/* LİNKLER */
.navbar-nav .nav-link {
  color: #aaa !important;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  transition: 0.3s;
  padding: 0;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover {
  color: #fff !important;
}

.navbar-nav .nav-link.active {
  color: #fff !important;
}

/* ALT ÇİZGİ */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #ffb300;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* HAMBURGER */
.navbar-toggler {
  display: none;
  position: relative;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.navbar-toggler span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: translateY(-50%);
}

.navbar-toggler::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.navbar-toggler::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* ===== MOBİL ===== */
@media (max-width: 991px) {

  body {
    padding-top: 70px;
  }

  .navbar.navbar-expand-lg {
    height: 70px;
    padding: 0 15px;
  }

  .navbar.navbar-expand-lg .container {
    justify-content: center !important;
  }

  /* LOGO ORTA */
  .navbar-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-brand img {
    height: 48px;
  }

  /* HAMBURGER SOL */
  .navbar-toggler {
    display: flex;
    position: absolute;
    left: 15px;
  }

  /* AÇILAN MENÜ */
  .navbar-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #050505;
    display: none;
    gap: 28px;
  }

  .navbar-nav.open {
    display: flex;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    letter-spacing: 2px;
  }
}