
html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

header {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}
header a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

/*------------------------------------------------ FONT ----------------------------------------------------*/

.montserrat-thin {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.montserrat-medium {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.letter-spacing-1 {
    letter-spacing: 1px; /* Możesz dostosować wartość według potrzeb */
}

.letter-spacing-2 {
    letter-spacing: 2px; /* Większa przestrzeń między literami */
}

.display-7 {
  font-size: calc(1.325rem + 0.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-7 {
    font-size: 2rem;
  }
}

.display-8 {
  font-size: calc(1.275rem + 0.9vw);
  font-weight: 300;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-8 {
    font-size: 1.5rem;
  }
}
/*------------------------------------------------ HOME ----------------------------------------------------*/

.left-column {
    position: relative;
    width: 50%;
    height: 100vh; /* Wysokość pełnego widoku */
    background-image: url('./img/home/injection.webp');
    background-size: cover; /* Pokrywa cały kontener */
    background-position: center; /* Wyśrodkowuje obraz tła */
    background-repeat: no-repeat; /* Nie powtarza obrazu */
    color: white; /* Kolor tekstu */
    padding: 20px; /* Padding wokół zawartości */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bg404 {
    position: relative;
    width: 100%;
    height: 100vh; /* Wysokość pełnego widoku */
    background-image: url('./img/home/injection-404.webp');
    background-size: cover; /* Pokrywa cały kontener */
    background-position: center; /* Wyśrodkowuje obraz tła */
    background-repeat: no-repeat; /* Nie powtarza obrazu */
    color: white; /* Kolor tekstu */
    padding: 20px; /* Padding wokół zawartości */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text-content {
    position: relative; /* Pozwala na pozycjonowanie w stosunku do kontenera */
    z-index: 1; /* Ustawia tekst nad tłem */
    text-align: center; /* Wyśrodkowuje tekst */
}

.overlay-image {
    position: relative; /* Pozycjonuje zdjęcie na tle */
    height: auto; /* Zachowuje proporcje */
    z-index: 1; /* Ustawia obraz nad tłem, ale pod tekstem */
}

.right-column {
    height: 100vh; /* Wysokość pełnego widoku */
    background-color: #EFEFEF;
    background-size: cover; /* Pokrywa cały kontener */
    background-position: center; /* Wyśrodkowuje obraz tła */
    background-repeat: no-repeat; /* Nie powtarza obrazu */
}

/***************************************************************************************************************************/
/**************************************************** TABLET ***************************************************************/
/***************************************************************************************************************************/

@media (max-width: 991px) {
    
    .left-column {
        width: 100%;
    }
    
    .h-50 {
      height: 50% !important;
    }
}