/* Style the navigation menu */
.topnav {
  overflow: hidden;
  background-color: #c5a47e;
  position: fixed; /* Navbar'ı sabitler */
  top: 0; /* Ekranın üst kısmına sabitler */
  width: 100%; /* Tüm genişliği kapsar */
  z-index: 1000; /* Üstte kalmasını sağlar */
  display: none; /* Başlangıçta gizli */
}

/* Mobil cihazlar için (maksimum genişlik 768px) */
@media screen and (max-width: 768px) {
  .topnav {
    display: block; /* Mobilde göster */
  }
}

/* Hide the links inside the navigation menu (except for logo/home) */
.topnav #myLinks {
  display: none;
}

/* Style navigation menu links */
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

/* Style the hamburger menu */
.topnav a.icon {
  color: #c5a47e;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

/* Add a grey background color on mouse-over */
.topnav a:hover {
  background-color: #fff;
  color: #c5a47e;
}

/* Style the active link (or home/logo) */
.active {
  background-color: #fff;
  color: white;
}
