/* صواني المنيو */
.siniya-gallery {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.siniya-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(226, 92, 26, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 180ms, transform 180ms;
  border: 1.5px solid #f0e8e0;
  padding-bottom: 1.1rem;
}

.siniya-card:hover {
  box-shadow: 0 12px 32px rgba(226, 92, 26, 0.18);
  transform: translateY(-3px) scale(1.03);
  border-color: var(--accent);
}

.siniya-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 1.5px solid #f0e8e0;
}

.siniya-card h3 {
  margin: 1.1rem 0 0.2rem;
  font-size: 1.1rem;
  color: var(--accent);
  font-family: "Tajawal", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

:root {
  --bg-main: #0a0a0a;
  --bg-soft: #fcfaf8;
  --accent: #e25c1a;
  --accent-glow: rgba(226, 92, 26, 0.4);
  --accent-soft: rgba(226, 92, 26, 0.1);
  --gold: #e8b84b;
  --gold-glow: rgba(232, 184, 75, 0.3);
  --text: #111;
  --text-white: #fff;
  --muted: #777;
  --card: #ffffff;
  --border: rgba(0, 0, 0, 0.08);
  --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
  --glass: rgba(10, 10, 10, 0.85);
}

/* تاثيرات الظهور */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  background: #fff;
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 4rem;
  height: 80px;
  background: #0d0d0d;
  border-bottom: 2px solid var(--accent);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: space-between;
  margin-right: 2.5rem;
}


.brand-block {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-info {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: "Tajawal", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.brand-title span:first-child {
  color: #fff;
}

.brand-accent {
  color: var(--accent);
}

.brand-subtitle {
  margin: 0;
  color: #9a9a9a;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.phone-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 10px;
  padding: 13px 26px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid #333;
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  padding: 5rem 4rem;
  min-height: 85vh;
  background: linear-gradient(rgba(10, 10, 10, 0.75), rgba(10, 10, 10, 0.85)), url('Assets/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  width: fit-content;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(226, 92, 26, 0.27);
  color: #fff;
  font-size: 0.9rem;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(226, 92, 26, 0.7);
  animation: pulse 1.4s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(226, 92, 26, 0.7);
  }

  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(226, 92, 26, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(226, 92, 26, 0);
  }
}

.hero h1 {
  font-family: "Tajawal", sans-serif;
  font-size: 4.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 1.5rem 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
  display: block;
}

.gold-text {
  color: var(--gold);
}

.accent-text {
  color: var(--accent);
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 2;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.4rem 0 2rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.6rem;
  color: #fff;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.glow-ring {
  position: absolute;
  border-radius: 50%;
  inset: auto;
}

.glow-ring-one {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: -10%;
  right: -10%;
  filter: blur(40px);
}

.glow-ring-two {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(226, 92, 26, 0.24);
  bottom: 20px;
  left: 30px;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 1rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.dish-card {
  background: #191919;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 1rem;
  transition: border-color 180ms ease, transform 180ms ease;
}

.dish-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.dish-feature {
  grid-column: 1 / -1;
  background: linear-gradient(180deg, #1e1510, #181818);
  border-color: rgba(226, 92, 26, 0.4);
}

.dish-feature h2,
.small-card h3 {
  margin: 0.6rem 0 0.2rem;
  font-size: 1rem;
}

.dish-badge {
  display: inline-flex;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
}

.dish-emoji {
  font-size: 2rem;
}

.stars {
  color: var(--gold);
  font-size: 0.9rem;
}

.price-row {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  color: #fff;
  font-weight: 700;
}

.small-card p {
  margin: 0;
  color: #ddd;
}

.floating-pill {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #191919;
  box-shadow: var(--shadow);
}

.floating-pill p {
  margin: 0;
  color: #fff;
  font-size: 0.9rem;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #111;
  font-weight: 800;
  margin-left: -8px;
  border: 2px solid #191919;
}

.avatar.orange {
  background: var(--accent);
}

.avatar.gold {
  background: var(--gold);
}

.avatar.green {
  background: #4caf50;
}

.section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}

.categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2rem 3rem;
  background: var(--bg-soft);
}

.category-item {
  width: 92px;
  padding: 0.85rem 0.6rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(226, 92, 26, 0.18);
  text-align: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 160ms ease, border-color 160ms ease;
}

.category-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.category-icon {
  font-size: 2rem;
}

.category-item span {
  display: block;
  margin-top: 0.5rem;
  color: #444;
  font-size: 0.88rem;
}

.offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 3rem;
  background: #fff;
}

.offer-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.3rem;
  border-radius: 18px;
  color: #fff;
}

.orange-offer {
  background: var(--accent);
}

.dark-offer {
  background: #1a1a1a;
}

.gold-offer {
  background: var(--gold);
  color: #2a1a00;
}

.offer-emoji {
  font-size: 2.8rem;
}

.offer-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.offer-discount {
  margin: 0.2rem 0;
  opacity: 0.95;
}

