/* Header / Nav styles to support fixed header and logo */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-surface, #fff);
  z-index: 1000;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.nav__brand .nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
}

/* Arabic Navigation Support */
html[lang="ar"] .nav__link,
html[dir="rtl"] .nav__link {
  font-family: 'Cairo', 'Tajawal', 'Noto Sans Arabic', sans-serif;
  font-weight: 600;
  letter-spacing: 0;
}

html[lang="ar"] .nav__phone,
html[dir="rtl"] .nav__phone {
  font-family: 'Inter', sans-serif;
  direction: ltr;
}

/* footer logo */
.footer__brand .footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}

/* Ensure page content isn't hidden behind fixed header */
main {
  display: block;
  padding-top: 84px; /* header height + small spacing; adjust if header changes */
}

/* Small screens: reduce header padding and main offset */
@media (max-width: 640px) {
  .nav.container { padding: 12px 16px; }
  .nav__brand .nav__logo-img { height: 36px; }
  main { padding-top: 72px; }
}
