@charset "UTF-8";
:root {
  --primary:#D2AE6D;
  --light:#E9EBF8;
  --dark: #474647;
}

/* Szerokość scrollbarów */
::-webkit-scrollbar {
  width: 10px;
}

/* Kolor tła tracka */
::-webkit-scrollbar-track {
  background: var(--light);
}

/* Kolor thumba */
::-webkit-scrollbar-thumb {
  background: var(--primary);
}

*::selection {
  background-color: var(--primary);
  color: var(--dark);
}

body {
    background-color: var(--light);
}

nav {
    height: 12vh;
    position: sticky !important;
    top: 0;
    background-color: var(--light);
    font-size: 1.1rem;
    z-index: 100;
}
.dropdown-item:hover {
  background-color: var(--primary) !important;
  color: var(--light) !important;
}

.navbar-brand img{
  max-height: 70px;
}

@media (max-width: 768px) {
  .navbar-brand img{
    max-height: 75px;
  }

  .headerhero {
    font-size: 1.8rem !important;
  }

  .headercaption {
    font-size: 1.2rem !important;
  }
  .headerbtn {
    font-size: 1.2rem !important;
  }

  .sectionheader {
    font-size: 1.8rem !important;
    width: 100% !important;
  }

  .textcaption {
    font-size: 1.2rem !important;
  }
}

.header {
    height: 50vh;
    position: relative;
    background-image: url('/img/hands.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(233, 235, 248, 0.7);
  z-index: 1;
}

.header1 {
    height: 50vh;
    position: relative;
    background-image: url('/img/hands.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }

.header1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(71, 70, 71, 0.7);
  z-index: 1;
}

.text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center; /* poziome wycentrowanie */
  align-items: center;     /* pionowe wycentrowanie */
  height: 100%;            /* musi mieć pełną wysokość kontenera */
  text-align: center; 
}

.offer .bi {
  font-size: 2rem;
}

.check p {
  font-size: 1.5rem;
}

.accordion-item {
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
  border-top: 1px solid #acacb4 !important;
}

.accordion-button {
  font-size: 1.4rem;
}

.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed) {
  color: var(--primary) !important;
}

.accordion-button:enabled {
  background-color: var(--light);
  outline: 0!important;
  box-shadow: none;
}

.accordion-body {
  background-color: var(--light);
  color: #0e0e0ecc;
  font-size: 1.2rem;
}