@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* Regular (normalna grubość, bez kursywy) */
@font-face {
  font-family: "Nohemi";
  src: url("./nohemi/Nohemi-Light.woff2") format("woff2");
  font-weight: 300; /* Normalna grubość */
  font-style: normal; /* Normalny styl */
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("./nohemi/Nohemi-Regular.woff2") format("woff2");
  font-weight: 400; /* Normalna grubość */
  font-style: normal; /* Normalny styl */
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("./nohemi/Nohemi-Medium.woff2") format("woff2");
  font-weight: 500; /* Normalna grubość */
  font-style: normal; /* Normalny styl */
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("./nohemi/Nohemi-SemiBold.woff2") format("woff2");
  font-weight: 600; /* Normalna grubość */
  font-style: normal; /* Normalny styl */
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("./nohemi/Nohemi-Bold.woff2") format("woff2");
  font-weight: 700; /* Normalna grubość */
  font-style: normal; /* Normalny styl */
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("./nohemi/Nohemi-ExtraBold.woff2") format("woff2");
  font-weight: 800; /* Normalna grubość */
  font-style: normal; /* Normalny styl */
  font-display: swap;
}
@font-face {
  font-family: "Nohemi";
  src: url("./nohemi/Nohemi-Black.woff2") format("woff2");
  font-weight: 900; /* Normalna grubość */
  font-style: normal; /* Normalny styl */
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
}

body {
  background: #101010;
  color: #F8F8F8;
}

::-moz-selection {
  background-color: #A8C1EF; /* kolor tła zaznaczenia */
  color: #000000; /* kolor tekstu podczas zaznaczenia */
}

::selection {
  background-color: #A8C1EF; /* kolor tła zaznaczenia */
  color: #000000; /* kolor tekstu podczas zaznaczenia */
}

body {
  background-color: #101010;
}

