 /* media queries */ 
/* 1024px - 1200px (laptopy i większe tablety) */
/* 1024px - 1200px (laptopy i większe tablety) */


 html {
  scroll-behavior: smooth;
 }
 ul {
    list-style: none;
 }
 a {
    text-decoration: none;
    color: white;
 }
 * {
    font-family: "Roboto", sans-serif;
 }
 body, header {
    margin: 0;
    padding: 0;
}
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
img {
  aspect-ratio: 2 / 1; /* Określa proporcje szerokości do wysokości */
  width: 100%;
  height: auto;
}


.container-wrap
{
    width: 1240px;
    margin: 0 auto;
}
.btn {
    border: none;
    color: white;
    background-color: transparent;
    text-transform: uppercase;
    font-family: "Bebas Neue", sans-serif;
    font-size: 18px;
}
/* HEADER */ 
 header {
  background-color: #f0f0f0;
    background-image: url(header-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 95vh;
    position: relative;
    font-family: "Bebas Neue", sans-serif;
 }
 ul {
    margin: 0;
    z-index: 2;
    position: relative;
    display: flex;
    justify-content: flex-end;
}
 

 header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Czarny odcień z 50% przezroczystością */
    z-index: 1; /* Nakładka znajduje się nad tłem */
}
 ul li a {
    color: white;
    z-index: 999;
        font-weight: 400;
        font-style: normal;
        margin-right: 25px;
        font-size: 20px;
        font-family: "Bebas Neue", sans-serif;
        
      
 }
 ul li a:hover {
  color: rgb(255, 42, 112);
  transition: transform 0.3s ease;
 }
 nav {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    transition: background-color 0.3s, padding 0.3s; /* Płynne przejście dla tła i paddingu */
 }
 .sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgb(255, 42, 112);
  transition: 0.3s;
  z-index: 1500;
  padding: 10px;
  padding-left: 5%;

 
}
.sticky a:hover {
  color: #949494;
}
 .nav-left {
    z-index: 999;
 }
 .nav-right {
    width: 100%;
    margin-right: 5%;
 }
 .hamburger {
  display: none; /* Domyślnie ukryty, pokazuje się tylko na małych ekranach */
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: white;
  margin: 3px 0;
  transition: all 0.3s ease;
}

	


 .header-content {
    position: absolute; /* Absolutne pozycjonowanie */
    top: 40%; /* Przesunięcie o 50% w dół */
    left: 50%; /* Przesunięcie o 50% w prawo */
    transform: translate(-50%, -50%);
    color: white;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
 }
 .header-content h3 {
    font-family: "Roboto", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  font-size: 28px;
 }
 .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
 }
 .header-logo img {
  height: 300px;
 }
 .header-logo a {
  display: flex;
  align-self: center;
  cursor: pointer;
 }
 .a-button {
  display: flex;
  align-self: center;
 }
 .header-content h2 {
    line-height: 1.5;
    font-size: 34px;
    margin: 0;
 }
 .btn-header {
    margin-top: 45px;
    padding: 10px 25px;
    background-color: rgb(255, 42, 112);
 cursor: pointer;
    display: flex;
    align-self: center;
 }
 .scroll-down {
    position: absolute; /* Absolutne pozycjonowanie */
    top: 90%; /* Przesunięcie o 50% w dół */
    left: 49.5%; /* Przesunięcie o 50% w prawo */
    transform: translate(-90%, -50%);
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 999;
    animation: moveArrow 1.5s infinite; /* Dodanie animacji */
    cursor: pointer;
 }

scroll-down i {
    animation: moveArrow 1.5s infinite; /* Dodanie animacji */
}




@keyframes moveArrow {
    0% {
        transform: translateY(0); /* Startowa pozycja */
    }
    50% {
        transform:  translateY(10px); /* Przesunięcie w dół */
    }
    100% {
        transform:  translateY(0); /* Powrót do pozycji startowej */
    }
}


