/* Reset box-sizing */
* {
  box-sizing: border-box;
}

 
body {
font-family: "europa", sans-serif;
  margin: 0;
  color: #000000;
  background: white;
}

 
.container, .alignwide {
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

 
.has-small-font-size {
  font-size: 24px;
}

.has-normal-font-size {
  font-size: 22px;
}

.has-large-font-size {
  font-size: 76px;
}
 
@media (max-width: 1920px) and (min-width: 1000px) {
  .has-small-font-size {
    font-size: calc(24 / 1920 * 100vw);
  }
  .has-normal-font-size {
    font-size: calc(22 / 1920 * 100vw);
  }
  .has-large-font-size {
    font-size: calc(76 / 1920 * 100vw);
  }

  .container, .alignwide {
    max-width: calc(1700 / 1920 * 100vw);
    padding-left: calc(20 / 1920 * 100vw);
    padding-right: calc(20 / 1920 * 100vw);
  }

  
 
}
 

/* Mniejsze ekrany */
@media (max-width: 1100px) {
  .has-normal-font-size {
    font-size: 14px !important;
  }

  .has-small-font-size {
    font-size: 14px !important;
  }

  .has-large-font-size {
    font-size: 38px !important;
  }
}

/* Mobile */
@media (max-width: 1000px) {
  .alignwide {
    padding-left: 30px;
    padding-right: 30px;
  }
}



#start > .wp-block-group__inner-container > .wp-block-columns {
	min-height: 100vh;
}    

#start > .wp-block-group__inner-container > .wp-block-columns .wp-block-column:nth-of-type(1) {
	padding-top: 20%;
	padding-bottom: 10%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#start .logo { 
	width: 560px;
}

:root :where(.is-layout-flow) > * {
    margin-block-start: 0;
    margin-block-end: 0;
}

.wiersze img {
	aspect-ratio: 1;
	width: 50px;
	object-fit: contain;
}

.image-shadow img {
	box-shadow: 0 14px 17px rgba(0,0,0,.16);
	border-radius: 65px;
} 

 

.dark-group .scaled-image {
	transform: scale(1.2) translateY(1.5%);
}
 
.dark-group  ul {
	list-style-type: none;
	padding: 0;
} 

.dark-group  ul li {
	position: relative;
	padding-left: 40px;
} 

