/* =========================================
   Abou al Zouz - Egyptian Street Food
   Shared styles for all pages
   ========================================= */

:root {
  --terracotta: #c1502e;
  --terracotta-dark: #a0401f;
  --deep-green: #2d6a4f;
  --deep-green-dark: #1b4332;
  --cream: #f5e6d3;
  --cream-light: #faf3e7;
  --charcoal: #1a1a1a;
  --charcoal-soft: #2c2c2c;
  --gold: #d4a437;
  --text: #1a1a1a;
  --text-soft: #4a4a4a;
  --text-muted: #7a7a7a;
  --border: rgba(26, 26, 26, 0.12);
  --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.08);
  --shadow-md: 0 6px 24px rgba(26, 26, 26, 0.12);
  --shadow-lg: 0 18px 48px rgba(26, 26, 26, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --font-en: 'Lora', Georgia, 'Times New Roman', serif;
  --font-ar: 'Tajawal', 'Cairo', 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-en);
  background: var(--cream-light);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html[lang="ar"] body {
  font-family: var(--font-ar);
  line-height: 1.9;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--terracotta);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--deep-green);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================
   Navigation
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 230, 211, 0.96);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--charcoal);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--deep-green));
  display: grid;
  place-items: center;
  color: var(--cream-light);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

html[lang="ar"] .brand-mark {
  font-family: var(--font-ar);
}

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  line-height: 1.1;
}

html[lang="ar"] .brand-name {
  font-family: var(--font-ar);
  font-weight: 800;
  font-size: 1.2rem;
}

.brand-name small {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 2px;
}

html[lang="ar"] .brand-name small {
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--charcoal);
  color: var(--cream-light);
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.nav-menu a {
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 0.4rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

html[lang="ar"] .nav-menu a::after {
  transform-origin: right;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  transform: scaleX(1);
}

.nav-menu a.active {
  color: var(--terracotta);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--charcoal);
  color: var(--cream-light);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}

.lang-toggle:hover {
  background: var(--terracotta);
  color: var(--cream-light);
}

html[lang="ar"] .lang-toggle {
  font-family: var(--font-ar);
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--cream-light);
  box-shadow: 0 6px 20px rgba(193, 80, 46, 0.35);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  color: var(--cream-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(193, 80, 46, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--cream-light);
  border: 2px solid var(--cream-light);
}

.btn-secondary:hover {
  background: var(--cream-light);
  color: var(--charcoal);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--cream-light);
}

.btn-dark:hover {
  background: var(--deep-green);
  color: var(--cream-light);
}

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: var(--cream-light);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1593504049359-74330189a345?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  filter: brightness(0.55) saturate(1.05);
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(26, 26, 26, 0.75) 0%, rgba(45, 106, 79, 0.4) 60%, rgba(193, 80, 46, 0.55) 100%);
  z-index: -1;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem 1.25rem 5rem;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(245, 230, 211, 0.12);
  border: 1px solid rgba(245, 230, 211, 0.3);
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

html[lang="ar"] .hero-eyebrow {
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  font-weight: 700;
  max-width: 820px;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

html[lang="ar"] .hero h1 {
  font-family: var(--font-ar);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
  font-size: 0.55em;
  font-weight: 600;
  margin-top: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}

html[lang="ar"] .hero h1 em {
  letter-spacing: 0;
  text-transform: none;
  font-weight: 500;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 640px;
  margin-bottom: 2rem;
  color: rgba(245, 230, 211, 0.92);
}

html[lang="ar"] .hero-sub {
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  border-top: 1px solid rgba(245, 230, 211, 0.2);
  padding-top: 1.5rem;
  max-width: 700px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-size: 1.85rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.hero-stat span {
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.8);
  margin-top: 0.35rem;
}

html[lang="ar"] .hero-stat span {
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.85rem;
}

/* ============================
   Sections
   ============================ */
.section {
  padding: 5rem 1.25rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-eyebrow {
  display: inline-block;
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

html[lang="ar"] .section-eyebrow {
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.2;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.85rem;
  letter-spacing: -0.3px;
}

html[lang="ar"] .section-title {
  font-family: var(--font-ar);
  font-weight: 800;
  letter-spacing: 0;
}

.section-sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 1.05rem;
}

html[lang="ar"] .section-sub {
  font-weight: 400;
}

/* ============================
   Highlight Cards (Home)
   ============================ */
.highlights {
  background: var(--cream);
  position: relative;
}

.highlights::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(193, 80, 46, 0.08), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(45, 106, 79, 0.08), transparent 60%);
  pointer-events: none;
}

.highlights .section-inner {
  position: relative;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  background: var(--cream-light);
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--deep-green));
  display: grid;
  place-items: center;
  color: var(--cream-light);
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
  color: var(--charcoal);
}

html[lang="ar"] .highlight-card h3 {
  font-family: var(--font-ar);
  font-weight: 700;
}

.highlight-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

/* ============================
   Menu preview
   ============================ */
