@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Syne:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@font-face {
  font-family: "Sddystopian";
  src: url("assets/Sddystopiandemo-GO7xa.otf") format("opentype");
}

.filler {
  height: 100vh;
  width: 100vw;
}

:root {
  --BG: #0a0f1e;
  --Surface: #111827;
  --Surface2: #1a2540;
  --Accent: #00d4ff;
  --WarmAcc: #f59e0b;
  --Borders: #1e3a5f;
  --Text: #f0f4ff;
  --Muted: #8b9db0;
}

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

.projekte {
  padding: 20px;
}

.projects-softskill-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 20px;
}

.projects {
  margin-right: auto;
  width: 100%;
  background-color: var(--Surface);
  border-radius: 17px;
  border: 1px solid var(--Accent);
  z-index: 1;
  transition: 0.3s ease;
}

.projects:hover {
  transform: translateY(-5px);
}

.soft-skills {
  margin-left: auto;
  width: 40%;
  border-radius: 17px;
  background-color: var(--Surface);
  z-index: 1;
  transition: 0.3s ease;
}

.soft-skills:hover {
  border: 1px solid var(--WarmAcc);
  transform: translateY(-10px);
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 16px;
}

.box {
  aspect-ratio: 1 / 0.5;
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  border: 1px solid var(--Borders);
  background-color: var(--Surface2);
  border-radius: 10px;
  padding: 20px;
  transition: 0.3s ease;
}

.box:hover {
  border: 1px solid var(--Accent);
}

#dashed-box {
  background: #00d4ff05;
  align-items: center;
  color: var(--Muted);
  font-size: 10px;
  text-align: center;
  border: 1px var(--Borders) dashed;
}

#dashed-box:hover {
  border: 1px var(--Accent) dashed;
}

.web2 {
  color: var(--Accent);
  font-size: 10px;
}

.box-title {
  margin-top: 5px;
  color: var(--Text);
  font-family: Syne, sans-serif;
  font-weight: 600;
  font-size: 13px;
}

.box-discription {
  color: var(--Muted);
  font-size: 11px;
  font-family: Syne, sans-serif;
  margin-top: 5px;
}

.box-tech {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.box-tech-item {
  border: 1px solid var(--Borders);
  padding: 5px 10px;
  width: fit-content;
  font-size: x-small;
  color: var(--Muted);
  border-radius: 15px;
  /* transition: 0.3s ease; */
}

.box-github-deployed {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.box-github-deployed-item {
  padding: 2px 8px;
  border: 1px solid #1e3a5f;
  background-color: transparent;
  display: block;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 9px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  color: var(--Accent);
  cursor: pointer;
}

.SS-container {
  width: 100%;
  height: auto;
  padding: 20px;
}

.SS-item {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--Borders);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.true {
  margin-left: auto;
  color: #22c55e;
  font-size: small;
  font-family: Syne, sans-serif;
}

.SS-title {
  margin-right: auto;
  color: var(--Text);
  font-size: small;
  font-family: Syne, sans-serif;
}

.CTA {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-t {
  font-size: 28px;
  font-family: Syne, sans-serif;
  font-weight: 800;
  text-align: center;
  color: var(--Text);
}

.cta-s {
  font-size: 13px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 400;
  text-align: center;
  color: var(--Muted);
}

.cta-l {
  font-size: 15px;
  padding-right: 10px;
  padding: 10px 20px;
  background-color: var(--Accent);
  font-family: "JetBrains Mono", monospace;
  font-weight: 100px;
  border: none;
  border-radius: 5px;
  color: #000;
  transition: 0.3s ease;
}

.cta-l:hover{
    background-color: white;
  box-shadow: 0 0 28px rgba(0, 212, 255, 0.5);
}

@media (max-width: 800px) {
  .skills-title {
    font-size: 8px;
  }

  .projects-softskill-container {
    flex-direction: column;
  }

  .soft-skills {
    width: 100%;
    border-radius: 16px;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    padding: 16px;
  }

  .box {
    aspect-ratio: auto;
  }
}
