/* Zikar — unified nav + footer
   One source of truth for site chrome. Loaded synchronously so the nav
   is fully styled at first paint (zero-flash). */

/* ─── NAV ─── */
.zk-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 72px;
  font-family: 'DM Sans', system-ui, sans-serif;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease;
}
.zk-nav.is-scrolled {
  background: rgba(8,15,10,0.92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom-color: rgba(201,168,76,0.1);
}
.zk-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: inherit;
}
/* Logo image — shows the real Zikar brand mark */
.zk-logo-img {
  height: 44px; width: auto; display: block;
  object-fit: contain;
}
/* Text fallback — hidden by default once logo.png loads, shown via onerror */
.zk-brand-text {
  display: none; align-items: center; gap: 10px;
}
.zk-brand-ar {
  font-family: 'Amiri', serif;
  font-size: 30px; color: #c9a84c; line-height: 1;
}
.zk-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px; font-weight: 600;
  color: #f0ede8; letter-spacing: 3px;
}
.zk-links {
  display: flex; gap: 32px; list-style: none;
  margin: 0; padding: 0;
}
.zk-links a {
  font-size: 13px; color: #9ab8a5; text-decoration: none;
  letter-spacing: .5px; transition: color .2s;
}
.zk-links a:hover,
.zk-links a.zk-active,
.zk-links a[aria-current="page"] { color: #c9a84c; }
.zk-links a.zk-accent { color: #c9a84c; font-weight: 500; }
.zk-right { display: flex; gap: 12px; align-items: center; }
.zk-cta {
  font-size: 13px; font-weight: 500;
  background: #c9a84c; color: #080f0a;
  padding: 10px 24px; border-radius: 100px;
  text-decoration: none; transition: all .2s;
}
.zk-cta:hover { background: #e8c96d; transform: translateY(-1px); }
.zk-burger {
  display: none; background: none; border: 0;
  color: #f0ede8; font-size: 22px; cursor: pointer; padding: 8px;
  line-height: 1;
}
.zk-mobile {
  position: fixed; inset: 72px 0 0;
  background: rgba(8,15,10,0.98);
  -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px);
  z-index: 999; display: none; flex-direction: column;
  padding: 32px; gap: 8px; overflow-y: auto;
}
.zk-mobile.is-open { display: flex; }
.zk-mobile a {
  font-size: 18px; color: #f0ede8; text-decoration: none;
  padding: 14px 0; border-bottom: 1px solid rgba(201,168,76,0.08);
  font-family: 'Cormorant Garamond', serif;
}
.zk-mobile a.zk-active { color: #c9a84c; }
.zk-mobile .zk-cta {
  display: block; margin-top: 18px;
  background: #c9a84c; color: #080f0a;
  padding: 14px 24px; border-radius: 100px;
  text-align: center; font-family: 'DM Sans', sans-serif;
  font-weight: 500; font-size: 14px;
}
@media (max-width: 880px) {
  .zk-nav { padding: 0 20px; }
  .zk-links { display: none; }
  .zk-burger { display: inline-flex; align-items: center; }
}
@media (max-width: 560px) {
  .zk-nav .zk-cta { display: none; }
}

/* ─── FOOTER ─── */
.zk-footer {
  background: #0a1f12;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 60px 48px 32px;
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #4a7a5e; font-size: 13px;
  margin-top: 80px;
}
.zk-footer .zk-f-top {
  max-width: 1160px; margin: 0 auto 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.zk-footer .zk-f-brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px; text-decoration: none;
}
.zk-footer .zk-f-logo-img {
  height: 52px; width: auto; display: block; object-fit: contain;
}
.zk-footer .zk-f-brand-text {
  display: none; align-items: center; gap: 10px;
}
.zk-footer .zk-f-brand-ar {
  font-family: 'Amiri', serif; font-size: 28px; color: #c9a84c;
}
.zk-footer .zk-f-brand-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px; font-weight: 600;
  color: #f0ede8; letter-spacing: 2px;
}
.zk-footer .zk-f-tag {
  color: #4a7a5e; line-height: 1.7; max-width: 240px;
}
.zk-footer .zk-f-verse {
  font-family: 'Amiri', serif; font-size: 14px;
  color: #c9a84c; opacity: .6; margin-top: 14px; display: block;
}
.zk-footer .zk-f-title {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #c9a84c; margin-bottom: 18px; font-weight: 500;
}
.zk-footer ul { list-style: none; margin: 0; padding: 0; }
.zk-footer li { margin-bottom: 11px; }
.zk-footer a { color: #4a7a5e; text-decoration: none; transition: color .2s; }
.zk-footer a:hover { color: #c9a84c; }
.zk-footer .zk-f-bottom {
  max-width: 1160px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid rgba(201,168,76,0.08);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.zk-footer .zk-f-legal { display: flex; gap: 24px; flex-wrap: wrap; }
.zk-footer .zk-f-legal a { font-size: 12px; }

/* ─── SOCIAL ICONS ─── */
.zk-social {
  display: flex; gap: 10px; align-items: center;
  flex-wrap: wrap; margin-top: 24px;
}
.zk-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  color: #4a7a5e;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(255,255,255,0.03);
  text-decoration: none;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
  flex-shrink: 0;
}
.zk-social-link svg { width: 20px; height: 20px; }
.zk-social-link:hover {
  color: #c9a84c;
  border-color: rgba(201,168,76,0.45);
  background: rgba(201,168,76,0.08);
  transform: translateY(-2px);
}

@media (max-width: 880px) {
  .zk-footer { padding: 48px 20px 28px; }
  .zk-footer .zk-f-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .zk-footer .zk-f-bottom { flex-direction: column; text-align: center; }
}
