:root{
  --hf-green:#0b7a3b;
  --hf-green-dark:#075a2b;
  --hf-bg:#f7faf8;
}

*{ font-family:"Tajawal", sans-serif !important; }
body{ background:var(--hf-bg); }

/* Header look */
.hf-header{
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.hf-brand{ text-decoration:none; gap:10px; }
.hf-brand img{ width:44px; height:44px; object-fit:contain; }
.hf-brand .title{ font-weight:900; color:var(--hf-green-dark); font-size:20px; line-height:1; }
.hf-brand .subtitle{ font-size:12px; color:#5f6b66; margin-top:2px; }

.navbar-nav .nav-link{
  font-weight:800;
  color:#1f2d27;
  padding:.7rem 1rem;
  border-radius:12px;
  white-space:nowrap;
}
.navbar-nav .nav-link:hover{
  background: rgba(11,122,59,.08);
  color: var(--hf-green-dark);
}
.hf-active{
  background: rgba(11,122,59,.10);
  color: var(--hf-green-dark) !important;
}

.hf-actions{ gap:10px; }
.hf-lang-btn{
  border:1px solid rgba(0,0,0,.10);
  background:#fff;
  border-radius:14px;
  padding:10px 12px;
  font-weight:800;
  color: var(--hf-green-dark);
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  white-space:nowrap;
}
.dropdown-menu{
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 16px 34px rgba(0,0,0,.10);
  overflow:hidden;
}
.dropdown-item{
  font-weight:800;
  padding:.7rem 1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.lang-short{
  font-size:12px;
  font-weight:900;
  padding:4px 8px;
  border-radius:999px;
  background: rgba(11,122,59,.10);
  color: var(--hf-green-dark);
}

.hf-store-btn{
  border:0;
  background: var(--hf-green);
  color:#fff;
  border-radius:14px;
  padding:10px 14px;
  font-weight:900;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  transition:.2s ease;
}
.hf-store-btn:hover{ background:var(--hf-green-dark); transform: translateY(-1px); }

/* Hero slider sizes */
.hf-hero .carousel-item img{
  width:100%;
  height:75vh;            /* الكمبيوتر: ثلاثة أرباع الشاشة */
  object-fit:cover;
}
@media (max-width: 768px){
  .hf-hero .carousel-item img{ height:50vh; } /* الجوال: نصف الشاشة */
}

.hf-hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(0,0,0,.45), rgba(0,0,0,.12));
}
.hf-hero-content{
  position:absolute; inset:0;
  display:flex; align-items:center;
}

