/* Header/Footer same as taweez-daulat page
   Replace/Add: /assets/css/kn-simple-header-footer.css
*/

.kn-simple-header{
  background:#0d1626;
  color:#fff;
  width:100%;
  box-shadow:0 10px 30px rgba(15,23,42,.14);
  border-bottom:0;
  position:relative;
  z-index:50;
}
.kn-simple-inner{
  width:min(1260px,94vw);
  margin:0 auto;
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  direction:ltr;
}
.kn-simple-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff !important;
  text-decoration:none !important;
  font-family:Georgia,"Times New Roman",serif;
  font-size:25px;
  font-weight:900;
  white-space:nowrap;
}
.kn-logo-box{
  width:50px;
  height:50px;
  border-radius:14px;
  background:#ffd45f;
  color:#06120d;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:900;
  box-shadow:0 10px 20px rgba(0,0,0,.18);
}
.kn-simple-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:wrap;
}
.kn-simple-nav a{
  background:#182437;
  color:#fff !important;
  text-decoration:none !important;
  border-radius:12px;
  padding:12px 16px;
  font-family:Georgia,"Times New Roman",serif;
  font-weight:900;
  font-size:16px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:22px;
  box-shadow:none !important;
}
.kn-simple-nav a:hover,
.kn-simple-nav a.active{
  background:#d9a93a;
  color:#0f172a !important;
}
.kn-simple-footer{
  width:100%;
  text-align:center;
  color:#64748b;
  font-family:Georgia,"Times New Roman",serif;
  padding:24px 10px;
  background:transparent;
  font-size:14px;
}

/* Hide duplicated old footer if page already has one */
body > .footer,
body > .copyright,
.footer:not(.kn-simple-footer){
  display:none !important;
}

/* Mobile same clean behavior, no broken left drawer */
@media(max-width:760px){
  .kn-simple-inner{
    min-height:auto;
    padding:18px 0;
    flex-direction:column;
    align-items:center;
  }
  .kn-simple-brand{
    font-size:23px;
  }
  .kn-simple-nav{
    width:100%;
    justify-content:center;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .kn-simple-nav a{
    width:100%;
    box-sizing:border-box;
    padding:14px 10px;
  }
}
@media(max-width:420px){
  .kn-simple-nav{
    grid-template-columns:1fr;
  }
}
