   :root{
      --main:#d35400;
      --main-dark:#b03a2e;
      --muted:#777;
      --card-border:#e6e6e6;
    }
    body{
      font-family: "Tajawal", sans-serif;
      background:#fdfdfd;
      color:#222;
    }
   .navbar-nav .nav-link{
  position: relative;
  transition: color 0.3s;
}
.navbar-nav .nav-link::after{
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #d35400;
  transition: width 0.3s;
}
.navbar-nav .nav-link:hover{
  color: #d35400;
}
.navbar-nav .nav-link:hover::after{
  width: 100%;
}
.navbar-toggler{
  outline: none;
}
/* صورة الكاروسيل + تأثير */
.hero-section .carousel-item {
  position: relative;
  height: 80vh;
}
.hero-section .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  filter: brightness(70%); /* تخفيف قوة الصورة */
}

/* طبقة تعتيم فوق الصورة */
.hero-section .carousel-item::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

/* النصوص */
.hero-section .carousel-caption {
  bottom: 20%;
  z-index: 2; /* فوق الطبقة */
  text-shadow: 0 4px 15px rgba(0,0,0,0.9);
}
.hero-section .carousel-caption h1 {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}
.hero-section .carousel-caption p {
  font-size: 1.3rem;
  color: #f1f1f1;
  margin-bottom: 20px;
}

/* الزر */
.hero-section .carousel-caption .btn-main {
  background: var(--main);
  color: #fff;
  padding: 12px 35px;
  font-size: 1.15rem;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  transition: all 0.3s;
}
.hero-section .carousel-caption .btn-main:hover {
  background: var(--main-dark);
  transform: translateY(-3px);
}

/* تصميم البطاقة الحديث */
.category-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 300px;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.category-card:hover img {
  transform: scale(1.07);
}

.food-info {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.food-info h5 {
  font-weight: 700;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.food-info p {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0.8rem;
}

.food-info .price {
  font-weight: bold;
  color: #d35400;
  font-size: 1.5rem;
}

.food-info .btn {
  margin-top: 0.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
}

/* تجاوب البطاقة */
@media (max-width: 1200px) {
  .category-card { flex: 1 1 calc(33.33% - 1rem); max-width: calc(33.33% - 1rem); }
}
@media (max-width: 768px) {
  .category-card { flex: 1 1 calc(50% - 1rem); max-width: calc(50% - 1rem); }
}
@media (max-width: 480px) {
  .category-card { flex: 1 1 100%; max-width: 100%; }
}
    .category-section{
      background:#fff;
      border:1px solid var(--card-border);
      border-radius:12px;
      padding:1.25rem;
      margin-bottom:1.25rem;
    }
    .category-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1rem;border-bottom:1px solid #f0f0f0;padding-bottom:.75rem;}
    .category-header h5{margin:0;font-weight:700;color:#222;display:flex;align-items:center;gap:.5rem;}
    .category-card{
      background:#fff;
      border:1px solid #e9e9e9;
      border-radius:12px;
      box-shadow:0 4px 12px rgba(0,0,0,0.05);
      width:300px;
      overflow:hidden;
      transition:.3s;
    }
    .category-card:hover{transform:translateY(-5px);}
    .category-card img{width:100%;height:180px;object-fit:cover;}
    .category-card h5{margin:0;padding:.5rem 1rem;font-size:1.05rem;font-weight:700;color:#222;}
    .category-card p{padding:0 1rem 1rem;color:var(--muted);}
    .price{color:var(--main);font-weight:700;padding:0 1rem 1rem;display:block;}
   
  footer a:hover {
    text-decoration: underline;
  }
  .btn-main {
    background-color: #c0392b;
    color: white;
  }
  .btn-main:hover {
    background-color: #e74c3c;
    color: white;
  }