
@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Thin.ttf') format('truetype');
  font-weight: 100;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-ExtraLight.ttf') format('truetype');
  font-weight: 200;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-SemiBold.ttf') format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-ExtraBold.ttf') format('truetype');
  font-weight: 800;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Black.ttf') format('truetype');
  font-weight: 900;
}

/* ===== ITALIC ===== */

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-ExtraBoldItalic.ttf') format('truetype');
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'Geist';
  src: url('fonts/Geist-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Geist', sans-serif;
    margin: 0;
    height: 100vh;
}


header {
    position: fixed;
    top: 20px;
    /* Zamiast left: 50% i transform: translateX(-50%) używamy tego: */
    left: 0;
    right: 0;
    margin: 0 auto; 
    
    width: 80%;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px;
    z-index: 1000;
    
    /* Samo tło robimy przezroczyste - właściwy blur przenosimy do ::before */
    background-color: transparent; 
}

/* Tworzymy tło paska, które nie "więzi" bluru w swoich dzieciach */
header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(230, 230, 230, 0.6);
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(193, 193, 193, 0.5);
    border-radius: 999px;
    z-index: -1;
}
.menu-toggle{
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: rgb(41, 41, 41);
}


.header-right{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    height: 100%;
    align-items: center;
}



.main-section {
    position: relative;
    width: 100%;
    height: 70%;
    background-image: url('../media/echrist-background.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
}


.main-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.main-section .container {
    position: relative;
    z-index: 2;
}

.container {
    width: 80%;
    display: flex;
    justify-content: space-between;
}

.top-section{
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;

}

.top-section-buttons{
    display: flex;
    gap: 30px;
}


a{
    height: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
}

a > .h2-animation:hover{
    color:#97544c;
    transition: 0.3s;
}

h2{
    color: rgb(41, 41, 41);
    font-weight: 400;
    font-size: 15px;
    text-align: center;
}

img{
    width: 170px;
}




h1{
    color: white;
    font-weight: 700;
    font-size: 70px;
    text-align: center;
}

.subtitle-main{
    color: rgb(190, 190, 190);
    font-weight: 300;
    font-size: 30px;
    text-align: center;
}

h2{
  text-align: center;
}

.button-top{
    padding: 15px 30px;
    font-weight: 500;
    border-radius: 999px;
}

.oferta-button{
    background-color: #E96656;
}

.oferta-button:hover{
    background-color: #d45847;
    transition: .3s;
}

.kontakt-button{
    background-color: #1D9E6B;
}

.kontakt-button:hover{
    background-color: #1b8c5f;
    transition: .3s;
}

.buttons-h2{
    color: white;
    text-align: center;
}

.title-h1{
  color: rgb(41, 41, 41);
}

.info-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin: 200px auto;
  width: 80%;
}

.info-section-info{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 50px;
}

.card{
  height: 100%;
  width: 100%;
  padding: 3px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;

}
.card-icon{
font-size: 60px;
}

.uil-graduation-cap{
  color: #E96657;
}

.uil-shield-check{
  color: #36D293;
}

.uil-clock-three{
  color: #3AB0E2;
}

.uil-users-alt{
  color: #F7D861;
}