/* ABOUT US */ 
.about-us {
    background-color: #131318;
    padding: 100px 5%;
    display: flex;
    justify-content: space-between;
}
.about-us-left {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.about-us-left-img-1 {
    width: 47%;
    height: 250px;
    border: 4px solid rgb(255, 42, 112);
    margin-bottom: 2%;
    border-radius: 2%;
   
}
.about-us-left-img-1 img {
height: 100%;
width: 100%;
opacity: .6;
 max-width: 100%;
 object-fit: cover;
  display: block; /* Zapewnia, że obraz nie będzie miał marginesów */
}
.about-us-right {
    margin-top: 10%;
    width: 40%;
    color: white;
    font-family: "Bebas Neue", sans-serif;
}
.about-us-right h1 {
    font-size: 32px;
    text-transform: uppercase;
}
.about-us-right h2 {
    font-size: 16px;
    text-transform: uppercase;
}
.about-us-right-openhours {
    margin-top: 50px;
    font-weight: 800;
    text-transform: uppercase;
    color: #D0D0D1;
}

/* ANGEBOTE */ 
.angebote {

    text-align: center;
    color: white;
    background-color: #38383B;
}
.angebote h2 {
    color: #D0D0D1;
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 0;
}
.angebote h1 {
    text-transform: uppercase;
    font-size: 32px;
    padding-bottom: 50px;
}
.angebote-content {
    display: flex;
    justify-content: space-between;
    width: 90%;
    justify-content: center;
}
.angebote-massage {
    width: 32%;
    border-bottom: 1px solid #4d4d4d; /* Początkowy kolor krawędzi */
    cursor: pointer;
    overflow: hidden;
    position: relative; /* Kontekst pozycji dla pseudo-elementu */
}

.angebote-massage::after {
    content: ''; 
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px; /* Wysokość linii */
    width: 0;
    background-color: rgb(255, 42, 112); /* Kolor, na który zmienia się krawędź */
    transition: width 0.3s ease; /* Płynne przejście zmiany szerokości */
}

.angebote-massage:hover::after {
    width: 100%; /* Rozciąga linię do pełnej szerokości elementu */
}
.angebote-massage-img {
    transition: transform 0.3s ease;
    overflow: hidden;
    height: 250px;
}
.angebote-massage img {
    width: 100%;
    height: 250px;
    transition: transform 0.3s ease;
   
    
}
.angebote-rodzaj {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
}
.angebote-rodzaj h3 {
    transition: transform 0.3s ease;
}
.arrow {
    border: 2px solid #4d4d4d;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.angebote-massage:hover .arrow {
    border-color: rgb(255, 42, 112);
}
.angebote-massage:hover .angebote-massage-img img {
    transform: scale(1.1);
    opacity: .6;
    background-color: #D0D0D1;
   
}
.angebote-massage:hover .angebote-rodzaj h3 {
    transform: translateX(15px);
    color: rgb(255, 42, 112)

}

/* PRICE */ 

.pricee {
    padding: 50px 0px;
    text-align: center;
    color: white;
    background-color: #131318;

    
}
.price-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}
.price {
    display: flex;
    justify-items: center;
    align-items: center;
   font-weight: 800;
}
.price h1 {
    text-transform: uppercase;
    font-size: 32px;
    padding-bottom: 50px;
}
.price h3 {
    padding: 0;
    margin: 0;
}
.price-content-massage {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    justify-content: space-between;
    padding: 1%;
    
}
.pricee-p-wrap {
    display: flex;
}
.pricee-p {
    margin: 0;
    font-size: 14px;
    color: #949494;
}
.price-content-massaage-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

}
.price-content-massage h3 {
    position: relative;
    margin: 0;
}
.dots::before {
    content: "..........................................................................................."; /* Wypełnienie kropek */
    display: inline-block; 
    width: 100%;
    color: #949494;;
    white-space: nowrap; /* Zapobiega zawijaniu kropek */
    overflow: hidden; /* Ukrywa nadmiar kropek, aby dopasować do przestrzeni */
    position: relative;
    top: -1px; /* Dostosowanie wyrównania kropek */
  }
  /* CONTACT */ 
  .contact {
    background-image: url(contact-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    padding: 5%;
    position: relative;
    font-family: "Bebas Neue", sans-serif;
    display: flex;
    
  }
  .contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* Czarny odcień z 50% przezroczystością */
    z-index: -1; /* Nakładka znajduje się nad tłem */
  }
  .contact-left {
    padding-left: 5%;
    width: 50%;
  }

  .div-form {
    z-index: 999;
    display: flex;
    justify-content: center;


  }
  .div-form i {
    color: white;
    margin-right: 10px;
  }
  form {
    background-color: #131318;
    z-index: 999;
    width: 70%;
    border-radius: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .form-div {
    width: 80%;
    border-bottom: 2px solid #4d4d4d;
    margin-bottom: 10px;
    transition: border-bottom-color 0.3s ease-in;
  }
  .form-div i {
   color: rgb(255, 42, 112);
  }
  .div-form input {
    border: none;
    font-family: "Roboto", sans-serif;
    background-color: transparent;
    color: white;
    z-index: 999;
    width: 80%;
    margin-bottom: 10px;
    padding: 10px;

  }
  .form-div:hover {
    border-bottom-color: rgb(255, 42, 112);
  }
  .form-textarea {
    display: flex;
    border-bottom: 2px solid #4d4d4d;
    width: 80%;
    margin-bottom: 40px;
    transition: border-bottom-color 0.3s ease-in;
   
  }
  .contact-form {
    padding-top: 50px;
    padding-bottom: 50px;
    color: white;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
  }
  .form-textarea i {
    margin-top: 14px;
    color: rgb(255, 42, 112);
  }
  textarea {
 padding: 10px;
    background-color: transparent;
    border: none;
    height: 50px;
    color: white;
    resize: none; /* blokada zmiany rozmiaru */
    

  }
  .form-textarea:hover {
    border-bottom-color: rgb(255, 42, 112);
  }
  .contact .btn {
    margin-bottom: 50px;
    cursor: pointer;
  }
  .contact-right {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2%;
    
  }

  .contact-right h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 36px;
  }
  .contact-right-p {
    color: #D0D0D1;
  }
  .contact-right-numer {
    font-family: "Bebas Neue", sans-serif;
    margin-top: 20px;
    font-size: 18px;
  }
  footer {
   background-color: #131318;
   color: white;
  }
  .footer-wrap {
    display: flex;
    justify-content: space-between;
 font-size: 18px;
   padding: 0px 5%;
    align-items: center;
    height: 75px;
    
  }
  .footer-left {
    font-size: 16px;
  }
  .footer-right a {
 color: white;
 margin-right: 10px;
 font-size: 16px;
  }
  .footer-right i {
    margin-left: 50px;
    cursor: pointer;
    font-size: 24px;
  }


  @media screen and (max-width: 1200px) {

    header {
      height: 80vh;
    }
    .header-logo {
      width: 0;
      height: 0;
    }
    .header-logo img {
      width: 0;
      height: 0;
    }
    .header .header-content {
      position: absolute;
      top: 50%;
    }
    header .header-content h2 {
      font-size: 24px;
      margin-bottom: 60px;
    }
    .price-content .price-content-massage {
      width: 90%;
      padding: 0px 5%;
    }
    .contact .contact-left {
      width: 70%;
    }
    .contact .contact-right h2 {
      font-size: 26px;
  
    }
    .contact .contact-right  {
      margin-top: 10%;
    }
  
  }
  
  
  
  @media screen and (max-width: 768px) {
  
   header .header-content h2 {
    font-size: 20px;
   }
   .header .header-content {
    top: 50%;
   }
  
   .header-content h3 {
    font-size: 26px;
   }
   header .header-content h2 {
    margin-bottom: 20px;
   }
   .about-us {
    width: 100%;
    flex-direction: column;
    padding: 100px 0;
   }
   .about-us .about-us-left {
    width: 100%;
  
   }
   .about-us .about-us-right {
  order: -1;
    width: 90%;
    text-align: center;
    margin: 0px auto;
    margin-bottom: 50px;

   }
   .angebote-rodzaj {
    font-size: 12px;
   }
   .angebote-content {
    flex-wrap: wrap;
    justify-content: center;
   }
   .angebote-massage {
    width: 75%;
    margin-bottom: 20px;
   }
   .contact {
    flex-direction: column;
   }
   .contact .contact-left {
    margin-top: 20px;
    width: 100%;
    padding: 0;
   }
   .contact .contact-right {
    display: flex;
    align-items: center;
   }
  }

  @media (max-width: 768px) {
    nav .nav-right ul {
      background-color: rgb(255, 42, 112);
    }
    ul li a {
      margin-right: 0;
    }
   
    .header-content {
      width: 70%;
      text-align: center;
    }
    header .header-content h2 {
      font-size: 16px;
    }
    .nav-right ul {
      max-height: 0;
      overflow: hidden;
      flex-direction: column;
      position: absolute;
      top: 50px;
      right: 0;
      background-color: #333;
      width: 100%;
      transition: max-height .5s ease-out; /* Płynne przejście */
    }
    .dots {
      width: 60%;
    }
    form {
      width: 90%;
    }
    .nav-right ul.active {
      max-height: 500px; /* Ustaw wartość większą niż maksymalna wysokość menu */
  }
  .nav-right a:hover   {
    color: #38383B;
  } 
    .nav-right ul li {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex; /* Pokaż przycisk hamburgera*/
       z-index: 2000;
       position: relative;
       margin-left: auto;
       transition: transform .5s ease-out; /* Płynne przejście */
    }
    #nav-menu {
      z-index: 2000;
      margin-top: -5px;
  }
    }

    /* Aktywne menu (po kliknięciu) */
    .nav-right ul.active {
        display: flex; /* Pokaż menu po kliknięciu */
    }

    /* Zmiana stylu hamburgera po kliknięciu (efekt krzyżyka) */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }


.footer-wrap {
  font-size: 20px;
}

.footer-right {
  display: flex;
  align-items: center;
  font-size: 18px;
}
.footer-right a {
  font-size: 14px;
}
.footer-right i {
  margin-left: 25px;
}

/* MEDIA QUERY */ 
@media (max-width: 992px) { 
  .about-us-right-h2 {
    text-align: center;
}
  .about-us-right-h1 {
    text-align: center;
 
  }
  .about-us-right-h1  h1 {
    font-size: 22px;
  }
}
@media (max-width: 510px) {
  .footer-autor {
    font-size: 12px;
  }
  .footer-right a {
    font-size: 12px;
  }
  .dots {
    width: 50%;
  }

}
@media (max-width: 360px) {
textarea {
  width: 50vw;
}
.footer-wrap {
  padding: 0px 2%;
}
.footer-right-rights {
  display: flex;
  flex-direction: column;

}
.contact-form {
  font-size: 28px;
}

}