.menu-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.menu-card {
  background: var(--cream-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
}

.menu-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.menu-card h3 {
  font-size: 1.15rem;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.3;
}

html[lang="ar"] .menu-card h3 {
  font-family: var(--font-ar);
  font-weight: 700;
}

.menu-card .ar-name {
  font-family: var(--font-ar);
  font-weight: 600;
  color: var(--terracotta);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  direction: rtl;
}

html[lang="ar"] .menu-card .ar-name {
  font-size: 1.1rem;
}

.menu-card .desc {
  color: var(--text-soft);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
}

html[lang="ar"] .menu-card .desc {
  font-size: 0.95rem;
  line-height: 1.7;
}

.menu-tag {
  display: inline-block;
  background: var(--deep-green);
  color: var(--cream-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

html[lang="ar"] .menu-tag {
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--font-ar);
  font-size: 0.78rem;
}

.section-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ============================
   Testimonials
   ============================ */
.testimonials {
  background: var(--charcoal);
  color: var(--cream-light);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -60px;
  left: 20px;
  font-size: 18rem;
  color: rgba(245, 230, 211, 0.04);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonials .section-title,
.testimonials .section-eyebrow {
  color: var(--cream-light);
}

.testimonials .section-eyebrow {
  color: var(--gold);
}

.testimonials .section-sub {
  color: rgba(245, 230, 211, 0.7);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.testimonial-card {
  background: var(--charcoal-soft);
  border: 1px solid rgba(245, 230, 211, 0.08);
  border-radius: var(--radius-md);
  padding: 1.85rem 1.65rem 1.65rem;
  position: relative;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 0.9rem;
}

.testimonial-text {
  color: rgba(245, 230, 211, 0.92);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  font-style: italic;
}

html[lang="ar"] .testimonial-text {
  font-style: normal;
  line-height: 1.85;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 230, 211, 0.1);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  display: grid;
  place-items: center;
  color: var(--cream-light);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author strong {
  display: block;
  color: var(--cream-light);
  font-size: 0.95rem;
}

.testimonial-author span {
  color: rgba(245, 230, 211, 0.55);
  font-size: 0.78rem;
}

/* ============================
   Footer
   ============================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(245, 230, 211, 0.7);
  padding: 3.5rem 1.25rem 1.5rem;
  border-top: 4px solid var(--terracotta);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand h3 {
  color: var(--cream-light);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

html[lang="ar"] .footer-brand h3 {
  font-family: var(--font-ar);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--cream-light);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-weight: 700;
}

html[lang="ar"] .footer-col h4 {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-ar);
  font-size: 0.95rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col a {
  color: rgba(245, 230, 211, 0.7);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 230, 211, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
}

/* ============================
   Menu Page
   ============================ */
.page-hero {
  background: linear-gradient(135deg, var(--deep-green) 0%, var(--deep-green-dark) 100%);
  color: var(--cream-light);
  padding: 5rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1626700051175-6818013e1d4f?auto=format&fit=crop&w=1600&q=80') center/cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
}

.page-hero-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

html[lang="ar"] .page-hero h1 {
  font-family: var(--font-ar);
  font-weight: 800;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(245, 230, 211, 0.9);
}

html[lang="ar"] .page-hero p {
  font-weight: 400;
}

.menu-category {
  padding: 4rem 1.25rem 1rem;
}

.menu-category:nth-child(even) {
  background: var(--cream);
}

.menu-category-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--terracotta);
}

.menu-category-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  font-family: var(--font-en);
  min-width: 50px;
}

html[lang="ar"] .menu-category-num {
  font-family: var(--font-ar);
}

.menu-category-header h2 {
  font-size: 1.85rem;
  color: var(--charcoal);
  font-weight: 700;
  flex: 1;
}

html[lang="ar"] .menu-category-header h2 {
  font-family: var(--font-ar);
  font-weight: 800;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  display: flex;
  gap: 1.25rem;
  background: var(--cream-light);
  padding: 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.menu-category:nth-child(even) .menu-item {
  background: var(--cream-light);
}

.menu-item-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--cream);
}

.menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-body {
  flex: 1;
  min-width: 0;
}

.menu-item-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.3rem;
}

.menu-item-name {
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.3;
}

html[lang="ar"] .menu-item-name {
  font-family: var(--font-ar);
}

.menu-item-name .ar {
  display: block;
  font-family: var(--font-ar);
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 2px;
  direction: rtl;
}

html[lang="ar"] .menu-item-name .ar {
  font-size: 1.05rem;
  color: var(--charcoal);
  font-weight: 700;
}

html[lang="en"] .menu-item-name .en {
  display: block;
}

