/**
 * Font Awesome Custom Icons CSS
 * Локальне підключення шрифтів без плагіна
 */

/* Font Awesome Solid */
@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('fonts/fa-solid-900.woff2') format('woff2'),
       url('fonts/fa-solid-900.ttf') format('truetype');
}

/* Font Awesome Brands */
@font-face {
  font-family: 'FontAwesomeBrands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/fa-brands-400.woff2') format('woff2'),
       url('fonts/fa-brands-400.woff') format('woff'),
       url('fonts/fa-brands-400.ttf') format('truetype');
}

/* Базовий клас для всіх іконок */
.fa {
  font-family: 'FontAwesome' !important;
  font-weight: 900 !important;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Іконки з кодами Unicode (HTML entities) */

/* fa-envelope - конверт */
.fa-envelope:before {
  content: "\f0e0";
}

/* fa-clock-o - годинник */
.fa-clock-o:before {
  content: "\f017";
}

/* fa-bars - гамбургер меню */
.fa-bars:before {
  content: "\f0c9";
}

/* fa-phone-square - телефон в квадраті */
.fa-phone-square:before {
  content: "\f098";
}

/* fa-remove / fa-times - хрестик */
.fa-remove:before,
.fa-times:before {
  content: "\f00d";
}

/* fa-facebook-square - Facebook */
.fa-facebook-square:before {
  content: "\f082";
  font-family: 'FontAwesomeBrands';
  font-weight: 400;
}

/* fa-telegram - Telegram */
.fa-telegram:before {
  content: "\f2c6";
  font-family: 'FontAwesomeBrands';
  font-weight: 400;
}

/* fa-youtube - YouTube */
.fa-youtube:before {
  content: "\f167";
  font-family: 'FontAwesomeBrands';
  font-weight: 400;
}

/* fa-instagram - Instagram */
.fa-instagram:before {
  content: "\f16d";
  font-family: 'FontAwesomeBrands';
  font-weight: 400;
}

/* fa-angle-down - стрілка вниз */
.fa-angle-down:before {
  content: "\f107";
}

/* fa-angle-up - стрілка вгору */
.fa-angle-up:before {
  content: "\f106";
}

/* fa-download - завантаження */
.fa-download:before {
  content: "\f019";
}

/* fa-check-circle - галочка в колі (успіх) */
.fa-check-circle:before {
  content: "\f058";
}

/* fa-exclamation-circle - знак оклику в колі (попередження) */
.fa-exclamation-circle:before {
  content: "\f06a";
}

/* fa-times-circle - хрестик в колі (помилка) */
.fa-times-circle:before {
  content: "\f057";
}

/* fa-info-circle - інформація в колі */
.fa-info-circle:before {
  content: "\f05a";
}

/* fa-spinner - спіннер (завантаження) */
.fa-spinner:before {
  content: "\f110";
}

/* Анімація обертання для спіннера */
@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fa-spin {
  animation: fa-spin 1s infinite linear;
}

/* Розміри іконок */
.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

/* Допоміжні класи */
.fa[aria-hidden="true"] {
  speak: none;
}
