/* [project]/src/app/Background/Background.css [app-client] (css) */
.background {
  object-fit: cover;
  z-index: -2;
  width: 100vw;
  height: 100vh;
  transition: transform .5s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
}

.background-black, .background-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.background-black {
  z-index: -4;
  background-color: #000;
}

.background-overlay {
  z-index: -1;
  background: #0006;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.background-container {
  z-index: -10;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.background.slide-in.animating, .background.slide-out {
  transform: translateX(0);
}

.background.slide-out.animating {
  transform: translateX(-100%);
}

.background.slide-in {
  transform: translateX(100%);
}

/* [project]/src/components/Navbar/Navbar.css [app-client] (css) */
.nav {
  background-color: var(--bg-white);
  border: 1px solid var(--border-white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  border-bottom: none;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 40px 100px 0;
  padding: 1rem 3rem;
  transition: all .3s;
  display: flex;
}

.nav.nav--compact {
  border: none;
  border-bottom: 1px solid var(--border-beige);
  border-radius: 0;
  margin: 0;
  padding: .4rem 1.5rem;
  box-shadow: 0 1px 6px #0000000a;
}

.nav.nav--compact .nav-logo {
  gap: 12px;
  font-size: 22px;
}

.nav.nav--compact .nav-logo-icon {
  width: 40px;
}

.nav.nav--compact .nav-logo-writing {
  font-size: 1.05rem;
}

.nav.nav--compact .nav-menu {
  gap: 26px;
  font-size: 16px;
}

.nav.nav--compact .nav-contact {
  padding: 8px 22px;
}

.nav-logo {
  color: var(--text-dark);
  cursor: pointer;
  font-size: 42px;
  font-weight: 500;
  font-family: var(--font);
  align-items: center;
  gap: 20px;
  transition: transform .3s;
  display: flex;
}

.nav-logo-writing {
  font-family: var(--font-display);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 500;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.nav-logo-icon {
  object-fit: contain;
  cursor: pointer;
  width: 70px;
  height: auto;
  transition: transform .3s;
  display: block;
}

.nav-logo-icon:hover {
  transform: scale(1.02);
}

.nav-menu {
  color: var(--text-dark);
  font-size: 18px;
  font-family: var(--font);
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--text-dark);
  padding: 8px 0;
  font-weight: 500;
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.nav-menu a:after {
  content: "";
  background: linear-gradient(to right, var(--green-dark), var(--green-mid));
  border-radius: 2px;
  width: 0;
  height: 3px;
  transition: width .3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.nav-menu a:hover:after, .active-link:after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--green-dark);
}

.active-link {
  font-weight: 600;
  color: var(--green-dark) !important;
}

.nav-right {
  align-items: center;
  gap: 30px;
  display: flex;
}

@media (min-width: 700px) {
  .nav-contact {
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    color: var(--bg-white);
    font-weight: 500;
    font-family: var(--font);
    padding: 12px 38px;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s;
    box-shadow: 0 4px 15px #3d7a6540;
  }

  .nav-contact:hover {
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #3d7a6559;
  }
}

.nav-accent-bar {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 0 0 12px 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin: 0 100px;
  padding: .5rem 2rem;
  display: flex;
  box-shadow: 0 6px 24px #00000012;
}

.nav-accent-tag {
  color: #ffffffeb;
  font-family: var(--font);
  letter-spacing: .06em;
  white-space: nowrap;
  font-size: .8rem;
}

.nav-accent-tag:first-child {
  color: #fff;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: .03em;
  font-size: .85rem;
}

@media (max-width: 900px) {
  .nav-accent-bar {
    gap: 1rem;
    margin: 0 20px;
    padding: .4rem 1rem;
  }
}

@media (max-width: 600px) {
  .nav-accent-bar {
    justify-content: flex-start;
  }

  .nav-accent-tag:not(:first-child) {
    display: none;
  }
}

.burger {
  cursor: pointer;
  color: var(--text-dark);
  background: none;
  border: none;
  padding: 5px;
  font-size: 30px;
  transition: transform .3s;
  display: none;
}

.burger:hover {
  transform: scale(1.1);
}

a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav {
    border-radius: var(--radius-card) var(--radius-card) 0 0;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px 20px 0;
    padding: 1rem 2rem;
  }

  .burger {
    display: block;
  }

  .nav-right {
    justify-content: space-between;
    width: 100%;
  }

  .nav-menu {
    background-color: var(--bg-white);
    border: 1px solid var(--border-white);
    border-radius: 12px;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem 0;
    display: none;
    box-shadow: 0 4px 15px #0000000a;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    border-bottom: 1px solid #0000000d;
    width: 100%;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    width: 100%;
    padding: 1rem 1.5rem;
    display: block;
  }

  .nav-menu a:after {
    display: none;
  }
}

@media (max-width: 600px) {
  .nav {
    padding: 1rem;
  }

  .nav-logo {
    gap: 15px;
    font-size: 32px;
  }

  .nav-logo-icon {
    width: 50px;
  }
}

/* [project]/src/components/UserDropdown/UserDropdown.css [app-client] (css) */
.user-dropdown-inline {
  display: inline-block;
  position: relative;
}

.user-button {
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 6px;
  padding: 6px 4px;
  transition: background .2s;
  display: flex;
}

.user-button:hover {
  background: #3d7a6512;
}

.user-button p {
  color: var(--text-dark);
  font-size: 1rem;
  font-family: var(--font);
  margin: 0;
  padding: 0;
  font-weight: 500;
}

.user-button:after {
  content: "▾";
  color: var(--text-muted, #7a7a7a);
  font-size: .75rem;
  transition: transform .2s;
}

.user-dropdown-inline.open .user-button:after {
  transform: rotate(180deg);
}

.dropdown-menu-inline {
  background: var(--bg-white, #fafaf8);
  border: 1px solid var(--border, #d8e4df);
  z-index: 200;
  border-radius: 12px;
  min-width: 180px;
  animation: .15s dropdown-in;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px #00000014;
}

@keyframes dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu-inline a, .dropdown-menu-inline button {
  text-align: left;
  border: none;
  border-bottom: 1px solid var(--border, #d8e4df);
  width: 100%;
  font-size: .9rem;
  font-family: var(--font);
  color: var(--text-dark, #1a1a1a);
  cursor: pointer;
  box-sizing: border-box;
  background: none;
  padding: .7rem 1.1rem;
  text-decoration: none;
  transition: background .15s, color .15s;
  display: block;
}

.dropdown-menu-inline a:last-child, .dropdown-menu-inline button:last-child {
  border-bottom: none;
}

.dropdown-menu-inline a:hover, .dropdown-menu-inline button:hover {
  background: var(--bg-subtle, #f2f5f3);
  color: var(--green-dark, #3d7a65);
}

.dropdown-menu-inline button.logout {
  color: #b92929;
}

.dropdown-menu-inline button.logout:hover {
  color: #b92929;
  background: #b929290f;
}

/* [project]/src/components/Hero/Hero.css [app-client] (css) */
.hero {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  margin: 100px 120px 0;
  display: flex;
}

.hero-text {
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  font-family: var(--font-display);
}

.hero-explore {
  border-radius: var(--radius-pill, 50px);
  background-color: var(--bg-white);
  cursor: pointer;
  border: none;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: 2.5rem;
  padding: 10px 24px 10px 20px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: inline-flex;
  box-shadow: 0 4px 20px #00000026;
}

.hero-explore:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px #0003;
}

.hero-explore-icon {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  font-size: 1rem;
  display: flex;
}

.hero-explore-text {
  font-family: var(--font);
  color: var(--text-dark);
  white-space: nowrap;
  font-size: .95rem;
  font-weight: 600;
}

.hero-dots {
  align-items: center;
  gap: 12px;
  margin-top: 2.5rem;
  margin-left: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.hero-dot {
  cursor: pointer;
  background: #ffffff73;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  padding: 0;
  transition: background .25s, transform .25s, width .25s;
}

.hero-dot:hover {
  background: #ffffffbf;
}

.hero-dot.active, .hero-dot.orange {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  border-radius: 5px;
  width: 28px;
  transform: none;
}

@media (max-width: 900px) {
  .hero {
    margin: 80px 60px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    margin: 60px 24px 0;
  }

  .hero-text {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .hero-explore {
    margin-top: 2rem;
    padding: 8px 18px 8px 14px;
  }

  .hero-dots {
    gap: 8px;
    margin-top: 1.5rem;
  }
}

/* [project]/src/app/Footer/Footer.css [app-client] (css) */
.footer {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  display: flex;
}

.right {
  gap: 2rem;
  display: flex;
}

/* [project]/src/app/impressum/Impressum.css [app-client] (css) */
.haus {
  justify-content: center;
  display: flex;
}

.impressum-container {
  max-width: 600px;
  line-height: 1.6;
  font-family: var(--font);
  margin: 80px auto 0;
}

.impressum-container h1 {
  text-align: center;
  margin-bottom: 20px;
}

.impressum-container p {
  margin-bottom: 15px;
}

/* [project]/src/app/HomePage.css [app-client] (css) */
:root {
  --green-dark: #3d7a65;
  --green-mid: #5a9e86;
  --green-light: #c4ddd5;
  --green-tint: #3d7a650f;
  --green-tint2: #5a9e860d;
  --text-dark: #1a1a1a;
  --text-mid: #3d3d3d;
  --text-muted: #7a7a7a;
  --bg-white: #fafaf8;
  --shadow-sm: 0 2px 24px #0000000d;
  --shadow-hover: 0 12px 36px #3d7a6524;
  --radius-card: 20px;
  --radius-pill: 50px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-section {
  background-color: var(--bg-white);
  padding: 6rem 1.5rem;
  position: relative;
}

.trust-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 100px;
}

.trust-content {
  border-radius: var(--radius-card);
  background-color: var(--bg-white);
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
}

.trust-title {
  color: var(--text-dark);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.trust-divider {
  background: linear-gradient(to right, var(--green-dark), var(--green-mid));
  border-radius: 2px;
  width: 6rem;
  height: .25rem;
  margin: 0 auto 2.5rem;
}

.trust-text {
  color: var(--text-mid);
  font-size: 1.125rem;
  line-height: 1.8;
  font-family: var(--font-display);
  text-align: justify;
  margin-bottom: 1.5rem;
}

.trust-features {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  display: grid;
}

.trust-feature {
  background: linear-gradient(135deg, var(--green-tint), var(--green-tint2));
  border-radius: 12px;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  transition: transform .3s;
  display: flex;
}

.trust-feature:hover {
  transform: translateY(-3px);
}

.trust-feature-icon {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  width: 2.5rem;
  height: 2.5rem;
  color: var(--bg-white);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  display: flex;
}

.trust-feature span {
  color: var(--text-dark);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-display);
}

.stats-section {
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 8rem 1.5rem;
  display: flex;
  position: relative;
}

.stats-container {
  width: 100%;
  max-width: 80rem;
  padding: 0 100px;
}

.stats-header {
  text-align: center;
  margin-bottom: 4rem;
}

.stats-title {
  color: var(--bg-white);
  font-size: 2.5rem;
  font-weight: 600;
  font-family: var(--font-display);
  margin-bottom: 1rem;
}

.stats-divider {
  background: linear-gradient(to right, var(--green-dark), var(--green-mid));
  border-radius: 2px;
  width: 6rem;
  height: .25rem;
  margin: 0 auto;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  display: grid;
}

.stat-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  padding: 2.5rem 2rem;
  transition: transform .3s, box-shadow .3s;
  position: relative;
}

.stat-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
}

.stat-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.stat-icon-wrapper {
  background: linear-gradient(135deg, var(--green-tint), var(--green-tint2));
  border-radius: 12px;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  transition: transform .3s;
}

.stat-card:hover .stat-icon-wrapper {
  transform: scale(1.1);
}

.stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--green-dark);
}

.stat-value {
  color: var(--text-dark);
  font-variant-numeric: tabular-nums;
  font-size: 3.5rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: .75rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 1.125rem;
  font-weight: 500;
  font-family: var(--font-display);
}

.stat-gradient {
  border-radius: var(--radius-card);
  pointer-events: none;
  background: none;
  transition: background .3s;
  position: absolute;
  inset: 0;
}

.stat-card:hover .stat-gradient {
  background: linear-gradient(to bottom right, #4a9e7f0a, #6db89a0a);
}

.stats-info {
  text-align: center;
  margin-top: 4rem;
}

.stats-badge {
  background-color: var(--bg-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  padding: 1rem 2.5rem;
  display: inline-block;
}

.stats-badge-text {
  color: var(--text-muted);
  font-size: .95rem;
  font-family: var(--font-display);
  margin: 0;
}

.stats-badge-highlight {
  color: var(--green-dark);
  font-weight: 600;
}

@media (max-width: 1200px) {
  .trust-container, .stats-container {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .trust-container, .stats-container {
    padding: 0 20px;
  }

  .trust-content {
    padding: 2rem 1.5rem;
  }

  .trust-title, .stats-title {
    font-size: 2rem;
  }

  .trust-text {
    text-align: left;
    font-size: 1rem;
  }

  .trust-features, .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-value {
    font-size: 3rem;
  }

  .stats-section {
    padding: 4rem 1.5rem;
  }
}

/*# sourceMappingURL=src_051rrwq._.css.map*/