@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

.icon-invert {
  filter: invert(1);
}

@font-face {
  font-family: "Roboto";
  src: url("/patrick/assets/fonts/Roboto-Black.woff2") format("woff2"), url("/patrick/assets/fonts/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/patrick/assets/fonts/Roboto-BlackItalic.woff2") format("woff2"), url("/patrick/assets/fonts/Roboto-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/patrick/assets/fonts/Roboto-Bold.woff2") format("woff2"), url("/patrick/assets/fonts/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/patrick/assets/fonts/Roboto-LightItalic.woff2") format("woff2"), url("/patrick/assets/fonts/Roboto-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/patrick/assets/fonts/Roboto-BoldItalic.woff2") format("woff2"), url("/patrick/assets/fonts/Roboto-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/patrick/assets/fonts/Roboto-Italic.woff2") format("woff2"), url("/patrick/assets/fonts/Roboto-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/patrick/assets/fonts/Roboto-Light.woff2") format("woff2"), url("/patrick/assets/fonts/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/patrick/assets/fonts/Roboto-Thin.woff2") format("woff2"), url("/patrick/assets/fonts/Roboto-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/patrick/assets/fonts/Roboto-Regular.woff2") format("woff2"), url("/patrick/assets/fonts/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/patrick/assets/fonts/Roboto-Medium.woff2") format("woff2"), url("/patrick/assets/fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/patrick/assets/fonts/Roboto-ThinItalic.woff2") format("woff2"), url("/patrick/assets/fonts/Roboto-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("/patrick/assets/fonts/Roboto-MediumItalic.woff2") format("woff2"), url("/patrick/assets/fonts/Roboto-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
button, .btn {
  margin-top: 24px;
  box-shadow: 1px 2px 4px 1px #ee0979;
  background: linear-gradient(to right, #ff6a00, #ee0979);
  border-radius: 32px;
  cursor: pointer;
  color: #ffffff;
  font-size: 17px;
  padding: 15px 50px;
  text-decoration: none;
  border: none;
}
button:hover, .btn:hover {
  background-color: #225dad;
}
button:active, .btn:active {
  position: relative;
  top: 1px;
}
button.link, .btn.link {
  background: none;
  box-shadow: none;
  color: #ee0979;
  padding: 0;
}
button.link:hover, .btn.link:hover {
  color: #225dad;
}
button.link:active, .btn.link:active {
  position: relative;
  top: 0;
}

#select-all {
  grid-column: 1/-1;
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: 32px;
  width: 100%;
  box-shadow: 3px 6px 12px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-color: #000000;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.card:hover {
  transform: scale(1.05);
}
.card img {
  width: 50%;
  margin: 0 auto;
  object-fit: cover;
}
.card .card-body {
  background-color: #fffcfc;
  flex-grow: 1;
  padding: 24px;
}
.card .card-title, .card .card-title-big {
  color: #000000;
  font-weight: bold;
  font-size: 18px;
  margin: 0;
  padding: 0;
}
.card .card-title-big {
  font-size: 32px;
  margin-bottom: 20px;
  margin-top: 20px;
}
.card .card-text {
  line-height: 1.4;
  margin: 10px 0 0 0;
  font-size: 17px;
  color: #000000;
}
.card.selected {
  box-shadow: 0 0 20px 0px #ff6a00;
  border-color: #ff6a00;
}
.card.card-left {
  flex-direction: row;
  align-items: center;
}
.card.card-left img {
  width: 100%;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}
@media (max-width: 468px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.flex {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.flex.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.flex > * {
  flex: 1;
  padding: 10px;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

section {
  margin-bottom: 200px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 100px;
  }
}

.text {
  min-width: 300px;
}

.nav-bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.nav-bar .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 1260px;
  height: 70px;
}
.nav-bar .nav-logo {
  color: white;
}
.nav-bar .nav-logo img {
  width: 30px;
  height: 30px;
}
.nav-bar ul {
  display: flex;
  list-style: none;
  height: 100%;
}
.nav-bar ul li {
  height: 100%;
}
.nav-bar .nav-link, .nav-bar .nav-logo {
  color: white;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 30px;
}
.nav-bar .nav-logo {
  font-weight: bolder;
}
.nav-bar .nav-link {
  height: 100%;
  position: relative;
}
.nav-bar .nav-link:hover:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.1;
  border-radius: 100px;
}
.nav-bar .nav-toggle-icon {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: relative;
}
.nav-bar .nav-toggle-icon::before,
.nav-bar .nav-toggle-icon::after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 0;
}
.nav-bar .nav-toggle-icon::before {
  top: -8px;
}
.nav-bar .nav-toggle-icon::after {
  top: 8px;
}
.nav-bar .nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 30px;
  margin: 0;
}
@media (max-width: 768px) {
  .nav-bar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; /* Höhe der Navigation */
    right: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    overflow: hidden;
    height: 80vh;
    max-height: 80vh;
    font-weight: bolder;
    font-size: 1.5rem;
  }
  .nav-bar ul.active {
    display: flex;
  }
  .nav-bar ul li {
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
  }
  .nav-bar .nav-toggle {
    display: block;
  }
}

