*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #c0392b;
  --red-dk: #96281b;
  --gold: #e8a020;
  --gold-lt: #f5c842;
  --cream: #fdf8f0;
  --dark: #1a1008;
  --mid: #3d2b0e;
  --grey: #7a6a5a;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}

/* RTL support for Arabic */
[dir="rtl"] .section-line {
  margin-left: auto;
  margin-right: 0;
}
[dir="rtl"] .stat {
  border-left: none;
  border-right: 3px solid var(--gold);
}
[dir="rtl"] .info-card {
  flex-direction: row-reverse;
}
[dir="rtl"] .nav-links {
  flex-direction: row-reverse;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 70px;
  background: rgba(26, 16, 8, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 160, 32, 0.18);
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}
.nav-logo span {
  color: var(--white);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color 0.22s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  transition: background 0.22s !important;
}
.nav-cta:hover {
  background: var(--red-dk) !important;
}

/* Lang switcher */
.lang-switcher {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}
.lang-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.5px;
  line-height: 1;
}
.lang-btn:hover,
.lang-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background:
    linear-gradient(rgba(10, 5, 0, 0.58) 0%, rgba(10, 5, 0, 0.7) 100%),
    url("https://images.unsplash.com/photo-1561043433-aaf687c4cf04?w=1600&q=80") center/cover no-repeat;
  padding: 6rem 2rem 4rem;
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.hero h1 em {
  display: block;
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.95rem, 2.5vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 1px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* INFO STRIP */
.strip {
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.1rem 2rem;
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
}
.strip-item svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* Section shared styles */
.section-tag {
  display: inline-block;
  font-size: 0.73rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
}
.section-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.section-desc {
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.78;
  max-width: 540px;
}

/* ABOUT */
#about {
  padding: 6rem 5vw;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 480px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
}
.about-badge-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.35;
  box-shadow: 0 8px 24px rgba(192, 57, 43, 0.4);
}
.about-badge-img strong {
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.stat {
  padding: 1.1rem 1.4rem;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--red);
}
.stat span {
  font-size: 0.82rem;
  color: var(--grey);
}

/* MENU */
.menu-section {
  background: var(--dark);
  padding: 6rem 5vw;
}
.menu-section .section-title { color: var(--white); }
.menu-section .section-tag { color: rgba(245, 200, 66, 0.7); }
.menu-section .section-line { background: linear-gradient(90deg, var(--gold), var(--red)); }
.menu-section .section-desc { color: rgba(255, 255, 255, 0.5); }

.menu-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}
.menu-tabs {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.menu-tab {
  padding: 0.5rem 1.35rem;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: inherit;
}
.menu-tab.active,
.menu-tab:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.1rem;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.22s;
}
.menu-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(232, 160, 32, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}
.menu-card-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  transition: transform 0.35s;
}
.menu-card:hover .menu-card-img {
  transform: scale(1.04);
}
.menu-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.2rem 1.1rem;
  flex: 1;
}
.menu-card-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}
.menu-card-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.5;
}
.menu-card-price {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}
.menu-variants {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 0.6rem;
}
.menu-variant-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-variant-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.menu-variant-label strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}
.menu-variant-price {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}
.menu-no-img {
  width: 100%;
  height: 110px;
  background: linear-gradient(135deg, rgba(232, 160, 32, 0.12), rgba(192, 57, 43, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}
.menu-category {
  display: none;
}
.menu-category.active {
  display: contents;
}

/* REVIEWS */
.reviews-section {
  padding: 6rem 5vw;
  background: var(--white);
}
.reviews-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-header {
  margin-bottom: 3rem;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem 2.5rem;
  background: var(--dark);
  border-radius: 12px;
  flex-wrap: wrap;
}
.rating-big {
  text-align: center;
}
.rating-big .num {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin: 0.3rem 0;
}
.rating-big .count {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.rating-bars {
  flex: 1;
  min-width: 200px;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.bar-row span:first-child {
  width: 30px;
  text-align: right;
  flex-shrink: 0;
}
.bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 3px;
}
.bar-row span:last-child {
  width: 28px;
  flex-shrink: 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
}
.review-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.22s;
}
.review-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.review-name {
  font-weight: 600;
  font-size: 0.92rem;
}
.review-date {
  font-size: 0.75rem;
  color: var(--grey);
}
.review-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
}
.review-text {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.68;
}
.google-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--grey);
}
.google-badge svg {
  width: 14px;
  height: 14px;
}

/* GALLERY */
.gallery {
  background: var(--cream);
  padding: 6rem 5vw;
}
.gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-header {
  margin-bottom: 2.5rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}
.gallery-grid .big {
  grid-column: span 2;
  height: 300px;
}

/* CONTACT */
.contact-section {
  background: var(--white);
  padding: 6rem 5vw;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem;
  background: var(--cream);
  border-radius: 10px;
  margin-bottom: 0.9rem;
}
.info-icon {
  width: 42px;
  height: 42px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 18px;
  height: 18px;
  color: white;
}
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 1.2rem;
  margin-top: 0.2rem;
}
.hday {
  font-size: 0.84rem;
  color: var(--grey);
  white-space: nowrap;
  line-height: 1.9;
}
.htime {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.9;
}
.info-title {
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
}
.info-text {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.6;
}
.map-placeholder {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* SEO block */
.seo-block {
  background: var(--dark);
  padding: 3rem 5vw 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.seo-block-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.seo-block h2 {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.seo-block p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  line-height: 1.9;
  max-width: 900px;
}
.seo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.seo-tag {
  background: #2d1f0f;
  color: #d4c090;
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 3px;
  border: 1px solid #4a3520;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.83rem;
}
footer span {
  color: var(--gold);
}

/* Responsive */
@media (max-width: 960px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-img-wrap img {
    height: 300px;
  }
  .about-badge-img {
    right: 10px;
    bottom: 10px;
  }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid .big {
    grid-column: span 1;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr;
  }
  .strip {
    gap: 1rem;
  }
  .rating-summary {
    gap: 1.5rem;
  }
}
