@charset "UTF-8";
/* Core styles */
:root {
  --primary-color:#382B3C;
  --secondary-color:#8A7B8D;
  --text-color:#333;
  --white:#ffffff;
}

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

@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-Medium.ttf") format("truetype");
  font-weight: 500;
  /* Medium */
  font-style: normal;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-SemiBold.ttf") format("truetype");
  font-weight: 600;
  /* SemiBold */
  font-style: normal;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/InterTight-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  /* ExtraBold */
  font-style: normal;
}
a, button {
  color: var(--primary-color);
  font-family: "Inter Tight", serif;
}
a:hover, button:hover {
  color: var(--secondary-color);
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: var(--text-color);
  font-family: "Inter Tight", serif;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1px;
}

/* Layout and containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation */
nav {
  height: 180px;
  width: 100%;
  padding: 2rem 0;
  background-color: var(--primary-color);
}
nav ul {
  display: flex;
  gap: 2rem;
  justify-content: center;
  list-style: none;
}
nav a {
  color: var(--white);
  font-size: 1rem;
  text-decoration: none;
}

/* Profile Section */
.profile {
  position: relative;
  padding: 4rem 0;
  text-align: center;
}

.profile-image {
  height: 180px;
  width: 180px;
  overflow: hidden;
  margin: -160px auto 3rem;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
}
.profile-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.title-container {
  margin: 0 auto 3rem;
  text-align: left;
}
.title-container h1 {
  display: inline-block;
  padding: 2px 5px 4px;
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 800;
}
.title-container p {
  margin-top: 1rem;
  font-size: 1.2rem;
}

.intro {
  margin: 0 auto 14rem 0;
  text-align: left;
  max-width: 800px;
}
.intro p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Dividers */
.diagonal-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 180px;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100px, 0 180px);
  background-color: var(--primary-color);
}

/* Help Section */
.help {
  position: relative;
  padding: 6rem 0;
}
.help h2 {
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 500;
}

.help-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 6rem;
}

.help-item h3 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 600;
  max-width: 275px;
}
.help-item p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Graph Section */
.graph-section {
  margin: 0 auto;
}

.graph-title, .graph-bar {
  margin-bottom: 2rem;
}

.bar {
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: flex-start;
  padding-left: 1rem;
  background-color: var(--primary-color);
  color: var(--white);
}

.bar-title {
  margin-bottom: 0.5rem;
}

.bar span {
  white-space: nowrap;
}

.graph-bar:nth-child(1) .bar {
  opacity: 0.6;
  width: 73%;
}
.graph-bar:nth-child(2) .bar {
  opacity: 0.8;
  width: 90%;
}
.graph-bar:nth-child(3) .bar {
  opacity: 1;
  width: 100%;
}

.graph-footnote {
  margin-top: 1rem;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

/* Coaching Section */
.coaching {
  position: relative;
  padding: 6rem 0;
}
.coaching h2 {
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 500;
}

.coaching-grid {
  margin: 0 auto;
}

.coaching-item h3 {
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}
.coaching-item p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
.coaching-item .footnote {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  margin: 4rem auto 0;
}

.cta-button {
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  background-color: var(--primary-color);
  color: var(--white);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  width: 100%;
  text-align: center;
}
.cta-button:hover {
  background-color: var(--secondary-color);
  color: white;
}

/* Testimonials Section */
.testimonials {
  position: relative;
  padding: 6rem 0 20rem;
}
.testimonials h2 {
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 500;
  text-align: left;
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  position: relative;
  box-shadow: 0 10px 30px rgba(56, 43, 60, 0.15);
  border-radius: 25px;
  padding: 2.5rem;
  background-color: var(--secondary-color);
  color: var(--white);
  z-index: 999;
}
.testimonial-card::before {
  border-radius: 25px;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -20px;
  left: -20px;
  background-color: var(--primary-color);
  z-index: -1;
}
.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  top: -20px;
  left: -20px;
}