h2, h3, h4, h5, h6 {
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
}

p {
  line-height: 1.75rem;
}

a {
  text-decoration: none;
  background: none;
  box-shadow: none;
  color: #ee0979;
  padding: 0;
}
a:hover {
  color: #225dad;
}
a:active {
  position: relative;
  top: 0;
}

.light {
  color: #8f8f8f;
}

#filaments {
  position: relative;
}
@media (max-width: 768px) {
  #filaments .card-grid {
    flex: 100%;
  }
}
#filaments .link {
  margin: 20px;
}

#hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: white;
  background: linear-gradient(to right, #ee0979, #ff6a00);
  overflow: hidden;
}
#hero h1 {
  font-size: 5.5rem;
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 2.5rem;
  }
}
#hero p {
  font-size: 2.5rem;
  line-height: unset;
}
@media (max-width: 768px) {
  #hero p {
    font-size: 1.5rem;
  }
}
#hero .read-more {
  color: white;
  font-size: 1.5rem;
  margin-top: 100px;
}
@media (max-width: 768px) {
  #hero .read-more {
    margin-top: 40px;
  }
}
#hero .wave-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  filter: drop-shadow(1px -30px 10px rgba(0, 0, 0, 0.29));
}
#hero .wave-shape svg {
  position: relative;
  display: block;
  width: calc(100% + 10.3px);
  height: 200px;
  animation: wave 10s 0s infinite ease;
}
#hero .wave-shape .shape-fill {
  fill: #FFFFFF;
}

#layers .container {
  align-items: center;
}
#layers .gcode-container {
  height: 100%;
  display: flex;
  min-width: 310px;
}
#layers #gcode-canvas {
  width: 100%;
}
#layers input[type=range].vertical {
  writing-mode: vertical-lr;
  direction: rtl;
  width: 16px;
  vertical-align: bottom;
}
#layers input[type=range] {
  -webkit-appearance: none;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  border-radius: 10px;
}
#layers input[type=range]:hover {
  opacity: 1;
}
#layers input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: #ee0979;
  cursor: pointer;
}
#layers input[type=range]::-webkit-slider-thumb:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #0E8502;
}
#layers input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #ee0979;
  cursor: pointer;
}
#layers .slider-value {
  position: absolute;
  color: red;
  border: 1px solid blue;
  min-width: 100px;
}
#layers #slider-container {
  position: relative;
}

#printer .main-svg a:hover {
  cursor: pointer;
}
#printer .main-svg a:hover circle {
  fill: rgba(0, 0, 0, 0.44) !important;
}
#printer .info-container {
  position: relative;
  width: 100%;
}
#printer .info-container .card {
  cursor: unset;
  position: absolute;
  top: 0;
  left: 0;
  height: 50%;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}
#printer .info-container .card.active {
  opacity: 1;
  transform: translateY(50%);
}

#projects .gallery-block {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
#projects .item {
  position: relative;
  width: 100%;
  box-shadow: 3px 6px 12px 0 rgba(0, 0, 0, 0.2);
  border-radius: 32px;
}
#projects .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}
#projects .item:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: background-color 0.3s ease;
  border-radius: 32px;
}
#projects .item p {
  position: absolute;
  display: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  z-index: 1;
}
#projects .item:hover:after {
  background-color: rgba(0, 0, 0, 0.5);
}
#projects .item:hover p {
  display: block;
}

#what {
  position: relative;
}
#what .container {
  justify-content: center;
  align-items: center;
}
#what .mask {
  padding: 0;
  max-width: 600px;
  width: 100%;
  mask-image: url("/patrick/assets/img/blob.svg");
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

@keyframes wave {
  0% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.5) scaleX(1.2) translateY(100px);
  }
  100% {
    transform: scaleY(1);
  }
}

/*# sourceMappingURL=style.css.map */
