/* =========================================================
   KABAB AL KHALEEJ RESTAURANT — styles.css
   Light & clean theme with warm grill accents (EN + AR/RTL)
   ========================================================= */

:root {
  --c-accent: #f47321;
  --c-accent-dark: #d95f10;
  --c-accent-soft: #fdefe3;
  --c-ink: #1f2328;
  --c-ink-soft: #4a4f57;
  --c-muted: #737980;
  --c-bg: #ffffff;
  --c-bg-alt: #faf6f1;
  --c-line: #ece6df;
  --c-danger: #b71c1c;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(31, 35, 40, 0.08);
  --font-en: "Poppins", "Segoe UI", Tahoma, sans-serif;
  --font-ar: "Tajawal", "Segoe UI", Tahoma, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--font-en);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

html[lang="ar"] body { font-family: var(--font-ar); letter-spacing: 0; }
html[lang="ar"] .site-header,
html[lang="ar"] .main-nav,
html[lang="ar"] .brand-text,
html[lang="ar"] .hero-content,
html[lang="ar"] .section-title,
html[lang="ar"] h1, html[lang="ar"] h2, html[lang="ar"] h3 { letter-spacing: 0; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: min(1120px, 92%); margin-inline: auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-primary { background: var(--c-accent); color: #fff; box-shadow: 0 8px 20px rgba(244, 115, 33, 0.35); }
.btn-primary:hover { background: var(--c-accent-dark); }
.btn-whatsapp { background: #25d366; color: #fff; box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35); }
.btn-whatsapp:hover { background: #1fbd58; }
.wa-icon { width: 20px; height: 20px; display: inline-block; vertical-align: middle; }
.btn-whatsapp .wa-icon, .btn-icon-only .wa-icon { color: #fff; }
.wa-link { display: inline-flex; align-items: center; gap: 7px; }
.wa-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: #25d366; color: #fff;
}
.wa-pill .wa-icon { width: 13px; height: 13px; }
.btn-outline { background: #fff; color: var(--c-accent); border-color: var(--c-accent); }
.btn-outline:hover { background: var(--c-accent-soft); }
.btn-icon-only { font-size: 0; width: 44px; height: 44px; padding: 0; border-radius: 50%; }
.btn-full { width: 100%; margin-top: 14px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 46px; width: auto; border-radius: 8px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-weight: 800; font-size: 1.05rem; color: var(--c-ink); letter-spacing: 0.5px; }
.brand-text small { font-size: 0.72rem; color: var(--c-muted); }

.main-nav { display: flex; gap: 26px; }
.main-nav a { font-weight: 600; font-size: 0.92rem; color: var(--c-ink-soft); position: relative; padding: 4px 0; }
.main-nav a:hover, .main-nav a.active { color: var(--c-accent); }
.main-nav a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 3px; border-radius: 3px; background: var(--c-accent);
}

.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-toggle {
  font-family: inherit; font-weight: 700; font-size: 0.86rem; color: var(--c-accent);
  background: var(--c-accent-soft); border: 1px solid var(--c-accent); border-radius: 999px;
  padding: 8px 16px; cursor: pointer; transition: background 0.15s ease, color 0.15s ease;
}
.lang-toggle:hover { background: var(--c-accent); color: #fff; }
.btn-call span { display: inline; }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: var(--c-ink); }

@media (max-width: 900px) {
  .main-nav {
    position: fixed; inset: 70px 0 auto 0; background: #fff; flex-direction: column;
    gap: 0; padding: 10px 6%; border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform 0.25s ease; z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--c-line); font-size: 1rem; }
  .nav-toggle { display: block; }
  .btn-call span { display: none; }
  .btn-call { font-size: 0; width: 44px; height: 44px; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: url("images/interior-1.jpg") center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15, 12, 8, 0.88) 0%, rgba(24, 18, 12, 0.72) 55%, rgba(15, 12, 8, 0.45) 100%);
}
.hero-content { position: relative; color: #fff; max-width: 720px; padding: 90px 0; }
.hero-logo {
  height: 104px; width: auto; margin-bottom: 18px; border-radius: 14px;
  background: #fff; padding: 8px; box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.hero-eyebrow {
  display: inline-block; background: rgba(244, 115, 33, 0.18); border: 1px solid rgba(244, 115, 33, 0.6);
  color: #ffb37c; padding: 6px 16px; border-radius: 999px; font-weight: 600; font-size: 0.85rem; letter-spacing: 1px;
}
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; line-height: 1.08; margin: 18px 0 16px; }
.hero-tagline { font-size: clamp(0.98rem, 2vw, 1.15rem); color: #ece6df; max-width: 560px; margin-bottom: 18px; }
.hero-rating { display: flex; align-items: center; gap: 10px; color: #ece6df; font-weight: 500; margin-bottom: 30px; }
.hero-rating .stars { color: #fbbf24; font-size: 1.15rem; letter-spacing: 2px; }
.hero-rating .stars span { color: #6b6f74; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============ SECTIONS ============ */
.section { padding: 84px 0; }
.section-alt { background: var(--c-bg-alt); }
.section-eyebrow {
  color: var(--c-accent); font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  font-size: 0.8rem; margin-bottom: 8px;
}
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.section-title.light { color: #fff; }
.section-sub { color: var(--c-muted); margin-bottom: 34px; max-width: 640px; }

/* ============ ABOUT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-media-small {
  position: absolute; right: -18px; bottom: -24px; width: 48%; border: 6px solid #fff; border-radius: var(--radius);
}
.about-text p { color: var(--c-ink-soft); margin-bottom: 14px; }
.about-features { margin-top: 18px; display: grid; gap: 10px; }
.about-features li {
  background: var(--c-bg); border: 1px solid var(--c-line); border-radius: 12px;
  padding: 12px 16px; font-weight: 600; font-size: 0.93rem;
}
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-media-small { position: static; width: 70%; margin: 14px auto 0; border-width: 4px; }
}

/* ============ DEALS ============ */
.deals { background: linear-gradient(120deg, #2a2219 0%, #3a2c1b 60%, #2a2219 100%); padding: 64px 0; }
.deals-head { color: #ffd9bd; margin-bottom: 34px; max-width: 560px; }
.deals-head p { color: #cbb7a2; }
.deals-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; }
.deal-card {
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(244, 115, 33, 0.35);
  border-radius: var(--radius); padding: 24px; text-align: center; color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}
.deal-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.1); }
.deal-tag {
  display: inline-block; background: var(--c-accent); color: #fff; font-size: 0.72rem; font-weight: 700;
  padding: 3px 12px; border-radius: 999px; letter-spacing: 1px; text-transform: uppercase;
}
.deal-card h3 { font-size: 2.4rem; font-weight: 800; margin: 10px 0 2px; color: #ffb37c; }
.deal-price { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.deal-note { font-size: 0.85rem; color: #cbb7a2; }

/* ============ MENU ============ */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.menu-tab {
  font-family: inherit; font-weight: 600; font-size: 0.9rem; color: var(--c-ink-soft);
  background: #fff; border: 1px solid var(--c-line); border-radius: 999px; padding: 10px 20px;
  cursor: pointer; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.menu-tab:hover { border-color: var(--c-accent); color: var(--c-accent); }
.menu-tab.active { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }

.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.menu-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: 0 4px 14px rgba(31, 35, 40, 0.04);
  display: flex; justify-content: space-between; gap: 14px; align-items: flex-start;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.menu-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.menu-card h3 { font-size: 1.02rem; font-weight: 700; line-height: 1.3; }
.menu-card .menu-card-note { font-size: 0.82rem; color: var(--c-muted); margin-top: 4px; }
.menu-price {
  flex-shrink: 0; background: var(--c-accent-soft); color: var(--c-accent-dark);
  font-weight: 800; font-size: 0.95rem; padding: 8px 14px; border-radius: 999px; white-space: nowrap;
}
.menu-note { margin-top: 30px; text-align: center; color: var(--c-muted); font-size: 0.85rem; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px;
}
.gallery-grid a { border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 4 / 3; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 12px;
  transition: transform 0.35s ease;
}
.gallery-grid a:hover img { transform: scale(1.06); }

/* ============ REVIEWS ============ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card {
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: 26px; box-shadow: 0 4px 14px rgba(31, 35, 40, 0.04);
  display: flex; flex-direction: column; gap: 12px;
}
.review-card .stars { color: #fbbf24; font-size: 1.05rem; letter-spacing: 2px; }
.review-text { color: var(--c-ink-soft); font-size: 0.95rem; flex: 1; }
.review-author { color: var(--c-muted); font-size: 0.85rem; }
.review-author strong { color: var(--c-ink); }
.reviews-footnote { text-align: center; margin-top: 28px; color: var(--c-muted); font-size: 0.88rem; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info { display: grid; gap: 16px; align-content: start; }
.info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); padding: 18px 20px;
}
.info-icon { font-size: 1.5rem; line-height: 1; }
.info-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.info-card p { font-size: 0.92rem; color: var(--c-ink-soft); }
.info-card a { color: var(--c-accent); font-weight: 600; }
.info-card a:hover { text-decoration: underline; }
.info-sub { font-size: 0.82rem; color: var(--c-muted); }
.hours-table { border-collapse: collapse; width: 100%; font-size: 0.92rem; }
.hours-table td { padding: 3px 0; color: var(--c-ink-soft); }
.hours-table td:last-child { text-align: end; font-weight: 600; color: var(--c-ink); }

.map-wrap iframe {
  width: 100%; height: 100%; min-height: 460px; border: 0; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap iframe { min-height: 360px; }
}

/* ============ FOOTER ============ */
.site-footer { background: #1f2328; color: #b9bec6; padding-top: 48px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; padding-bottom: 36px; }
.footer-logo { font-weight: 800; color: #fff; margin-bottom: 8px; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
.footer-logo-img { height: 40px; width: auto; border-radius: 6px; }
.footer-inner p { font-size: 0.9rem; }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav a { font-size: 0.9rem; }
.footer-nav a:hover { color: var(--c-accent); }
.footer-contact p { margin-bottom: 6px; }
.footer-contact a:hover { color: var(--c-accent); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 16px 0; }
.footer-bottom p { font-size: 0.82rem; text-align: center; color: #7f868f; }
@media (max-width: 700px) {
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
}

/* ============ FLOATING WHATSAPP BUTTON ============ */
.fab {
  position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 1.7rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s ease;
}
.fab:hover { transform: translateY(-4px) scale(1.05); }
.fab .wa-icon { width: 34px; height: 34px; color: #fff; }

/* ============ RTL / ARABIC ============ */
html[dir="rtl"] body { text-align: right; }
html[dir="rtl"] .menu-price { direction: ltr; }
html[dir="rtl"] .hero-eyebrow,
html[dir="rtl"] .section-eyebrow { letter-spacing: 0; }
html[dir="rtl"] .hours-table td:last-child { text-align: left; }
html[dir="rtl"] .btn-call span { display: inline; }

/* ============ RESPONSIVE FINE-TUNING ============ */
@media (max-width: 520px) {
  .hero { min-height: 80vh; }
  .hero-buttons .btn { flex: 1 1 100%; }
  .btn-call .btn-icon-only { width: 44px; }
}
@media (max-width: 420px) {
  .brand-text { display: none; }
  .brand-logo { height: 42px; }
  .hero-logo { height: 84px; }
}