.homer {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 600px;
  padding-left: 144px;
  padding-top: 64px;
  padding-bottom: 88px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1366px) {
  .homer {
    padding-left: 80px;
    max-width: 500px;
  }
}
@media (max-width: 1024px) {
  .homer {
    padding-left: 60px;
    padding-right: 60px;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .homer {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.homer__top {
  margin-bottom: 40px;
}
.homer__top--brand {
  font-family: "Nohemi", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #F8F8F8;
  text-decoration: none;
}
.homer__content {
  margin-top: auto;
}
.homer__content--heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.homer__content--heading span {
  font-size: 24px;
  font-family: "Nohemi", sans-serif;
  font-weight: 400;
}
.homer__content--heading h1 {
  font-size: 52px;
  font-family: "Nohemi", sans-serif;
  font-weight: 500;
  color: #F8F8F8;
}
.homer__content--heading p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #AFAFAF;
}
.homer__content--card {
  background: #1D1D1D;
  display: flex;
  flex-direction: column;
}
.canvas {
  z-index: 1;
  height: 100%;
  width: calc(100vw - 700px);
  position: absolute;
  top: 0;
  right: 0;
}
.canvas__grid {
  display: flex;
  flex-direction: row;
  gap: 90px;
  justify-content: end;
}
@media (max-width: 1366px) {
  .canvas__grid {
    gap: 50px;
  }
}
@media (max-width: 1024px) {
  .canvas__grid {
    gap: 30px;
  }
}
.canvas__grid .lco {
  padding-top: 200px;
}
@media (max-width: 1024px) {
  .canvas__grid .lco {
    padding-top: 100px;
  }
}
.canvas__grid--column {
  display: flex;
  flex-direction: column;
  gap: 90px;
}
@media (max-width: 1366px) {
  .canvas__grid--column {
    gap: 60px;
  }
}
@media (max-width: 1024px) {
  .canvas__grid--column {
    gap: 30px;
    opacity: 0.1;
  }
}
.canvas__grid--column .project {
  border-radius: 2px;
  width: 22vw;
  aspect-ratio: 1/1;
  filter: drop-shadow(0px 4px 104px rgba(0, 0, 0, 0.4039215686));
}
.canvas__grid--column .project img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.contact-card {
  padding-bottom: 30px;
}
.contact-card__head {
  padding: 30px 40px 16px;
  border-bottom: 1px solid #353535;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.contact-card__head--avatar {
  height: 52px;
  width: 52px;
  background-color: yellow;
  border-radius: 100%;
  background-size: cover;
}
.contact-card__head--title {
  font-size: 24px;
  font-family: "Nohemi", sans-serif;
  font-weight: 500;
  margin-bottom: 8px;
}
.contact-card__head--subtitle {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #AFAFAF;
}
.contact-card__body {
  padding: 16px 40px;
}
.contact-card__body--content {
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 140%;
  color: #F8F8F8;
}
.contact-card__foot {
  display: flex;
  flex-direction: column;
}
.contact-card__foot--heading {
  padding: 0 40px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #AFAFAF;
  margin-bottom: 16px;
}
.contact-card__foot--contact.fcontact {
  height: 46px;
  background: #353535;
  border-bottom: 2px solid #1D1D1D;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  width: 100%;
  gap: 10px;
}
.contact-card__foot--contact.fcontact .text {
  margin-right: auto;
}
.contact-card__foot--contact.fcontact a {
  padding: 0 40px;
  color: #F8F8F8;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.contact-card__foot--contact.highlighted {
  background-color: #FF8456;
}
.contact-card__foot--contact.highlighted a {
  color: #101010;
}
.contact-card__foot--contact.highlighted a:hover {
  background-color: #FCAB6E;
}
.contact-card__foot--contact.highlighted a svg path {
  stroke: #101010;
}
.contact-card__foot--contact.highlighted a svg g {
  fill: #101010;
}
.contact-card__foot--wrapper {
  display: flex;
  flex-direction: row;
}
.contact-card__foot--wrapper .fcontact {
  border-left: 2px solid #1D1D1D;
  padding: 0;
}
.contact-card__foot--wrapper .fcontact a {
  padding: 0;
  align-items: center;
  justify-content: center;
  align-content: center;
  justify-items: center;
  text-decoration: none;
}
.contact-card__foot--wrapper .fcontact a:hover {
  background-color: #4E4E4E;
}

.reveal {
  opacity: 0;
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
  will-change: opacity, transform;
}

.deley16 {
  transition-delay: 1.6s;
}

.deley14 {
  transition-delay: 1.4s;
}

.deley12 {
  transition-delay: 1.2s;
}

.deley10 {
  transition-delay: 1s;
}

.deley08 {
  transition-delay: 0.8s;
}

.deley06 {
  transition-delay: 0.6s;
}

.deley04 {
  transition-delay: 0.4s;
}

.deley02 {
  transition-delay: 0.2s;
}

/* —— 1. Odmiana: „slide + fade” —— */
.reveal[data-reveal=slide] { /* stan początkowy */
  transform: translateY(30px);
}

.reveal[data-reveal=slide].visible { /* po wejściu w kadr */
  transform: translateY(0);
}

/* —— 2. Odmiana: „czysty fade-in” —— */
.reveal[data-reveal=fade] { /* tu transform = none */
  transform: none;
}

/* —— 2. Odmiana: „czysty fade-in” —— */
.reveal[data-reveal=fade] { /* tu transform = none */
  transform: none;
}

/* fade-in nie potrzebuje osobnego rulesa .visible —
   wystarczy wspólne ustawienie opacity poniżej           */
/* —— WSPÓLNY STAN KOŃCOWY —— */
.reveal.visible {
  opacity: 1;
}

h1 {
  margin: 0;
  line-height: 52px;
}

h3 {
  margin: 0;
  height: 24px;
}

p {
  margin: 0;
}

.site-header {
  width: 100%;
  padding-left: 144px;
  padding-top: 50px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1366px) {
  .site-header {
    padding-left: 80px;
    max-width: 500px;
  }
}
@media (max-width: 1024px) {
  .site-header {
    padding-left: 60px;
    padding-right: 60px;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .site-header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.site-header .site-branding img {
  height: 46px;
  width: auto;
}
.site-header .site-title {
  display: none;
}
.site-header .site-description {
  display: none;
}

.under-construction {
  max-height: calc(100vh - 120px);
  height: calc(100vh - 220px);
}/*# sourceMappingURL=custom-style.css.map */