body {
  background-color: #000000;
  color: #ffffff;
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
.logo {
  display: flex;
  align-items: center; /* Вирівнює контент по нижньому краю */
  justify-content: space-between;
  background-color: #000000;
  color: #f4f0f0;
  padding: 50px;
  gap: 40px;
  min-height: 10vh; /* Забезпечує висоту для вертикального вирівнювання */
}

.text-block {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Опускає текст донизу */
  gap: 30px;
  flex: 1;
  max-width: 30%;
  padding-top: 30px; /* Відступ зверху для вирівнювання з логотипом */
}

.logo-name {
  color: rgba(248, 234, 234, 0.699);
  text-align: left;
  text-transform: uppercase;
  font-size: 100px;
  line-height: 2;
  margin: 0;
}

.page-title {
  text-align: left;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  line-height: 1.3;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Додає тінь до тексту */
}

.btn {
  display: inline-block;
  background-color: red;
  color: white;
  padding: 15px 30px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
}

.logo-image {
  max-width: 50%;
  text-align: right;
}

.logo-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* presentation*/
h2 {
  font-size: 40px;
  text-align: center;
  margin: 20px 0;
  color: #fdfefc;
}

.advantages {
  display: flex;
  justify-content: space-between;
  text-align: center;
  color: white;
  background-color: #000000;
  padding: 40px 20px;
}
.advantage {
  margin: 20px 0;
}

.advantage img {
  width: 250px;
  height: auto;
}

.advantage h3 {
  font-size: 35px;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.4;
}

.advantage p {
  font-size: 25px;
  line-height: 1.5;
}
/* button */
/* Основний стиль кнопок */
.btn {
  padding: 40px 40px; /* Більше простору по боках для більшої кнопки */
  background-color: red; /* Основний колір фону */
  color: white; /* Колір тексту */
  text-decoration: none; /* Забираємо підкреслення */
  font-weight: bold; /* Жирний текст */
  font-size: 25px; /* Збільшений розмір шрифту */
  border-radius: 10px; /* Заокруглені кути */
  display: inline-block; /* Блочний елемент, щоб можна було додавати відступи */
  transition: background 0.3s ease, transform 0.3s ease; /* Додано ефект при зміні кольору фону і масштабу */
  cursor: pointer; /* Курсор у вигляді руки, коли на кнопці */
}

/* Ефект при наведенні */
.btn:hover {
  background-color: #e63e00; /* Трохи інший відтінок червоного */
  transform: scale(1.1); /* Легке збільшення розміру кнопки */
}

/* Ефект активної кнопки (коли вона натиснута) */
.btn:active {
  background-color: #c93300; /* Темніший відтінок червоного */
  transform: scale(1); /* Повернення до нормального розміру */
}

/* Ефект фокусу на кнопці */
.btn:focus {
  outline: none; /* Видалення стандартної обводки при фокусі */
  box-shadow: 0 0 10px rgba(255, 99, 71, 0.6); /* Легка тінь для фокусу */
}

/* page 3 */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  gap: 20px;
}
.hero .text-block {
  flex: 1;
}
.hero .program-image {
  flex: 1;
  text-align: right;
}
.hero .program-image img {
  max-width: 98%;
  height: auto;
  border-radius: 5px;
}
.hero description {
  font-size: 100px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.hero p {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 10px;
}
/* trainers */
.trainers {
  display: flex;
  justify-content: space-between;
  text-align: center;
  color: white;
  background-color: #000000;
  padding: 40px 20px;
}
.trainers {
  margin: 20px 0;
}

.trainers img {
  width: 300px;
  height: auto;
}

.trainers h3 {
  font-size: 35px;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 1.4;
}

.trainers p {
  font-size: 25px;
  line-height: 1.5;
}
.contact-info {
  font-size: 35px; /* Задає розмір шрифту */
}
/* form action*/
form {
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  padding: 40px;
  background-color: #0d0d0d; /* Темний фон */
  border: 2px solid #ff6600; /* Помаранчева рамка */
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.5); /* Помаранчева тінь */
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  color: #ffffff; /* Білий текст */
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #333333; /* Темна рамка */
  border-radius: 5px;
  font-size: 16px;
  background-color: #1a1a1a; /* Темний фон полів */
  color: #ffffff; /* Білий текст */
}

button {
  padding: 15px 30px;
  background-color: #ff6600; /* Помаранчевий фон */
  color: #ffffff; /* Білий текст */
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  border: none;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #cc5200; /* Темніший помаранчевий при наведенні */
}

.sent p {
  text-align: center;
  font-size: 35px;
  line-height: 1.9;
  margin-bottom: 10px;
  color: #ffffff; /* Білий текст */
}

/* kontakts*/
.contact {
  background-color: #000000;
  color: white;
  padding: 40px 20px;
  text-align: center;
  border-top: 4px solid orange;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: orange;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.contact-info,
.social-links {
  flex: 1 1 250px;
  font-size: 25px;
}

.contact a {
  color: cyan;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  transition: color 0.3s ease;
}

.contact a:hover {
  color: orange;
  transform: scale(1.05); /* Збільшення при наведенні */
}

.contact img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100) invert(78%) sepia(88%) saturate(299%)
    hue-rotate(130deg) brightness(100%) contrast(95%); /* Змінює колір іконок на білий */
  transition: filter 0.3s ease; /* Додає плавний перехід для фільтра */
}
