/* Custom Scroll Bar */
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

overflow-y: scroll;
scrollbar-width: thin;

@media (min-width: 1400px) {
    .header .header-title {
        font-size: 60px;
    }
}

.header-shape {
  display: none !important;
}

.wrapper {
  background-size: 300px auto !important; /* أو أي مقاس يناسبك */
}

.header .wrapper {
  min-height: 400px !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.search-input {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px; /* أو أي عرض يناسبك */
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.search-input input[type="text"] {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 16px;
}

.search-input .search-icon {
  background: none;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-search .search-icon i {
  font-size: 18px !important;
  margin-top: 2px;      /* لو عايز تنزلها شويه */
  margin-left: 2px;     /* لو عايز تقربها لجوه المربع */
}

.cookies .btn-outline-secondary {
  font-size: 12px; /* أو جرّب 0.8rem لو لسه على سطرين */
  white-space: nowrap; /* عشان يفضل في سطر واحد */
}

.cookies .btn {
  font-size: 12px;
  white-space: nowrap;
  padding: 6px 18px; /* اختياري لو عايزهم نفس الحجم */
}

.logo img {
  height: 45px !important;
  width: auto !important;
  max-width: 100% !important;
  vertical-align: middle;
  object-fit: contain;
}

/* ===== استدعاء خطوط Urbanist محليًا ===== */
@font-face {
  font-family: 'Urbanist';
  src: url('/assets/css/fonts/Urbanist-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('/assets/css/fonts/Urbanist-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Urbanist';
  src: url('/assets/css/fonts/Urbanist-SemiBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


/* ===== استدعاء IBM Plex Mono من Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@400;700&display=swap');


/* ===== العناوين الرئيسية ===== */
h1, h2, h3, h4, h5, h6,
.article-title, .heading, .title,
strong, b, label, th {
  font-family: 'IBM Plex Mono', monospace !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}


/* ===== النصوص العامة ===== */
body, p, span, li, a, td,
input, textarea, select, button,
.article-content, .text, .description,
.nav-link, .form-control {
  font-family: 'Urbanist', sans-serif !important;
  font-weight: 400 !important;
}


/* ===== فرض عام لتطبيق Urbanist على كل العناصر ===== */
/* html, * {
  font-family: 'Urbanist', sans-serif !important;
} */

/* ===== تحسين عرض الخطوط على Safari/macOS ===== */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input[type="search"]::placeholder {
  font-family: 'Urbanist', sans-serif !important;
}

/* تأكد من ضبط الأيقونة داخل مربع البحث */
input[type="search"] {
  padding-right: 2.5rem !important;
  font-family: 'Urbanist', sans-serif !important;
}