@charset "utf-8";
 
/*
* CSS-Design
* P.R.O.fession work solution
* Personalberatung & Akquiseunterst�tzung
*/
 
/* Reset * * * * * * * * */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;

box-sizing: border-box;
}
/* Google Font Barlow Condensed (�hnlich Cloud Condensed) */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Barlow+Condensed:wght@400;600&display=swap');


:root {
  --primary: #004225;
  --accent: #148950;
  --white: #ffffff;
  --gray: #f3f4f6;
  --dark: #111827;
} 
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--white);
  color: var(--dark);
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.4;
}
h1 {
  font-family: 'Montserrat', sans-serif;
}

h2 {
  font-family: 'Quicksand', sans-serif;
}

h3 {
  font-family: 'Dancing Script', cursive;
}
p {
  font-family: 'Barlow Condensed', sans-serif;
}
a {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
nav {
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  background: #e0efec;
  border-bottom: 1px solid var(--gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  min-height: 120px;
  margin-right: 10rem;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
.nav-links a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 547;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  position: relative;
  margin-right: 2rem;
}
.nav-links a:hover{
   color: var(--accent);
}
.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.nav-links a:hover::after {
  width: 100%;
}
.logo img {
  max-height: 150px;
  height: auto;
  margin-left: 3rem;
}
section {
  padding: 4rem 2rem;
  margin: auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16rem 2rem 9rem 2rem;
  background: linear-gradient(to bottom right, var(--primary), #0077b6);
  color: var(--white);
  width: 100%;
  flex-wrap: wrap;
  gap: 3rem;
  
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  justify-content: space-between;
    margin: 0 auto;
  gap: 3rem;
}

.hero-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.pro {
  font-family: 'Montserrat', sans-serif;
  color: rgb(23, 190, 108);
  font-weight: 700;
}
.fession {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
}
.hero h1 {
  font-size: 2.9rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background: #148950;
  color: var(--white);
  padding: 0.75rem 3.1rem;
  border: none;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
    font-size: 1rem;
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.btn-wrapper {
  margin-top: 2rem;
  text-align: left;
}
h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.wave-divider {
  position: relative;
  width: 100%;
  margin-top: -194px; 
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 67px;
  margin-top: 37px
}
.wave-divider-top {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background-color: #f2fff6;
}

.wave-divider-top svg {
  display: block;
  width: 100%;
  height: 80px;
}

.section-unternehmen {
  background-color: #f2fff6;
  text-align: center;
  color: var(--dark);
  padding-bottom: 2;
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
}

.section-unternehmen h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-unternehmen p {
  font-size: 1.2rem;
  margin-bottom: 4rem;
}
.section-pdl {
  background-color: #f2fff6;
  width: 100%;
  padding-bottom: 3rem;
  padding-left: 3rem;
    padding-top: 0;
}

.section-pdl p{
  font-size: 1.2rem;
  margin-bottom: 4rem;
}
.section-freelancer {
  background-color: #f2fff6; 
  text-align: center;
  color: var(--dark);
  padding-top: 0;
}

.section-neuorientierung {
  background-color: #f2fff6;
  text-align: center;
  color: var(--dark);
  padding-top: 0;
  padding-bottom: 3;
}

.leistungen {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
    font-size: 1.1rem;
  text-align: left;
  max-width: 600px;
  margin-left: 9rem;
  margin-right: auto;
  padding-left: 1.5rem;
  position: relative;
}

.leistungen li::before {
  content: '';
  color: var(--accent);
  position: absolute;
  left: 0;
}

.section-content {
  max-width: 900px;
  margin: 0 auto;
}

.section-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.section-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.section-flex {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.section-image {
  flex: 1 1 40%;
  text-align: center;
}

.section-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.section-text {
  flex: 1 1 55%;
  font-size: 1.2rem;
  margin-bottom: 4rem;
  text-align: left;
  max-width: 600px;
}

.section-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  text-align: left;
}

.section-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-align: left;
  line-height: 1.6;
}

.leistungen {
  list-style: none;
  margin: 0 0 2rem 0;
  padding-left: 2rem;
  text-align: left;
  font-size: 1.1rem;
  line-height: 1.5;
  position: relative;
}

.leistungen li {
  position: relative;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.leistungen li::before {
  content: '';
  color: var(--accent);
  position: absolute;
  left: 0;
}
footer {
  background: var(--gray);
  font-size: 0.8rem;
}

.footer-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-sections section {
  flex: 1 1 250px;
  min-width: 250px;
}
.footer-kontakt{
margin-top: 0;
}

     @media (max-width: 600px) {
      .hero h1 {
        font-size: 1.75rem;
      }
       nav {
    flex-direction: column;
    padding: 1rem;
    min-height: auto;
  }
         .logo img {
    max-height: 65px;
    margin: 0 auto;
  }
         .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }

  .nav-links a {
    font-size: 0.8rem;
    margin: 0;
  }

         .btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.1rem;
    white-space: normal;
  }

  .btn-wrapper {
    text-align: center;
  }
         .wave-divider,
  .wave-divider-top {
    display: none !important;
  }


        .footer-sections {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-sections section {
    width: 100%;
    max-width: 600px;
  }
}
@media (max-width: 768px) {
  .section-flex {
    flex-direction: column;
  }
  .btn-wrapper {
    text-align: center;
  }
  .section-text,
  .section-image {
    flex: 1 1 100%;
  }

  .section-image img {
    max-width: 90%;
  }
  
}
 