.card-title{
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

.card-top{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.card-text-text{
  text-align: center;
  font-size: 16px;
  font-weight: 300;
  color: rgb(126, 126, 126);
}

.important-text{
  color: black;
  font-weight: 400;
}

.info-firma-section{
  width: 80%;
  height: fit-content;
  margin: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 150px;
  align-items: stretch;
}

.img-biuro-pion{
  height: auto;
  width: 95%;
  border-radius: 30px;
  display: flex;
}

.img-biuro-poziom{
  width: 100%;
  height: auto;
  border-radius: 30px;
  margin-top: auto;
}

.info-firma-left{
  width: 42%;
}

.info-firma-right{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 58%;
  gap: 20px;
}

.title-firma{
    color: rgb(41, 41, 41);
    font-weight: 600;
    font-size: 60px;
    text-align: left;
}

.info-firma{
  font-size: 17px;
  font-weight: 400;
  color: rgb(126, 126, 126);
}

.firma-info-text{
  display: flex;
  flex-direction: column;
  gap: 20px;
}


.button-read-more{
  background-color: #36D293;
  border-radius: 26px;
  padding: 7px 7px;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  gap: 5px;
}

.buttons-h2{
  color: white;
  font-size: 15px;
  font-weight: 400;
  margin: 0 10px;
}

.read-more-ikona{
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 99999px;
  padding: 8px;
}

.uil-arrow-right{
  color: rgb(41, 41, 41);
  font-size: 18px;
}

.co-robimy-section{
  display: flex;
  flex-direction: row;

  margin-bottom: 100px;
}

.what-section-left{
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  grid-auto-rows: 1fr;
  position: relative;
}



.wsl-card-left{
  display: flex;
  justify-content: center;
}

.step-number{
  width: 50px;
  height: 50px;
  background-color: #e9e9e9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.wsl-card{
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: center;
  height: 100%;
}

.wsl-card-right{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wsl-card-title{
  font-size: 30px;
  font-weight: 400;
  color: rgb(41, 41, 41);
  text-align: left;
}

.wsl-text{
  text-align: left;
  font-size: 16px;
  font-weight: 300;
  color: rgb(126, 126, 126);
}

.wsl-sec{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  margin-top: 100px;
  width: 80%;
  margin: auto;
}



.together{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.what-section-right{
  margin-left: auto;
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.al{
  text-align: left;
}

.ac{
  text-align: center;
}

.wsl-right-top{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wsl-right-bottom{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


ul{
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

li{
  font-size: 16px;
  font-weight: 300;
  color: rgb(126, 126, 126);
}

.s1{
  background-color: #E96657;
}

.s2{
  background-color: #35D292;
}

.s3{
  background-color: #3AB0E2;
}

.s4{
  background-color: #F7D861;
}

.fs{
  font-size: 25px;
}

.contact-us{
  display: flex;
  flex-direction: row;
  width: 80%;
  margin: auto;
  margin-top: 150px;
  padding-bottom: 150px;
}

.contact-left{
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 40px;
}

.contact-title{
  font-size: 45px;
  font-weight: 400;
  color: rgb(41, 41, 41);
}

.contact-subtitle{
  font-size: 17px;
  font-weight: 300;
  color: rgb(77, 77, 77);
}

.contact-cards{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.contact-card{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cctitle{
  font-size: 18px;
  font-weight: 400;
  color: rgb(41, 41, 41);
}

.ccsub{
  font-size: 14px;
  font-weight: 300;
  color: rgb(77, 77, 77);
}



.map{
  flex: 1; 
  width: 100%;
  margin: 0; 
  display: flex;
}

.map iframe{
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 14px;
}


.cccontent{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-right{
  background-color: rgb(245, 245, 245);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  width: 40%;
  margin-left: auto;
  gap: 20px;
  min-height: 500px;
}

.form-title{
  font-size: 25px;
  font-weight: 400;
  color: rgb(41, 41, 41);
}

.form-subtitle{
  font-size: 14px;
  font-weight: 300;
  color: rgb(77, 77, 77);
}

form{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 20px;
  gap: 30px;
}

.form-input{
  font-size: 12px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid rgb(200, 200, 200);
  padding-bottom: 7px;
  color: rgb(41, 41, 41);
}

textarea{
  font-size: 12px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid rgb(200, 200, 200);
  height: 70px;
  padding-bottom: 7px;
  resize: none;
  color: rgb(41, 41, 41);
}

input:focus, textarea:focus {
  outline: none;
  border-bottom: 1px solid rgb(41, 41, 41);
  transition: .3s;
}

.uil-angle-right{
  font-size: 15px;
}

.contact-title-section{
  width: 100%;
  height: 200px;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../media/poziom-big-img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-h1-contact{
  color: white;
    font-weight: 700;
    font-size: 70px;
    text-align: center;
}

.form-submit{
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  width: fit-content;
  gap: 5px;
  border: none;
  border-radius: 9999px;
  color: white;
  background-color: #303234;
  font-size: 11px;
}


@media (max-width: 1200px) {

  .title-firma{
    font-size: 40px;
  }

  .info-firma-section{
    flex-direction: column;
    gap: 30px;
  }

  .info-firma-left,
  .info-firma-right{
    width: 100%;
  }

  .info-section-info{
      grid-template-columns: repeat(1, 1fr);
      gap: 50px;
  }

  .card{
    width: 80%;
    margin: auto;
  }

  .title-h1{
    font-size: 50px;
  }

  h1{
    font-size: 50px;
  }



  .button-top{
    margin: auto;
    width: 100%;
    text-align: center;
  }

  .buttons-h2{
    text-align: center;
  }

  .top-section-buttons{
    flex-direction: column;
    gap: 20px;
  }

  .img-biuro-pion{
    margin: auto;
  }

  .co-robimy-section{
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .what-section-left{
    width: 100%;
    text-align: center;
  }

  .what-section-right{
    width: 100%;
    text-align: left;
  }

  .info-firma{
    text-align: center;
  }

  .info-firma-left-text{
    text-align: left;
  }

  .contact-us{
    flex-direction: column;
    gap: 100px;
  }

  .contact-left{
    width: 100%;
    text-align: left;
    align-items: center;
  }

  .contact-title, .contact-subtitle{
    text-align: center;
  }

  .contact-right{
    width: 100%;
    margin: auto;
  }

  .contact-title{
    font-size: 25px;
  }
  
  .contact-subtit{
    font-size: 14px;
  }

  .title-h1-contact{
    font-size: 40px;
  }

  .contact-title-section{
    height: 150px;
  }

  .info-section{
    margin: 100px auto;
  }
}

@media (max-width: 992px){

    .menu-toggle{
        display: block;
        z-index: 1100;
    }
    .header-right {
        background-color: rgba(255, 255, 255, 0.6); /* POPRAWKA: rgba zamiast rgb */
        position: absolute; /* POPRAWKA: absolute zachowa menu przyklejone do headera */
        top: 100px;
        right: 0px; 
        transform: none; 
        width: fit-content;
        height: fit-content;
        flex-direction: column;
        padding: 20px;
        border-radius: 35px;
        gap: 15px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 1100;

        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(193, 193, 193, 0.5);
    }

    .h2-animation{
      font-size: 25px;
      font-weight: 300;
      text-align: right;
    }
    .header-right > a{
      height: fit-content; 
      text-align: right;
      width: fit-content;
      margin-left: auto;
    }

    .header-right > a > h2{
      width: 100%;
    }

    .header-right.active{
        opacity: 1;
        visibility: visible;
   }

   .what-section-right{
    gap: 100px;
   }

   .wsl-right-bottom{
    flex-direction: column;
    gap: 50px;

   }

   .al{
    text-align: center;
   }

   .wsl-card-title{
    font-size: 20px;
   }

   .fb{
    font-size: 30px;
   }

   .what-section-left{
    gap: 50px;
   }
  }