@tailwind base;
@tailwind components;
@tailwind utilities;

html,
body {
  height: 100%;
}

body {
  font-family: var(--weather-font-family, "Vazir", Tahoma, Arial, sans-serif) !important;
  background-color: #f8fafc;
  color: #1e293b;
}

/* همهٔ لینک‌ها بدون زیرخط (سراسری) */
a,
a:hover,
a:active,
a:focus,
a:visited {
  text-decoration: none !important;
}

/* WordPress-like accessible hiding (hide visually, keep for screen readers). */
.screen-reader-text {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.screen-reader-text:focus {
  background: #fff !important;
  clip: auto !important;
  -webkit-clip-path: none !important;
  clip-path: none !important;
  color: #000 !important;
  display: block !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  padding: 0.5em !important;
  position: absolute !important;
  width: auto !important;
  z-index: 100000 !important;
}

/* Header image banner: hide on mobile/tablet (keep desktop only). */
@media (max-width: 1024px) {
  #siteHeaderBanner,
  .header-banner,
  .header-banner__placeholder {
    display: none !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
  }
}