/* style.css */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
}

/* Запобігаємо перенесенню пунктів меню */
.navbar-nav {
  white-space: nowrap;
}
.hero h1,
.hero h2,
.hero p {
  font-weight: 600;
}
/* Hero секція */
.hero {
  position: relative;
  color: #fff;
  padding: 100px 0;
  text-align: center;
  /* URL зображення можна змінити через JS, за замовчуванням: */
  background: url('/default-hero.PNG') no-repeat center center;
  background-size: auto;
  
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero .container {
  position: relative;
  z-index: 2;
}
.section-title {
  margin: 60px 0 40px;
  text-align: center;
  font-weight: 700;
  color: #343a40;
}
.assistant-card {
  transition: transform 0.3s ease;
}
.assistant-card:hover {
  transform: scale(1.03);
}
/* Стилізація кнопок підтримки */
.btn-support {
  font-size: 1.1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin: 0.5rem;
}

footer {
  background-color: #343a40;
  color: #ccc;
  padding: 30px 0;
  text-align: center;
}
.navbar-brand {
  font-weight: bold;
}
.social-links a {
  color: #fff;
  margin: 0 5px;
  text-decoration: none;
}
.social-links a:hover {
  text-decoration: underline;
}
.assistant-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
}
.site-logo {
  height: 32px; /* Значення можна налаштувати відповідно до висоти вашої навігаційної панелі */
  width: auto;
  display: inline-block;
}

.assistant-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.assistant-logo {
  width: 40px;
  height: 40px;
  filter: invert(40%) sepia(100%) saturate(500%) hue-rotate(180deg);
  object-fit: contain;
  margin-right: 15px; /* Простір між логотипом і текстом */
}
.card-body.d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Блок з текстом буде займати всю доступну ширину */
.project-text {
  flex: 1;
  padding-right: 15px; /* Відступ від зображення */
}

/* Контейнер для зображення, можна задати фіксовану ширину, якщо потрібно */
.project-image-container {
  flex-shrink: 0;
}

/* Стиль для зображення */
.project-image {
  width: 80px;          /* Або бажаний розмір */
  height: 80px;
  object-fit: contain;
  display: block;
}
.project-image {
  width: 80px;        /* Ширина зображення */
  height: 80px;       /* Висота зображення */
  object-fit: contain;/* Зберігає пропорції зображення */
  margin-bottom: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

table {
  border-collapse: collapse; /* Об’єднує межі */
  width: 100%;
}

th, td {
  border: 1px solid #ccc; /* Сіра лінія */
  padding: 8px;
  text-align: left;
}

/* Логотип компанії IVSoft */
.ivsoft-logo {
  height: 16px;

  width: auto;
  vertical-align: middle;
  margin-left: 5px;
}

/* Невеликий текст позначення компанії */
.ivsoft-tag {
  font-size: 0.8rem;
  margin-left: 5px;
}
