.menu {
    position: fixed;
    top: -200%; /* Başlangıçta gizli */
    left: 0;
    width: 100%;
    height: calc(100vh - env(safe-area-inset-bottom));
    background-color: #fd8914;
    color: white;
    z-index: 999;
    transition: top 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9998;
  }

  /* Menü Kapatma Butonu */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
  }
  
  /* Menü Bağlantıları */
  .menu-links {
    list-style: none;
    text-align: center;
    padding: 0;
  }
  
  .menu-links li {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-links li img{
    display: none;
    max-width: 30px;
    max-height: 30px;
    margin-right: 10px;
  }
  
  .menu-links li a {
    
    text-decoration: none;
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  .menu-links li:hover img{
    display: block;
  }
  
  .menu-links li a:hover {
    color: #ffcc00;
  }
  
  /* Açılır Menü Aktif */
  .menu.active {
    top: 0; /* Menü tamamen açılır */
  }

  .menu .lang{
    
    font-size: 1.2rem;
    font-weight: bold;
    transition: color 0.3s;
    margin-left: 30px;
}

.menu .lang a{
    color: white;
    margin: 0;
    text-decoration: none;
}

menu .lang a:hover{
  color:#ffcc00;
}