﻿/* Wrapper منو */
.menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #6F6F72FF;
  direction: ltr;                 /* تغییر جهت برای انگلیسی */
  justify-content: center;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* آیتم‌ها */
.menu li {
  margin: 0;
  padding: 0;
}

/* لینک‌ها */
.menu a {
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease;
  border-right: 1px solid rgba(255,255,255,0.25);  /* جداکننده */
}

/* حذف خط برای آخرین آیتم */
.menu li:last-child a {
  border-right: none;
}

/* Hover */
.menu a:hover {
  background: #3e8ed7;
  color: white;
  transform: translateY(-2px);
}

/* موبایل */
@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    display: none;
    background: #4e90cd;
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.25);
  }

  .menu li:last-child a {
    border-bottom: none;
  }
}
