/* Підключення шрифту */
@font-face {
  font-family: "Tablon";
  src: url("/fonts-site/Tablon-Medium.ttf") format("truetype");
  font-weight: 500; /* або 400, якщо звичайний */
  font-style: normal;
  font-display: swap;
}

/* Змінні :root */
:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Tablon", sans-serif;
  --chinazes-color: #d0ff33;
  --bg-dark: #1a1d21;
  --bg-darker: #111;
  --bg-input: #464d50;
  --scrollbar-thumb-hover: #b3e626;
  --swiper-navigation-color: var(--chinazes-color);
  --swiper-theme-color: var(--chinazes-color)!important;
}

/* Глобальні стилі */
* {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  box-sizing: border-box;
}

a {
	color: var(--chinazes-color);
}

.hl {
    color: var(--chinazes-color);
}

.breadcrumb-item a {
	text-decoration: none;
}

.breadcrumb-item::before {
    color: #ccc !important;
}

.breadcrumb-item.active {
    color: #ccc !important;
}


.text-justify {
  text-align: justify;
}

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
}

body {
  background: var(--bg-dark) !important;
  position: relative;
  z-index: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--chinazes-color) var(--bg-darker);
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Градієнтний фон поверх body */
/* #body::before { */
  /* content: ""; */
  /* position: absolute; */
  /* inset: 0; */
  /* background: linear-gradient(174deg, rgba(35, 38, 40, 0.52) 89%, rgba(208, 255, 51, 0.52) 100%); */
  /* z-index: -1; */
  /* pointer-events: none; */
/* } */

/* Заборона скролу */
body.no-scroll {
  overflow: hidden;
  height: 100vh;
  width: 100%;
}

/* Стилі скроллбару для WebKit */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background-color: var(--chinazes-color);
  border-radius: 10px;
  border: 2px solid var(--bg-darker);
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover);
}

.main--with-offset {
  margin-top: 100px;
}


/* Headings and Typography */
h1, h2, h3, h4, h5, h6 {
    color: #fff;
}

p {
	color: #fff;
}

/* Dev. params */
/*
.container {
	background-color: red;
	border: solid 2px black;
}

main {
	background-color: green;
}
*/