/* GENERAL */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  animation: transition 0.75s;

}

html {
  scroll-behavior: smooth;
}

p {
  color: black;
}

a .button {
  text-decoration: none;
}

h1 {
  text-align: center;
}

h2 {
  text-align: center;
}

h3 {
  margin: 0; /* Setzt den Abstand auf 0, um das Versetzen zu verhindern */
  font-size: 1.5rem; /* Füge eine angemessene Schriftgröße hinzu */
}


#paragraph {
  margin-left: 1rem;
}

/* TRANSITION */

a,
.btn {
  transition: all 300ms ease;
}

/* DESKTOP NAV */

nav,
.nav-links {
  display: flex;
}

nav {
  justify-content: space-around;
  align-items: center;
  height: 17vh;
}

.nav-links {
  gap: 2rem;
  list-style: none;
  font-size: 1rem;
}

footer {
  margin-top: 20rem;
}

a {
  color: black;
  text-decoration: none;
}

h1 {
  font-weight: 400;
  text-align: center;
  align-self: center;
}

h5 {
  font-weight: 500;
  text-align: center;
  align-self: center;
  margin-bottom: 1rem;
}
a:hover {
  color: grey;
  text-decoration: underline;
  text-underline-offset: 1rem;
  text-decoration-color: rgb(181, 181, 181);
}

.logo h2 {
  font-size: 2rem;
  font-weight: 400;
}

.logo h2{
  font-weight: 400;
}

.logo:hover {
  cursor: default;
}

i {
  margin-left: 3px;
  margin-right: 1rem;
}

.header {
  margin-bottom: 0;
  margin-top: 5rem;
}

.cta-color-1-nav {
  display: flex; /* Nutze Flexbox-Layout */
  justify-content: center; /* Horizontal zentrieren */
  align-items: center; /* Vertikal zentrieren */
  background-color: #61876E;
  font-weight: 600;
  transition: all 300ms ease;
  padding: 1rem;
  width: 10rem;
  height: 2rem;
  color: white;
  font-size: small;
  border-radius: 1rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  align-items: center;
}

