:root {
  --white: #fafcfa;
  --white-hov: #e6e9e5;
  --black: #1c1d1c;
  --black-hov: #3f3f3f;
  --green: #27a143;
  --orange: #e67e22;
  --shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

html {
  font-size: 20px;
  line-height: 1.4;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  font-family: "Fustat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  scroll-behavior: smooth;
}
html::-webkit-scrollbar {
  display: none;
}
html body {
  background-color: var(--white);
}

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

/* ===== TEXT ====================================================== */
h1,
h2,
p,
a {
  pointer-events: none;
  text-decoration: none;
}

h1,
h2,
a,
.mark {
  color: var(--green);
}

h1 {
  font-size: 3rem;
  font-weight: 900;
}

h2 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  color: var(--black);
  font-size: 1rem;
}

a {
  font-size: 1rem;
}
a:hover {
  text-decoration: underline;
}

/* ===== UNIVERSAL ====================================================== */
.btnStd {
  text-decoration: none;
  display: inline-block;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  width: auto;
  border-radius: 1rem;
  border: none;
  background-color: var(--white);
  box-shadow: var(--shadow);
  pointer-events: all;
}

.hovStd:hover {
  text-decoration: none;
  background-color: var(--white-hov);
  box-shadow: var(--shadow);
}

/* ===== HEADER ====================================================== */
header {
  position: sticky;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
  top: 0;
  z-index: 100;
  width: 100%;
  height: auto;
  padding: 0.5rem 1rem;
}
header .btnHeader {
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 1rem;
  border: none;
  background-color: var(--white);
  margin: 0;
  cursor: pointer;
  pointer-events: all;
}
header .btnHeader:hover {
  text-decoration: none;
  box-shadow: var(--shadow);
}
header .logoHeader {
  background: url(./images/Logo.svg) no-repeat left center/contain content-box;
  height: 3.5rem;
  width: 6.625rem;
  padding: 1rem;
}
header .CTA {
  width: auto;
  padding: 0.5rem 1rem;
}

/* ===== FOOTER ====================================================== */
footer {
  margin-top: 10vh;
  z-index: 98;
  text-align: center;
  padding: 1rem;
}
footer p,
footer a {
  font-size: 0.7rem;
}
footer .btn-impressum {
  display: inline-block;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
  border-radius: 1rem;
  border: none;
  background-color: var(--white);
  pointer-events: all;
  margin: 0;
  cursor: pointer;
}
footer .btn-impressum:hover {
  box-shadow: var(--shadow);
  text-decoration: none;
}

/* ===== INDEX ====================================================== */
section {
  padding: 2rem;
  list-style-position: inside;
}

#home {
  margin-top: 20vh;
  margin-bottom: 30vh;
}
#home #btn-kontakt-hero {
  width: 100%;
  text-align: center;
}
#home h1 {
  color: var(--black);
}

#portfolio {
  background-image: url("./images/bg/bg2bl.svg"), url("./images/bg/bg1gr.svg");
  background-repeat: no-repeat;
  background-position: top 20px left, top left;
  background-size: 100% auto;
  position: relative;
  padding-bottom: 4rem;
}
#portfolio h1,
#portfolio p {
  color: var(--white);
}
#portfolio h1 {
  margin-top: 4rem;
}
#portfolio::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  z-index: -1;
  pointer-events: none;
}
#portfolio .rotate-cog {
  height: 3rem;
  width: 3rem;
  margin: 10rem auto;
  animation: rotate360 10s linear infinite;
}
@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

#kontakt {
  margin-top: -2rem;
  background-image: url("./images/bg/bg2wh.svg"), url("./images/bg/bg1gr.svg");
  background-repeat: no-repeat;
  background-position: top 20px left, top left;
  background-size: 100% auto;
  position: relative;
}
#kontakt h1 {
  margin-top: 4rem;
  color: var(--green);
}
#kontakt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  z-index: -1;
  pointer-events: none;
}

/* ===== IMPRESSUM ====================================================== */
.dropdown-btn {
  padding: 1rem;
  margin: 0.5rem 0;
  width: 100%;
  border: none;
  cursor: pointer;
  text-align: left;
  background-color: var(--white);
  transition: background-color 0.2s ease;
  border-radius: 1rem;
  text-decoration: none;
  box-shadow: var(--shadow);
}
.dropdown-btn:hover {
  text-decoration: none;
  box-shadow: var(--shadow);
  background-color: var(--white-hov);
}

.dropdown-content {
  display: none;
}
.dropdown-content h2 {
  margin-top: 1rem;
}

.show {
  display: block;
}

#agb,
#datenschutz {
  margin-top: 4rem;
}

/* ===== SCROLLBTN ====================================================== */
#scrollToTopBtn {
  z-index: 98;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  height: 50px;
  width: 50px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  background: var(--white) url(./images/navigation/goup.svg) no-repeat center/contain content-box;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}
#scrollToTopBtn:hover {
  text-decoration: none;
  background-color: var(--white-hov);
  box-shadow: var(--shadow);
}

/* ===== SCROLLBAR ====================================================== */
.progress-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.5rem;
  background-color: var(--white);
  z-index: 1000;
}
.progress-bar .progress-bar-inner {
  height: 100%;
  background-color: var(--green);
  width: 0;
  transition: width 0.1s ease-out;
}

/* ===== RESPONSIVENESS ====================================================== */
@media (max-width: 800px) {
  html {
    font-size: 14px;
  }
}
@media (max-height: 640px) {
  html {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */