body {
  font-family: "Poppins", sans-serif;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
}
.hero {
  height: 90vh;
}

.card-title {
  margin-bottom: 1.5rem;
}

.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

.navbar-toggler {
  border-color: var(--bs-light); /* колір рамки */
  border: none;
  outline: hidden;
}


.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.hero {
  background-image: url("./images/hero.jpg"); /* заміни на свій шлях */
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  /* padding-top: 100px; */
}

.about {
  background-image: url("./images/about.jpg"); /* заміни на свій шлях */
  background-size: cover;
  background-position: center;
}
@media (max-width: 576px) {
  .hero {
    background-image: url("images/hero-mobi.jpg");
    background-position: center;
  }
}

/* .phoenix-academy,  */

.phoenix-academy, .program, .extra-benefits, .contact {
  background-image: url("./images/bg-02.jpg");
  background-size: cover;
  background-position: center;
  /* min-height: 100vh; */
}
.portfolio, .pricing, .faq {
  background-image: url("./images/bg-01.jpg");
  background-size: cover;
  background-position: center;
  /* min-height: 100vh; */
}


/* співвідношення для великих екранів */
@media (min-width: 992px) {
  .ratio-lg-21x9 {
    padding-top: calc(100% / (21 / 9));
  }
}

/* @media (max-width: 576px) {
  .hero {
    background-image: url("images/hero-mobi.jpg");
    background-position: center;
  }
} */

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.1); /* рівень затемнення */
  z-index: 1;
}

.hero .container {
  z-index: 2;
  position: relative;
}

.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* білий з прозорістю */
  z-index: 3;
  backdrop-filter: blur(10px); /* опціонально: розмиття фону */
}

.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* #region phoenix-font */
@font-face {
  font-family: 'phoenix';
  src: url('fonts/phoenix.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.phoenix-title {
  font-family: 'phoenix', sans-serif;
}

.text-justify {
  text-align: justify;
}
/* #endregion */


/* 
.language-switcher a {
  color: white;
  text-decoration: none;
  font-weight: 500;
} */
/* .language-switcher a:hover {
  opacity: 0.85;
} */
