/* SADECE MOBİL MENÜ CSS KODLARI */
/* Bu dosya sadece mobil menü için kullanılacak */

@media only screen and (max-width: 768px) {
  
  /* Modern Mobil Menü - Yeni Header Yapısı */
  .new-menu-list {
    position: fixed !important;
    top: 140px !important; /* Yeni header yüksekliği */
    left: 0 !important;
    width: 100vw !important;
    height: auto !important;
    min-height: 60px !important;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.98) 0%, rgba(22, 163, 74, 0.95) 100%) !important;
    backdrop-filter: blur(20px) !important;
    z-index: 99999 !important;
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 15px 20px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2) !important;
    margin: 0 !important;
    list-style: none !important;
    border-radius: 0 !important;
  }

  /* Menü açık durumu */
  .new-menu-list.menu-open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Menü öğeleri */
  .new-menu-list .new-menu-item {
    margin: 0 15px !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
    position: relative !important;
  }

  /* Menü linkleri */
  .new-menu-list .new-menu-link {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 12px 20px !important;
    border-radius: 25px !important;
    transition: all 0.3s ease !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid transparent !important;
    display: block !important;
    text-align: center !important;
    min-width: 120px !important;
    backdrop-filter: blur(10px) !important;
  }

  /* Hover efekti */
  .new-menu-list .new-menu-link:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2) !important;
    color: #ffffff !important;
  }

  /* Aktif menü */
  .new-menu-list .new-menu-item.active .new-menu-link {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
  }

  /* Mobil menü butonu */
  .new-mobile-btn {
    display: block !important;
    width: 40px !important;
    height: 40px !important;
    position: relative !important;
    cursor: pointer !important;
    z-index: 100000 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    padding: 8px !important;
    transition: all 0.3s ease !important;
    border: 2px solid #4a90a4 !important;
  }

  .new-mobile-btn:hover {
    background: rgba(255, 255, 255, 1) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  }

  /* Hamburger çizgileri */
  .new-mobile-btn::before,
  .new-mobile-btn::after,
  .new-mobile-btn span {
    content: '' !important;
    position: absolute !important;
    width: 20px !important;
    height: 3px !important;
    background: #4a90a4 !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    left: 10px !important;
  }

  .new-mobile-btn::before {
    top: 12px !important;
  }

  .new-mobile-btn span {
    top: 18.5px !important;
  }

  .new-mobile-btn::after {
    top: 25px !important;
  }

  /* Menü açıkken hamburger animasyonu */
  .new-mobile-btn.menu-open::before {
    transform: rotate(45deg) !important;
    top: 18.5px !important;
  }

  .new-mobile-btn.menu-open span {
    opacity: 0 !important;
  }

  .new-mobile-btn.menu-open::after {
    transform: rotate(-45deg) !important;
    top: 18.5px !important;
  }

  /* Overlay arka plan */
  .menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 99998 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(5px) !important;
  }

  .menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Responsive düzenlemeler */
  @media only screen and (max-width: 480px) {
    .new-menu-list {
      flex-direction: column !important;
      padding: 20px 15px !important;
      min-height: auto !important;
    }

    .new-menu-list .new-menu-item {
      margin: 8px 0 !important;
      width: 100% !important;
    }

    .new-menu-list .new-menu-link {
      width: 100% !important;
      min-width: auto !important;
      padding: 15px 20px !important;
    }
  }
}

/* Desktop'ta mobil menü butonunu gizle */
@media only screen and (min-width: 769px) {
  .new-mobile-btn {
    display: none !important;
  }
  
  .menu-overlay {
    display: none !important;
  }
  
  .new-menu-container {
    display: block !important;
  }
}

/* Küçük mobil cihazlar için ek düzenlemeler */
@media only screen and (max-width: 480px) {
  .new-menu-list .new-menu-link {
    padding: 18px 20px !important;
    font-size: 18px !important;
  }
  
  .new-menu-list::before {
    top: 20px !important;
    right: 20px !important;
    font-size: 24px !important;
    width: 45px !important;
    height: 45px !important;
  }

  .new-mobile-btn {
    width: 45px !important;
    height: 45px !important;
    padding: 10px !important;
  }
}

/* Çok küçük ekranlar için */
@media only screen and (max-width: 360px) {
  .new-menu-list .new-menu-link {
    padding: 16px 15px !important;
    font-size: 16px !important;
  }
  
  .new-menu-list::before {
    top: 15px !important;
    right: 15px !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
  }
} 