@charset "UTF-8";
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-latin-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-latin-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-latin-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-latin-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --color-primary: #2d318a;
  --color-primary-dark: #1f236f;
  --color-primary-light: #2c5282;
  --color-secondary: #f8af28;
  --color-secondary-dark: #f6a000;
  --color-accent: #38a169;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-text-dark: #1a202c;
  --color-bg: #fef9f3;
  --color-bg-light: #f7fafc;
  --color-bg-dark: #1a202c;
  --color-border: #e2e8f0;
  --color-success: #48bb78;
  --color-error: #e50c20;
  --font-family: Inter, system-ui, -apple-system, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --container-max: 1200px;
  --container-padding: 1.5rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2d3748;
  background-color: #fef9f3;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #2d318a;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #f8af28;
}

.a-secondary {
  color: #f8af28;
  text-decoration: none;
  transition: color 0.2s ease;
}
.a-secondary:hover {
  color: #2d318a;
}

ul,
ol {
  list-style: none;
}

address {
  font-style: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}
.section--light {
  background: #f7fafc;
}
.section--dark {
  background: #1a202c;
  color: white;
}
.section--dark .section__title {
  color: white;
}
.section--dark .section__intro {
  color: rgba(255, 255, 255, 0.8);
}
.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8af28;
  margin-bottom: 0.5rem;
}
.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #1a202c;
}
.section__intro {
  font-size: 1.125rem;
  color: #718096;
  max-width: 700px;
  margin-bottom: 3rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fef9f3;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2d318a;
}
.nav img {
  max-width: 100%;
  max-height: 8vh;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.nav__logo-icon {
  font-size: 1.5rem;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .nav__menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fef9f3;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav__menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.nav__link {
  font-weight: 500;
  color: #2d3748;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.nav__link:hover, .nav__link.active {
  color: #2d318a;
  background: #f7fafc;
}
.nav__link--cta {
  background: #2d318a;
  color: white !important;
}
.nav__link--cta:hover {
  background: #1f236f;
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 767px) {
  .nav__toggle {
    display: flex;
  }
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2d3748;
  transition: all 0.3s ease;
}
.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn--primary {
  background: #2d318a;
  color: white;
  border-color: #2d318a;
}
.btn--primary:hover {
  background: #1f236f;
  border-color: #1f236f;
  color: white;
}
.btn--outline {
  background: transparent;
  color: #2d318a;
  border-color: #2d318a;
}
.btn--outline:hover {
  background: #2d318a;
  color: white;
}
.btn--secondary {
  background: #f8af28;
  color: white;
  border-color: #f8af28;
}
.btn--secondary:hover {
  background: #f6a000;
  border-color: #f6a000;
  color: white;
}

.alert {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.alert--success {
  background: #f0fff4;
  color: #38a169;
}
.alert--success p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.alert--error {
  background: #fff5f5;
  color: #e50c20;
}
.alert--error p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.alert--warning {
  background: #fffaf0;
  color: #f6a000;
}
.alert--warning p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.value-card {
  padding: 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}
.value-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.value-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d318a;
}
.value-card p {
  color: #2d3748;
  line-height: 1.7;
}

.partner {
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  color: #2d3748;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}
.partner:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.testimonial {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonial p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial cite {
  display: block;
  font-style: normal;
}
.testimonial cite strong {
  display: block;
  font-weight: 600;
  color: #f8af28;
}
.testimonial cite span {
  font-size: 0.875rem;
  opacity: 0.8;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 599px) {
  .form__grid {
    grid-template-columns: 1fr;
  }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form__group--full {
  margin-bottom: 1.5rem;
}
.form__group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1a202c;
}
.form__group input,
.form__group textarea {
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s ease;
}
.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: #2d318a;
  box-shadow: 0 0 0 3px rgba(45, 49, 138, 0.1);
}
.form__group textarea {
  min-height: 150px;
  resize: vertical;
}

.form__error {
  color: #e50c20;
  font-size: 0.875rem;
}

.form__actions {
  text-align: center;
}
.form__actions .btn {
  min-width: 200px;
}

.form__privacy {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: #718096;
}
.form__privacy a {
  color: #2d318a;
  text-decoration: underline;
}

.footer {
  background: #1a202c;
  color: white;
  padding: 4rem 0 2rem;
}
.footer .footer-logo {
  filter: brightness(0) invert(1);
}
.footer h3,
.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}
.footer__address {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.footer__contact a, .footer__links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}
.footer__contact a:hover, .footer__links a:hover {
  color: #f8af28;
}
.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}
.footer img {
  width: 100%;
  height: auto;
}

.hero {
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  padding: 4rem 0;
  min-height: 85vh;
}
.hero__content {
  max-width: 800px;
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.hero__tagline {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}
.hero__quote {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding: 1.5rem;
  background: #2d318a;
  border-radius: 12px;
  border-left: 4px solid #f8af28;
}
.hero__author {
  font-style: italic;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

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

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

.certificates {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Space between images */
}

.certificate-wrapper {
  width: calc(50% - 10px); /* Two images per row */
  height: auto; /* Set a fixed height */
  overflow: hidden; /* Hide overflow */
  border: 2px solid #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f8; /* Optional background color */
  cursor: pointer; /* Change cursor to pointer */
}

.certificate-image {
  width: 100%;
  height: auto;
  max-height: 100%; /* Maintain aspect ratio */
  transition: transform 0.3s;
}

.certificate-image:hover {
  transform: scale(1.05);
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  max-width: min(80%, 700px);
  max-height: 70vh;
  height: auto;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.sonderangebot {
  padding: clamp(2rem, 4vw, 4rem) 0;
  background: #f7f7f7;
}
.sonderangebot__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-items: center;
  text-align: center;
}
.sonderangebot__header {
  width: 100%;
  display: grid;
  justify-items: center;
}
.sonderangebot__image {
  width: min(900px, 100%);
  display: flex;
  justify-content: center;
}
.sonderangebot__image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}
.sonderangebot__cta {
  display: grid;
  gap: 1rem;
  justify-items: center;
}
.sonderangebot__cta-text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 1.5;
  color: #1f1f1f;
}
@media (max-width: 768px) {
  .sonderangebot__container {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .clients-slider {
  padding: 2rem 0;
}
.clients .client-item {
  padding: 3rem;
  text-align: center;
  background-color: #ffffff;
  border-radius: 12px;
  max-height: 175px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.clients .client-item img {
  max-width: 100%;
  height: 160px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0.7;
  -o-object-fit: contain;
     object-fit: contain;
}
.clients .client-item:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.clients .client-item:hover img {
  transform: scale(1.1);
  opacity: 1;
}
.clients .swiper-wrapper {
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media (max-width: 992px) {
  .clients .client-item {
    height: 160px;
    padding: 2rem;
  }
  .clients .client-item img {
    max-height: 140px;
  }
}
@media (max-width: 576px) {
  .clients .client-item {
    height: 100px;
    padding: 1rem 0.5rem;
  }
  .clients .client-item img {
    max-height: 85px;
  }
}

.gallery-container {
  padding: 2rem;
  background: #f9f9f9;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.gallery-image {
  width: 100%;
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.page-header {
  background: #2d318a;
  color: white;
  padding: 4rem 0;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
}

.about-image__img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}
.about-image__img:hover {
  transform: scale(1.05);
}

.prose {
  max-width: 800px;
}
.prose p {
  margin-bottom: 1.5rem;
}
.prose .lead {
  font-size: 1.25rem;
  color: #718096;
}
.prose h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #2d318a;
}
.prose h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #1a202c;
}
.prose h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.prose ul,
.prose ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.prose ul {
  list-style: disc;
}
.prose ol {
  list-style: decimal;
}
.prose li {
  margin-bottom: 0.5rem;
}
.prose address {
  padding: 1.5rem;
  background: #f7fafc;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.legal h2:first-of-type {
  margin-top: 0;
}

.rules-list {
  list-style: none !important;
  padding-left: 0 !important;
}
.rules-list li {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.rule--bad {
  background: #fff5f5;
  border-left: 3px solid #e50c20;
}
.rule--bad::before {
  content: "❌ ";
}
.rule--good {
  background: #f0fff4;
  border-left: 3px solid #48bb78;
}
.rule--good::before {
  content: "✅ ";
}

.highlight-box {
  background: linear-gradient(135deg, #2d318a 0%, #2c5282 100%);
  color: white;
  padding: 3rem;
  border-radius: 12px;
  margin: 3rem 0;
}
.highlight-box h2 {
  color: white;
  margin-top: 0;
}
.highlight-box ul {
  list-style: none;
  padding-left: 0;
}
.highlight-box li {
  padding: 0.5rem 0;
}

.tip-box {
  background: #fffaf0;
  border: 1px solid #f8af28;
  border-radius: 12px;
  padding: 2rem;
  margin: 3rem 0;
}
.tip-box h3 {
  color: #f6a000;
  margin-top: 0;
}

.important-note {
  background: #f7fafc;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #2d318a;
}

.cta-box {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 3rem;
}
.cta-box h3 {
  margin-top: 0;
  color: #2d318a;
}/*# sourceMappingURL=app.css.map */