.dark-group ul li::before {
	content: "";
	display: block;
	width: 20px;
	height: 20px;
	background-image: url(https://estoria.yectly.com/wp-content/uploads/2025/09/image-10.png);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	
}

.dark-group  ul li:not(:last-of-type) {
	margin-bottom: 30px;
}

footer.footer {
	padding: 80px 0;
}

.input-wrapper br, .textarea-wrapper br {
	display: none;
}

.input-wrapper {
	display: flex;
	align-items: center;
	gap: 20px;
	margin: 0;
	margin-bottom: 30px;
	
}

.textarea-wrapper {
	display: flex;
	gap: 20px;
	margin: 0;
	margin-bottom: 30px;
	
}
 

.input-wrapper label, .textarea-wrapper label {
	width: 35%;
	font-size: 30px;
	font-weight: 700;
	text-align: right;
}

.input-wrapper .wpcf7-form-control-wrap, .textarea-wrapper .wpcf7-form-control-wrap {
	width: 65%;
}

.input-wrapper .wpcf7-form-control-wrap input {
	width: 100%;
}

.textarea-wrapper textarea {
	width: 100%;
	height: 200px;
 }

.input-wrapper input, .textarea-wrapper textarea {
	border-radius: 30px;
	border: 3px solid #074633;
	font-size: 25px;
	padding: 10px 20px;
	outline: none !important;
}

.send-wrapper p {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-start;
	margin: 0;
}

.send-wrapper input {
	 background: #074633;
	border: none;
	padding: 20px 60px;
	color: white;
	font-size: 25px;
	border-radius: 100px;
}

.wpcf7-response-output {
	border: none !important;
	text-align: right;
	padding: 0 !important;
	margin: 0 !important;
	margin-top: 20px !important;
}


/* Skalowanie pomiędzy 1920px a 1000px */
@media (max-width: 1920px) and (min-width: 1000px) {
  #start .logo {
    width: calc(560 / 1920 * 100vw);
  }

  .wiersze img {
    width: calc(50 / 1920 * 100vw);
  }

  .image-shadow img {
    border-radius: calc(65 / 1920 * 100vw);
    box-shadow: 0 calc(14 / 1920 * 100vw) calc(17 / 1920 * 100vw) rgba(0,0,0,.16);
  }

  .dark-group ul li {
    padding-left: calc(40 / 1920 * 100vw);
  }

  .dark-group ul li::before {
    width: calc(20 / 1920 * 100vw);
    height: calc(20 / 1920 * 100vw);
  }

  footer.footer {
    padding: calc(80 / 1920 * 100vw) 0;
  }

  .input-wrapper,
  .textarea-wrapper {
    gap: calc(20 / 1920 * 100vw);
    margin-bottom: calc(30 / 1920 * 100vw);
  }

  .input-wrapper label,
  .textarea-wrapper label {
    font-size: calc(30 / 1920 * 100vw);
  }

  .input-wrapper input,
  .textarea-wrapper textarea {
    border-radius: calc(30 / 1920 * 100vw);
    font-size: calc(25 / 1920 * 100vw);
    padding: calc(10 / 1920 * 100vw) calc(20 / 1920 * 100vw);
  }

  .textarea-wrapper textarea {
    height: calc(200 / 1920 * 100vw);
  }

  .send-wrapper input {
    padding: calc(20 / 1920 * 100vw) calc(60 / 1920 * 100vw);
    font-size: calc(25 / 1920 * 100vw);
    border-radius: calc(100 / 1920 * 100vw);
  }

  /* Font sizes inline */
  [style*="font-size:25px"] { font-size: calc(25 / 1920 * 100vw) !important; }
  [style*="font-size:32px"] { font-size: calc(32 / 1920 * 100vw) !important; }
  [style*="font-size:50px"] { font-size: calc(50 / 1920 * 100vw) !important; }
  [style*="font-size:64px"] { font-size: calc(64 / 1920 * 100vw) !important; }

  /* Spacers inline */
  [style*="height:20px"]  { height: calc(20 / 1920 * 100vw) !important; }
  [style*="height:40px"]  { height: calc(40 / 1920 * 100vw) !important; }
  [style*="height:60px"]  { height: calc(60 / 1920 * 100vw) !important; }
  [style*="height:100px"] { height: calc(100 / 1920 * 100vw) !important; }
  [style*="height:150px"] { height: calc(150 / 1920 * 100vw) !important; }
}

/* Mniejsze ekrany */
@media (max-width: 1000px) {
  #start .logo {
    width: 250px;
  }

  .wiersze img {
    width: 30px;
  }

  .image-shadow img {
    border-radius: 20px;
    box-shadow: 0 8px 10px rgba(0,0,0,.16);
  }

  .dark-group ul li {
    padding-left: 20px;
  }

  .dark-group ul li::before {
    width: 12px;
    height: 12px;
  }

  footer.footer {
    padding: 40px 0;
  }

  .input-wrapper,
  .textarea-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }

  .input-wrapper label,
  .textarea-wrapper label {
    width: 100%;
    text-align: left;
    font-size: 16px;
  }

  .input-wrapper .wpcf7-form-control-wrap,
  .textarea-wrapper .wpcf7-form-control-wrap {
    width: 100%;
  }

  .input-wrapper input,
  .textarea-wrapper textarea {
    font-size: 16px;
    padding: 10px 14px;
    border-radius: 15px;
  }

  .textarea-wrapper textarea {
    height: 120px;
  }

  .send-wrapper input {
    font-size: 18px;
    padding: 14px 30px;
    border-radius: 50px;
  }

  /* Font sizes inline */
  [style*="font-size:25px"] { font-size: 16px !important; }
  [style*="font-size:32px"] { font-size: 18px !important; }
  [style*="font-size:50px"] { font-size: 26px !important; }
  [style*="font-size:64px"] { font-size: 32px !important; }

  /* Spacers inline */
  [style*="height:20px"]  { height: 12px !important; }
  [style*="height:40px"]  { height: 20px !important; }
  [style*="height:60px"]  { height: 30px !important; }
  [style*="height:100px"] { height: 50px !important; }
  [style*="height:150px"] { height: 70px !important; }
}