.cta-color-1-nav:hover {
  cursor: pointer;
  background-color: #254837;
  color: white;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-color-1-wide {
  background-color: #61876E;
  font-weight: 600;
  transition: all 300ms ease;
  padding: 1rem;
  width: 10rem;
  color: white;
  font-size: small;
  border-radius: 1rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 10rem;
}

.cta-color-1-wide:hover {
  cursor: pointer;
  background-color: #254837;
  color: white;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact {
  text-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.checkboxes {
  display: flex;
  text-align: center;
  justify-self: center;
  justify-content: center;
  gap: 10px;
}

label {
  margin-right: 10px;
}

#email {
  margin-top: 2rem;
}

/* HAMBURGER MENU */

#hamburger-nav {
  display: none;
}

.hamburger-menu {
  position: relative;
  display: inline-block;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  cursor: pointer;
}

.hamburger-icon span {
  width: 100%;
  height: 2px;
  background-color: black;
  transition: all 0.3 ease-in-out;
}

.menu-links {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  width: fit-content;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3 ease-in-out;
}

.menu-links a {
  display: block;
  padding: 10px;
  text-align: center;
  font-size: 1.5rem;
  color: black;
  text-decoration: none;
  transition: all 0.3 ease-in-out;
}

.menu-links li {
  list-style: none;
}

.menu-links.open {
  max-height: 300px;
}

.hamburger-icon.open span:first-child {
  transform: rotate(45deg) translate(10px, 5px);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:last-child {
  transform: rotate(-45deg) translate(10px, -5px);
}

.hamburger-icon span:first-child {
  transform: none;
}

.hamburger-icon span:first-child {
  opacity: 1;
}

.hamburger-icon span:first-child {
  transform: none;
}

/* ICONS */

.fas-fa-check {
  color:#254837;
}

/* SECTIONS */

section {
  padding-top: 4vh;
  height: 96vh;
  margin: 0 10rem;
  box-sizing: border-box;
  min-height: fit-content;
}

.section-container {
  display: flex;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.step i {
  font-size: 24px;
  color: black;
  margin-right: 10px;
}

/* SECTIONS */


section {
  padding-top: 4vh;
  height: 96vh;
  margin: 0 10rem;
  box-sizing: border-box;
  min-height: fit-content;
}

.section-container {
  display: flex;
}

.section__text {
  align-self: center;
  text-align: center;
}

.section__text p {
  font-weight: 600;
}

.section__text__p1 {
  text-align: center;
}

.disclaimer p {
  color: grey;
  text-align: center;
  font-size: smaller;
}

.instruction {
  text-align:left;
  margin-left: 5rem;
}

.instruction p {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

h1 {
  align-self: center;
  margin-bottom: 40px;
}

h2 {
  align-self: center;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.section__text__p2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.properties {
    padding: 20px; /* Füge Innenabstand hinzu, um den Text vom Rahmen zu trennen */
    margin: 20px 0; /* Füge Außenabstand hinzu, um den Container vom vorherigen Element zu trennen */
    margin: 20px auto; /* Auto-Margin horizontal, um den Container zu zentrieren */
    max-width: 800px;
    width: 85%;
}

.properties-container {
    border: 2px solid #333; /* Setze die gewünschten Border-Eigenschaften */
    padding: 20px; /* Füge Innenabstand hinzu, um den Text vom Rahmen zu trennen */
    margin: 20px 0; /* Füge Außenabstand hinzu, um den Container vom vorherigen Element zu trennen */
    border-color: rgb(163, 163, 163);
    border-radius: 2rem;
    margin: 20px auto; /* Auto-Margin horizontal, um den Container zu zentrieren */
    max-width: 800px;
    width: 85%;
    margin-bottom: 10rem;
    margin-top: 1rem;

}

#step-by-step {
  margin-top: 10rem;
}

.cta-color-1-nav {
  background-color: #61876E;
  font-weight: 600;
  font-size: medium;
  transition: all 300ms ease;
  padding: 1rem;
  width: 17rem;
  color: white;
  border-radius: 1rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-color-1-nav {
  display: flex; /* Nutze Flexbox-Layout */
  justify-content: center; /* Horizontal zentrieren */
  align-items: center; /* Vertikal zentrieren */
  background-color: #61876E;
  font-weight: 600;
  transition: all 300ms ease;
  padding: 1rem;
  width: 10rem;
  height: 2rem;
  color: white;
  font-size: small;
  border-radius: 1rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  align-items: center;
}

#services {
  margin-bottom: 7rem;
}

.list {
    margin-left: 30px;
    color: black;
}

.a {
    color: white;
}

.calendly {
  margin-top: 10rem;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}

#progress {
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  background-color: #61876E;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  
}

#progress-value {
  display: block;
  height: calc(100% - 15px);
  width: calc(100% - 15px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #001a2e;
}

.properties ul{
  padding-left:20px;
}

/* BUTTONS */

.cta-color-1 {
  background-color: #61876E;
  font-weight: 600;
  transition: all 300ms ease;
  padding: 1rem;
  width: 15rem;
  color: white;
  border-radius: 1rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-color-1:hover {
  cursor: pointer;
  background-color: #254837;
  color: white;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-color-1-nav {
  display: flex; /* Nutze Flexbox-Layout */
  justify-content: center; /* Horizontal zentrieren */
  align-items: center; /* Vertikal zentrieren */
  background-color: #61876E;
  font-weight: 600;
  transition: all 300ms ease;
  padding: 1rem;
  width: 10rem;
  height: 2rem;
  color: white;
  font-size: small;
  border-radius: 1rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  align-items: center;
}

i {
  margin-left: 3px;
}

.cta-color-1-nav:hover {
  cursor: pointer;
  background-color: #254837;
  color: white;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-color-1-wide {
  background-color: #61876E;
  text-align: center;
  font-weight: 600;
  transition: all 300ms ease;
  padding: 1rem;
  width: 20rem;
  color: white;
  font-size: small;
  border-radius: 1rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-color-1-wide:hover {
  cursor: pointer;
  background-color: #254837;
  color: white;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* DESCRIPTION */

#description {
  margin-top: 15rem;
}

/* PROJECTS */

#projects {
  position: relative;
}

.color-container {
  border-color: rgb(163, 163, 163);
  background: rgb(250, 250, 250);
}

.project-img {
  border-radius: 2rem;
  width: 85%;
  height: 85%;
}

.demo-img {
  border-radius: 2rem;
  width: 50%;
  height: 70%;
}

#profile-pic {
  margin-top: 30rem;
  margin-bottom: 32rem;

}



hr {
  border: none;
  border-top: 2px solid #61876E;
  margin: 20px 0;
}

img {
  width: 50%;
}

.project-title {
  margin: 1rem;
  color: black;
}

.project-btn {
  color: black;
  border-color: rgb(163, 163, 163);
}

/* IMAGE */

  img {
    width: 80%;
  }

  .image-container {
    max-height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10rem;
    margin-top: 5rem;

  }

  .project-img {
    max-width: 85%; /* Ensure image doesn't exceed container width */
    display: grid;
  }

  .profile-img {
    display: grid;
    width: 40%;
    margin: 2rem;
  }
    

/* CONTACT */

#contact {
  margin-top: 7rem;
  margin-bottom: 2rem;
}

/* BUTTONS */

.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  max-height: 5rem;
  margin-bottom: 5rem;
}

.btn {
  font-weight: 400;
  transition: all 300ms ease;
  padding: 1rem;
  width: 8rem;
  border-radius: 2rem;
  text-align: center;
}

.btn-color-1,
.btn-color-2 {
  border: rgb(53, 53, 53) 0.1rem solid;
}

.btn-color-1:hover,
.btn-color-2:hover {
  cursor: pointer;
}

.btn-color-1,
.btn-color-2:hover {
  background: rgb(53, 53, 53);
  color: white;
}

.btn-color-1:hover {
  background: rgb(0, 0, 0);
}

.btn-color-2 {
  background: none;
}

.btn-color-2:hover {
  border: rgb(255, 255, 255) 0.1rem solid;
}

.btn-container {
  gap: 1rem;
}

/* FOOTER */

footer p {
  text-align: center;
}

/* ADDED MEDIAQUERIES */

@media screen and (max-width: 1200px) {
  #desktop-nav {
    display: none;
  }
  #hamburger-nav {
    display: flex;
  }
  #experience,
  .experience-details-container {
    margin-top: 2rem;
  }
  #profile,
  .section-container {
    display: block;
  }
  .arrow {
    display: none;
  }
  section,
  .section-container {
    height: fit-content;
  }
  section {
    margin: 0 5%;
  }
  .section__pic-container {
    width: 275px;
    height: 275px;
    margin: 0 auto 2rem;
  }
  .about-containers {
    margin-top: 0;
  }
}

