/* Бургер меню для мобільних пристроїв */
.burger-menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  z-index: 1001;
}

.burger-menu-button span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--neon-pink);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Анімація для кнопки бургер меню */
.burger-menu-button.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.burger-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu-button.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* Медіа-запити для мобільних пристроїв */
@media (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
  
  .header-content {
    justify-content: space-between;
    gap: 15px;
  }
  
  .logo {
    position: relative;
  }
  
  .burger-menu-button {
    display: flex;
  }
  
  .navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98) 0%, rgba(20, 20, 30, 0.95) 100%);
    backdrop-filter: blur(15px) saturate(150%);
    border-left: 1px solid rgba(255, 0, 128, 0.15);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 80px;
  }
  
  .navigation.active {
    right: 0;
  }
  
  .nav-menu {
    flex-direction: column;
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    gap: 15px;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 15px;
    font-size: 0.95rem;
  }
  
  .header-controls {
    display: none; /* Приховуємо на мобільних */
  }
}

@media (max-width: 480px) {
  .header {
    padding: 8px 0;
  }
  
  .burger-menu-button {
    right: 15px;
    width: 25px;
    top: 15px;
    height: 18px;
  }
  
  .burger-menu-button span {
    height: 2px;
  }
  
  .navigation {
    width: 90%;
  }
  
  .nav-link {
    font-size: 0.85rem;
    padding: 12px;
  }
}