.menu-item-price {
  font-size: 0.95rem;
  color: var(--deep-green);
  font-weight: 700;
  white-space: nowrap;
  background: rgba(45, 106, 79, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
}

html[lang="ar"] .menu-item-price {
  font-family: var(--font-ar);
  font-size: 0.85rem;
}

.menu-item-desc {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
  direction: ltr;
  text-align: left;
}

html[lang="ar"] .menu-item-desc {
  direction: rtl;
  text-align: right;
  font-size: 0.92rem;
  line-height: 1.7;
}

html[lang="ar"] .menu-item-desc .en-text {
  display: none;
}

html[lang="en"] .menu-item-desc .ar-text {
  display: none;
}

.menu-note {
  text-align: center;
  padding: 2.5rem 1.25rem 4rem;
  background: var(--cream);
  color: var(--text-soft);
  font-size: 0.95rem;
}

.menu-note strong {
  color: var(--charcoal);
  font-weight: 700;
}

/* ============================
   Gallery
   ============================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.85), transparent);
  color: var(--cream-light);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

html[lang="ar"] .gallery-item-label {
  font-family: var(--font-ar);
  font-weight: 700;
  letter-spacing: 0;
}

.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-label .badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(245, 230, 211, 0.2);
  border: 1px solid rgba(245, 230, 211, 0.3);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  color: var(--cream-light);
}

html[lang="ar"] .gallery-item-label .badge {
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--font-ar);
  font-size: 0.7rem;
}

.gallery-item .badge-corner {
  position: absolute;
  top: 0.75rem;
  inset-inline-end: 0.75rem;
  background: rgba(26, 26, 26, 0.7);
  color: var(--cream-light);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

html[lang="ar"] .gallery-item .badge-corner {
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--font-ar);
}

/* ============================
   About
   ============================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-intro-img {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
}

.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro-img::after {
  content: '';
  position: absolute;
  inset: auto -10px -10px auto;
  width: 60%;
  height: 60%;
  border: 3px solid var(--terracotta);
  border-radius: var(--radius-md);
  z-index: -1;
}

.about-intro-body h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--charcoal);
  line-height: 1.2;
}

html[lang="ar"] .about-intro-body h2 {
  font-family: var(--font-ar);
  font-weight: 800;
  letter-spacing: 0;
}

.about-intro-body p {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 1.1rem;
}

html[lang="ar"] .about-intro-body p {
  line-height: 1.9;
  font-weight: 400;
}

.about-values {
  background: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--cream-light);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--deep-green);
  color: var(--cream-light);
  display: grid;
  place-items: center;
  margin: 0 auto 1.1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.value-card h3 {
  color: var(--charcoal);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

html[lang="ar"] .value-card h3 {
  font-family: var(--font-ar);
}

.value-card p {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

html[lang="ar"] .value-card p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.quote-callout {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-dark));
  color: var(--cream-light);
  padding: 3rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  max-width: 800px;
  margin: 3rem auto;
  position: relative;
}

.quote-callout blockquote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

html[lang="ar"] .quote-callout blockquote {
  font-style: normal;
  line-height: 1.8;
  font-weight: 500;
}

.quote-callout cite {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-style: normal;
  opacity: 0.9;
}

html[lang="ar"] .quote-callout cite {
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--font-ar);
  font-size: 0.95rem;
}

/* ============================
   Contact
   ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--cream);
  padding: 2.25rem 1.85rem;
  border-radius: var(--radius-md);
}

.contact-info-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  font-weight: 700;
}

html[lang="ar"] .contact-info-card h2 {
  font-family: var(--font-ar);
  font-weight: 800;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream-light);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.05rem;
}

.contact-item-body {
  flex: 1;
  min-width: 0;
}

.contact-item-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

html[lang="ar"] .contact-item-label {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-ar);
  font-size: 0.85rem;
}

.contact-item-value {
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

.contact-item-value a {
  color: var(--charcoal);
}

.contact-item-value a:hover {
  color: var(--terracotta);
}

html[lang="ar"] .contact-item-value {
  font-family: var(--font-ar);
  font-weight: 600;
}

.map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  padding: 0;
  box-shadow: var(--shadow-sm);
}

.map-embed {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 0;
  display: block;
}

.map-caption {
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

html[lang="ar"] .map-caption {
  font-family: var(--font-ar);
  font-size: 0.95rem;
}

/* ============================
   Responsive
   ============================ */
@media (max-width: 880px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu li:last-child a {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
  }

  .about-intro,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 3.5rem 1rem;
  }

  .hero-inner {
    padding: 4.5rem 1rem 3.5rem;
  }

  .hero-stats {
    gap: 1rem 1.5rem;
  }

  .hero-stat strong {
    font-size: 1.5rem;
  }

  .menu-card-row {
    flex-direction: column;
    gap: 0.4rem;
  }

  .menu-item {
    flex-direction: column;
  }

  .menu-item-img {
    width: 100%;
    height: 160px;
  }

  .menu-category-header h2 {
    font-size: 1.4rem;
  }
}

/* ============================
   Animation & utility
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--terracotta);
  color: var(--cream-light);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0.75rem;
}

html[lang="ar"] .skip-link {
  left: auto;
  right: 1rem;
}

html[lang="ar"] .skip-link:focus {
  right: 0.75rem;
  left: auto;
}