.offer-price {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
}

.about-section {
  display: flex;
  gap: 2rem;
  padding: 3rem;
  background: #fff;
}

.about-copy {
  flex: 1;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-heading h2 {
  font-family: "Tajawal", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  position: relative;
  padding-bottom: 1rem;
}

.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 99px;
}

.menu-card,
.siniya-card,
.offer-card,
.review-card,
.category-item {
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover,
.siniya-card:hover,
.review-card:hover,
.category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  border-color: var(--accent-glow);
}

.siniya-card img {
  border-radius: 18px 18px 0 0;
}

.review-card {
  border-radius: 24px;
  padding: 2rem;
}

.footer {
  background: #0a0a0a;
  padding: 5rem 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-heading p:last-child {
  color: #666;
  margin: 0;
}

.feature-list {
  padding-right: 1.2rem;
  color: #333;
}

.about-gallery {
  flex: 0.95;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.about-card {
  min-height: 220px;
  border-radius: 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #2b1c00;
  font-weight: 700;
  overflow: hidden;
  position: relative;
}

.about-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2));
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.about-card-copy p {
  margin: 0;
  font-weight: 800;
}

.warm-card {
  background: #f5ece0;
}

.fire-card {
  background: #f0e4d0;
}

.about-emoji {
  font-size: 2.2rem;
}

.menu-link-dark {
  color: #111 !important;
}

.delivery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.5rem 3rem 3rem;
  background: var(--bg-soft);
}

.delivery-strip article {
  background: #fff;
  padding: 1.2rem;
  border-radius: 16px;
  text-align: center;
}

.delivery-icon {
  font-size: 2.8rem;
}

.delivery-strip h3 {
  margin: 0.6rem 0 0.3rem;
  font-family: "Tajawal", sans-serif;
}

.delivery-strip p {
  margin: 0;
  color: #666;
  font-size: 0.92rem;
}

.menu-section {
  padding: 3rem;
  background: #fff;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}


.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.3rem;
}

.tab {
  border: 0;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  background: #f0e8e0;
  color: #222;
  font-family: inherit;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.tab.active {
  background: var(--accent);
  color: #fff;
}

.tab:hover {
  transform: translateY(-1px);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.2rem;
}

.menu-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f0e8e0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(226, 92, 26, 0.2);
}

.menu-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  font-size: 2.2rem;
  background: #f6eee3;
}

.menu-info {
  padding: 1rem;
}

.menu-toprow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.menu-info h3 {
  margin: 0;
  font-size: 1rem;
}

.menu-info p {
  margin: 0.5rem 0 0.9rem;
  color: #666;
  font-size: 0.9rem;
}

.menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  color: var(--accent);
  font-weight: 800;
}

.add-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.centered-row {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.reviews-section {
  padding: 0 3rem 3rem;
  background: var(--bg-soft);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1rem;
}

.review-card {
  background: #fff;
  border: 1px solid #f0e8e0;
  border-radius: 12px;
  padding: 1.2rem;
}

.review-card p {
  color: #555;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.review-footer strong,
.review-footer small {
  display: block;
}

.review-footer small {
  color: #777;
}

.gallery-section {
  padding: 3rem;
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-tile {
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(135deg, #f8e8d6, #f2dcc9);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-tile:hover {
  transform: scale(1.04);
}

.tile-large {
  grid-row: span 2;
}

.footer {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 2.5rem 3rem;
  background: #111;
  color: #fff;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.2rem;
  object-fit: contain;
  display: block;
}

.footer-column h4 {
  color: var(--gold);
  margin-top: 0;
}

.footer-column p,
.footer-column a {
  display: block;
  color: #bbb;
  margin: 0.45rem 0;
}

.footer-column a:hover {
  color: var(--accent);
}

.newsletter {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.newsletter input {
  flex: 1;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  background: #171717;
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 3rem;
  background: #0a0a0a;
  color: #bbb;
}

.footer-bottom a {
  color: #bbb;
}

.hidden {
  display: none;
}

/* الموبايل والتابلت */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 1001;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 99px;
  transition: transform 0.3s, opacity 0.3s;
}

@media (max-width: 970px) {
  .menu-toggle {
    display: flex;
  }

  .nav-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #111;
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    transition: right 0.4s ease;
    z-index: 1000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-container.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.2rem;
  }

  .nav-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }

  /* انميشن الهامبرجر */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .navbar {
    padding: 0 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4rem 1.5rem;
    gap: 3rem;
  }

  .hero-copy {
    align-items: center;
  }

  .hero-copy p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .about-section {
    flex-direction: column;
    padding: 3rem 1.5rem;
  }

  .offers,
  .delivery-strip,
  .footer {
    grid-template-columns: 1fr;
    padding-inline: 1.5rem;
  }

  .delivery-strip {
    gap: 1rem;
  }

  .section-heading {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .category-item {
    width: calc(50% - 1rem);
  }

  .newsletter {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}