@tailwind base;
@tailwind components;
@tailwind utilities;

/* التنسيقات الأساسية */
.nav-item:focus {
  color: #ffffff;
  font-weight: 400;
  border: none;
  outline: none;
}

.nav-item:after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7px;
  margin: auto;
  width: 6px;
  height: 6px;
  opacity: 0;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
  border: 1px solid black;
}

.nav-item:focus::after,
.nav-item:hover::after {
  opacity: 100;
  background-color: #9d1a10;
}

img.food-lanuch {
  filter: drop-shadow(0 50px 200px rgb(255, 18, 2));
}

/* تحسين التصميم للشاشات الصغيرة */
@media (max-width: 768px) {
  body {
    padding: 1rem;
  }

  .relative.flex {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .flex.items-center {
    justify-content: center;
  }

  ul.flex {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  li.nav-item {
    font-size: 1rem;
  }

  .hidden.lg\\:block {
    display: block;
  }

  a.text-unactiveText {
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  .contact-button {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
}