/* Specialties Section */
.application {
  position: relative;
  padding: 6rem 0;
}
.application h2 {
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 500;
}
.application .accordion .accordion-item svg {
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
}
.application .accordion .accordion-item .accordion-content {
  height: 0;
  opacity: 0;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  transition: height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.application .accordion .accordion-item .accordion-content p {
  padding: 0 20px 60px;
}
.application .accordion .accordion-item.active svg {
  transform: rotate(180deg);
}
.application .accordion .accordion-item.active .accordion-content {
  display: block;
  opacity: 1;
}
.application .accordion .accordion-item button {
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  outline: none;
  border-bottom: 1px solid var(--primary-color);
  background: none;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
}
.application-content {
  margin: 0 auto;
}

.application-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
}
.application-item p {
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

/* Last CTA button */
.application .cta-button {
  display: inline-block;
  width: auto;
  text-align: center;
  margin-top: 2rem;
}

hr {
  max-width: 1200px;
  padding: 0 40px;
  margin: 0 auto;
  width: 100%;
}

.contact {
  margin-top: 80px;
  margin-bottom: 150px;
}
.contact h2 {
  margin-bottom: 4rem;
  font-size: 2.5rem;
  font-weight: 500;
}
.contact h3 {
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 1.5rem;
}
.contact h4 {
  font-weight: 500;
  font-size: 1.3rem;
}

footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo h4 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.footer-logo p {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.footer-links, .footer-links-two {
  margin-top: 1rem;
}

.footer-links ul, .footer-links-two ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 2rem;
}

.footer-links a, .footer-links-two a {
  text-decoration: none;
  color: var(--white);
  font-size: 1rem;
}

.footer-links a:hover, .footer-links-two a:hover {
  color: var(--secondary-color);
}

.footer-contact {
  margin-top: 2rem;
}
.footer-contact h5 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.footer-contact p {
  font-size: 1rem;
}

.footer-bottom {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--secondary-color);
}
.footer-bottom p {
  margin: 0;
}

/* Navigation Container */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger Icon */
.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  /* wird nur in Mobile-Ansicht angezeigt */
  position: fixed;
  top: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  background-color: rgba(var(--secondary-color), 0.3);
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  position: relative;
}
.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  left: 0;
}
.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

/* Navigation Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
}

/* Mobile Styles */
@media (max-width: 1200px) {
  .nav-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 auto;
    border-radius: 25px;
    cursor: pointer;
    z-index: 1001;
    background-color: var(--primary-color);
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background-color: var(--primary-color);
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    display: flex;
    transform: translateY(-100%);
    /* Start außerhalb des Viewports */
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
    z-index: 1000;
  }
  .nav-menu.active {
    transform: translateY(0);
    /* Kommt von oben rein */
  }
  /* Optional: Logo zentrieren oder anpassen */
  .nav-logo {
    flex: 1;
  }
  /* Add transition to the hamburger and its pseudo-elements */
  .hamburger {
    transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
  }
  .hamburger::before, .hamburger::after {
    transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
  }
  /* Hamburger Active State */
  .nav-toggle.active .hamburger {
    background: transparent;
  }
  .nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
  }
  .nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
  }
}
/* Media Queries */
@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .help-grid {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
  .footer-links {
    display: none;
  }
  .graph-bar:nth-child(1) .bar {
    opacity: 0.6;
    width: 80%;
  }
}
@media (max-width: 768px) {
  .title-container h1 {
    font-size: 2rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .cta-buttons {
    align-items: stretch;
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  nav ul {
    gap: 1rem;
  }
  .help-grid {
    gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  nav ul {
    gap: 1rem;
    align-items: center;
    flex-direction: column;
  }
  .help-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 1rem;
  }
  .profile-section {
    gap: 2rem;
    flex-direction: column;
    padding: 2rem 1rem;
    text-align: center;
  }
  .profile-text h1 {
    font-size: 2rem;
  }
  .help-grid {
    gap: 1rem;
    grid-template-columns: 1fr;
  }
  .cta-button {
    width: 100%;
    padding: 0.8rem 1.5rem;
  }
}
/* Print styles */
@media print {
  body {
    color: black;
  }
  .no-print {
    display: none;
  }
}

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