/* #region template Styles */
/* #region General Styles */
@view-transition {
  navigation: auto;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary-color: #005f73;
  --secondary-color: #0a9396;
  --accent-color: #94d2bd;
  --text-color: #333;
  --bg-color: #f8f9fa;
  --hover-color: #fb0303;
  --white: #fff;
  --plasmablue: #00447f;
  --faq: hsla(208, 100%, 25%, 0.20);
  --active-color: #000;
}
@font-face {
    font-family: 'Michroma';
    font-display: swap;
    src: url('michroma/Michroma-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* Inter - Body Font */
@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: url('inter/Inter-VariableFont_slnt,wght.ttf') format('truetype');
    /* Note: If you have separate files for Bold/Light, you'd add more @font-face rules */
    font-weight: 100 900; 
    font-style: normal;
}
html {
  height: 100svh;
  font-family: system-ui, sans-serif;
  line-height: 1.8rem;
  scroll-behavior: smooth;
  scroll-padding-top: 220px;
  scrollbar-gutter: stable;
}

body {
  min-height: 100svh;
  min-width: 100%;
   max-width: 100vw;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: auto 1fr;
  font-family: 'Inter', sans-serif;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
  color: #000;
}
html, * {
  box-sizing: border-box; /* Essential so padding doesn't add to width */
}
img,
picture,
video {
  max-width: 100%;
  display: block;
  height: auto;
  max-height: 100%;
  font-style: italic;
}

h1,
h2,
h3 {
  color: var(--plasmablue);
  margin: 0;
  font-family: 'Michroma', sans-serif;
 
  
}
h1 {
    font-family: 'Michroma', sans-serif;
    letter-spacing: 0.15em; 
    font-weight: 600;
}
h2 {
    font-family: 'Michroma', sans-serif;
    letter-spacing: 0.1em; 
    font-weight: 400;
}
h3{
  line-height: 1.4rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.15rem;
}
a:hover {
  color: var(--hover-color);
}

/* Wrapper takes available space to push footer down */
.wrapper {
  display: flex;
  grid-row: 1 / 2;
  grid-column: 1 / 3;
  flex-direction: column;
  width: 100%;
  background-color: var(--white);
  margin-inline: auto;
}
/* #endregion General Styles */
/* #MARK:sticky */
/* #region:Sticky Header */
.fixed-header {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logobox {
  margin: 1rem;
}
.gennav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}
@media screen and (min-width: 1400px) {
  .gennav {
    flex-direction: row;
    gap: 2rem;
  }
}
.lang-icon {
  width: 24px;
  height: 24px;
  max-width: none;
  max-height: none;
  margin: auto;
}
.intdropdown {
  position: relative;
  display: inline-block;
}
.dropbtn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

.dropdown-content a {
  color: var(--text-color);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.international-dropdown:hover .dropdown-content {
  display: block;
}
.intdropdown-content {
  display: none;
  position: absolute;
  background-color: var(--plasmablue);
  padding: 1rem;
  line-height: 2rem;
  border-radius: 10px;
  min-width: 10rem;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.intdropdown-content a {
  color: white;
}
.intdropdown:hover .intdropdown-content {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding-left: 1rem;
}
.intdropdown:hover,
.sub-menu {
  background-color: #fff;
}
/* #region:navigation */
/* #MARK:Navigation */
.main-nav {
  display: flex;
  justify-content: flex-end;
  width: fit-content;
  background-color: white;
  padding: 0.5rem 1rem;
  margin: auto;
  border-radius: 5px;
}

.nav-holder {
  display: flex;
  align-items: center;
}

/* Mobile Menu Triggers */
#sidebar-active {
  display: none;
}

.open-sidebar-button {
  display: block;
  cursor: pointer;
  padding-right: 0.5rem;
}

.open-sidebar-button svg {
  fill: var(--plasmablue);
}

.close-sidebar-button svg {
  fill: var(--plasmablue);
}

/* Mobile Sidebar Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  display: none;
}
#sidebar-active:checked ~ #overlay {
  display: block;
}

/* Mobile Links Container (Sidebar) */
.links-container {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 280px;
  background-color: var(--white);
  z-index: 1050;
  padding: 2rem;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

#sidebar-active:checked ~ .links-container {
  right: 0;
}

.close-sidebar-button {
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 2rem;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-list a {
  text-decoration: none;
  color: var(--plasmablue);
  font-weight: 600;
  transition: color 0.2s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-list a:hover {
  color: var(--hover-color);
}

/* Sub-menus (Mobile Stack) */
.sub-menu {
  display: none;
  list-style: none;
  padding-left: 1rem;
  margin-top: 0.5rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.sub-menu li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Simple Interaction for Mobile Sub-menus */
.nav-list li.is-open > .sub-menu {
  display: block;
}

/* Desktop Navigation */
@media (min-width: 1350px) {
  .open-sidebar-button,
  .close-sidebar-button,
  #overlay {
    display: none;
  }

  .links-container {
    position: static;
    height: auto;
    width: auto;
    background-color: transparent;
    padding: 0;
    display: block;
    overflow: visible;
  }

  .nav-list {
    flex-direction: row;
    gap: 2rem;
    align-items: center;
  }

  .nav-list > li {
    position: relative;
  }

  .nav-list a {
    font-size: 1rem;
  }

  .sub-menu li {
    position: relative;
  }

  /* Desktop Sub-menus (Dropdowns) */
  .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 220px;
    padding: 0.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 5px 5px;
    margin-top: 0;
  }

  .sub-menu a {
    color: var(--text-color);
    padding: 0.75rem 1.5rem;
  }

  .sub-menu a:hover {
    background-color: var(--bg-color);
    color: var(--hover-color);
  }

  /* Nested Sub-menus */
  .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    border-radius: 5px;
    margin-left: 0px;
  }
  .arrowicon {
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s;
  }
.nav-list li:hover > a > .arrowicon,
  .nav-list li.is-open > a > .arrowicon {
    transform: rotate(90deg);
  }

.nav-list li:hover > .sub-menu,
  .nav-list li.is-open > .sub-menu {
    display: block;
  }

  /* Position submenu for the last nav item to open to the left */
  .nav-list > li:last-child > .sub-menu {
    left: auto;
    right: 0;
  }

  /* Position nested submenus of the last nav item to also open to the left */
  .nav-list > li:last-child .sub-menu .sub-menu {
    left: auto;
    right: 100%;
  }
}
/* #endregion:navigation */
/* #endregion:Sticky Header */
/* #MARK:Footer */
/* #region:Footer */
.footer {
  background-color: var(--plasmablue);
  color: var(--white);
  padding: 2rem 4rem; /* More padding on sides for desktop */
  display: flex;
  grid-row: 2 / 3;
  grid-column: 1 / 3;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.footer a:hover {
  text-decoration: underline;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap; /* In case of many links */
}

.social-media {
  display: flex;
  gap: 1rem;
  background-color: white;
  padding: 0.5em;
  border-radius: 20px;
}

.social-link {
  width: 32px;
  height: 32px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.2s ease;
}
.social-link {
  cursor: pointer;
  width: 100px;
  height: 100px;
}
.facebook,
.instagram,
.youtube {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  border-radius: 50%;
  margin-inline: 2rem;
}
.facebook {
  background-image: url("../assets/icons/fb_gs100.webp");
}
.facebook:focus,
.facebook:hover {
  background-image: url("../assets/icons/fb_100.webp");
}
.instagram {
  background-image: url("../assets/icons/gsinst.webp");
}
.instagram:focus,
.instagram:hover {
  background-image: url("../assets/icons/inst.webp");
}
.youtube {
  background-image: url("../assets/icons/YouTube_100gs.webp");
  background-repeat: no-repeat;
}
.youtube:focus,
.youtube:hover {
  background-image: url("../assets/icons/YouTube_100.webp");
}
.footer__text {
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer__text p {
  margin: 0;
}

/* Responsive adjustments for the footer */
@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }

  .footer__links {
    order: 2;
    margin-top: 1rem;
  }

  .social-media {
    order: 1;
  }

  .footer__text {
    order: 3;
    margin-top: 1rem;
  }
}
/* #endregion:Footer */

/* #MARK: utilities */
.bb {
  border: 1px solid blue;
}
.br {
  border: 1px solid red;
}
.space2 {
  margin-bottom: 2rem;
}
.space1 {
  margin-bottom: 1rem;
}
.text80 {
  max-width: 80ch;
  width: fit-content;
  max-width: min(80ch, 100%);
  width: 100%;
  margin-inline: auto;
  display: block;
}
.text80w {
  width: 80ch;
  max-width: 98%;
  width: 100%;
  margin-inline: auto;
  max-width: min(80ch, 98%);
  padding-bottom: 1rem;
}

.centerit {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*######### links ############# */
.internlinks {
  color: var(--plasmablue);
}
.internlinks::before {
  content: url("../assets/icons/link.gif");
  margin-right: 5px;
  pointer-events: none; /* Verhindert, dass das Pseudoelement Hover-Ereignisse blockiert */
}

.internlinks:hover {
  text-decoration: underline;
}

/* #endregion template Styles */

/* #region content Styles */
  h1 {
    font-size: 1.8rem;
  }
  /* Hero Section */

  .hero-section {
  background-color: white;
  min-width: 100%;
}
.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 98%;
  margin-inline: auto;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  max-width: 700px;
  text-align: center;
}
.hero-image {
  min-width: 300px;
  max-width: 700px;
}
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
@media screen and (min-width: 1024px) {
.hero-text{
  text-align: left;
}
 .hero-actions {
  flex-direction: row;
 }
}
/* #MARK: content */
.main-wrapper {
  max-width: 98%;
  width: 1600px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
  color: #333;
}
.breadcrumbs {
  display: block;
  justify-content: flex-start;
  gap: 1rem;
  margin-left: 2rem;
  font-size: 0.8rem;
  min-width: 100%;
  margin-top: 20px;
  max-height: 1.5rem;
}
.breadcrumbs a:not(:first-child)::before,
.breadcrumbs p:not(:first-child)::before {
  content: " >> ";
}
.breadcrumbs p {
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 400;
  display: inline;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin: 60px 0;
  align-items: center;

}
.info-grid-card {
  display: grid;
  height: 100%;
  grid-template-columns: 1fr;
  /* Removed the comma and fixed the distribution */
  grid-template-rows: 150px 1fr; 
  border-radius: 5%;
  border: 2px solid var(--plasmablue);
  background-color: var(--lightgrey);
  padding: 1rem;
}
.info-grid-card-image{
  grid-row: 1 / 2;
  max-width: 100%;
  height: 150px;
  object-fit: cover;
   border-radius: 20%;
   justify-self: center;
  }
.info-grid-card-text {
  grid-row: 2 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Aligns content to the top */
  align-items: center;        /* Keeps text centered horizontally */
  text-align: center;         /* Centers the lines of text */
  margin-top: 1rem;           /* Spacing between image and text */
}
.info-grid a{
  text-decoration: none;
}
.mitarbeiter{
  border-radius: 5%;
  display: block; 
  margin-inline:auto;

}
/* reused blocks */
/* Video Card Styling */
.video-card {
    background: var(--plasmablue);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    max-width: 500px;
    margin-inline: auto;
}

.video-card h2, .video-card h3 {
    color: white;
}

.video-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #ccc;
}
/* feature cards */
.feature-card {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border: 1px solid var(--plasmablue);
}
.feature-card img {
  display: block;       /* Removes extra bottom space and treats it as a block */
  margin-left: auto;    /* Pushes from the left */
  margin-right: auto;   /* Pushes from the right, centering it */
  max-width: 100%;      /* Ensures the image never overflows the card */
  height: auto;         /* Maintains aspect ratio */
  margin-bottom: 15px;  /* Optional: adds space between image and text */
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-card img {
  max-width: 100%;
  height: 200;
  max-height: 200px;
  border-radius: 5%;
  margin-bottom: 15px;
  object-fit: cover;
}
/* Comparison Table */
.table-container {
  margin: 2rem auto;
  max-width: 100%;
  overflow-x: auto;
  background-color: #f8f9fa;
}

.pt-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  min-width: 600px;
}

.pt-table th {
  color: var(--plasmablue);
  padding: 1rem;
  border-bottom: 3px solid var(--plasmablue);
  font-weight: 700;
}

.pt-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--lightgrey);
}

.pt-table {
  min-width: auto;
  table-layout: auto;
}
.pt-table th,
.pt-table td {
  padding: 0.5rem;
  overflow-wrap: break-word;
  hyphens: auto;
}
/* comparison table */
  .comparison-section { background: #f4f7f9; padding: 2rem; border-radius: 12px; margin: 3rem 0; }
        .method-table { width: 100%; border-collapse: collapse; background: white; }
        .method-table th, .method-table td { padding: 1rem; border: 1px solid #ddd; text-align: left; }
        .method-table th { background: var(--plasmablue); color: white; }
        .highlight-box { border: 2px dashed var(--plasmablue); padding: 1.5rem; background: #eef6ff; border-radius: 8px; }

        /* Success Checklist */
.success-checklist {
  max-width: 98%;
  margin-inline: auto;
  background-color: #ffffff;
  border: 2px solid var(--plasmablue);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.checklist-items li {
  padding: 0.8rem 0 0.8rem 35px;
  position: relative;
  border-bottom: 1px solid #f9f9f9;
    list-style-type: none;
}

.checklist-items li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  background: #eaffed;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

}
.success-checklist {
  padding: 1rem;
  width: 100%;
}
.checklist-items li {
  overflow-wrap: break-word;
}
.objective-card {
    background: white;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--plasmablue);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.objective-card:hover {
    transform: translateX(10px);
}
/* Base styles for mobile/tablets */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
.product-grid-special{
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 0;
}
/* Limit to 3 columns on desktop (screens wider than 1024px) */
@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .product-grid-special{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}
}

.product-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}
.product-card img{
  margin:0 auto 1rem auto;
}

.highlight-red { color: #e31e24; font-weight: bold; }
.highlight-blue { color: #0054a6; font-weight: bold; }
/* #MARK:FAQ styling   */
.faqdropdown {
  display: flex;
  position: sticky;
  margin-left: 0.5rem;
  width: fit-content;
  padding: 1rem;
  border-radius: 1rem;
  z-index: 1000;
}
.faqdropbtn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0.5rem;
  display: flex;
  align-items: center;
  border: thin solid var(--plasmablue);
  border-radius: 1rem;
}

.sidefaqbutton {
  border: none;
}

.faqdropdown-content {
  display: none;
  position: absolute;
  left: -30%;
  background-color: #fff;
  border: 3px solid var(--plasmablue);
  border-radius: 10px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.faqdropdown:hover .faqdropdown-content {
  display: flex;
  flex-direction: column;
  margin-left: 3rem;
  min-width: 60ch;
  line-height: 2rem;
  padding-left: 2rem;
}
.faq-display-grid {
  background-color: var(--faq);
  padding: 1rem;
}
  .faq-item-card {
    padding: 40px;
    margin-bottom: 30px;
    background: white;
    border-radius: 1rem;
    border-bottom: 1px solid #eee; /* Subtle separation */
}

.faq-item-card h2, .faq-item-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--plasmablue);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 2rem;
}
@media screen and (max-width: 600px) {
  .faqdropdown:hover .faqdropdown-content{
    left: -30%;
    min-width: 40ch;
    max-width: 90vw;
   
  }
}
.faqdropdown-content a {
  color: var(--text-color);
  padding: 0.5rem 1rem;
  font-weight: 600;
}
.underline {
  border-bottom: solid 2px var(--plasmablue);
}
.return-top {
  display: flex;
  flex-direction: column-reverse;
  z-index: 25;
  padding: 0.5rem;
  position: fixed;
  top: 70%;
  background-color: #f5f5f5;
  border: solid 1px var(--plasmablue);
  border-radius: 0 1rem 1rem 0;
}
/* #MARK: utilities */
.bb {
  border: 1px solid blue;
}
.br {
  border: 1px solid red;
}
.border-right{
  border-right: 1px solid black;
  padding-right: 1rem;
}
.border-left{
  border-left: 1px solid black;
  padding-right: 1rem;
}
.plasmablue {
  color: var(--plasmablue);
}
.space2 {
  margin-bottom: 2rem;
}
.space1 {
  margin-bottom: 1rem;
}
.text80 { 
  display: block;
  width: fit-content;
  max-width: 80ch;
  margin-inline: auto;
  text-align: left; 
/* Ensures text stays left-aligned inside the centered box */
}
.text80w {
 display: block; /* Ensure it's a block */
  width: fit-content;
  max-width: 80ch;
  margin-inline: auto;
  text-align: left;
}
.textwide { 
  display: gridinline-block; /* Or display: table; */
  max-width: 1600px;
  width: fit-content;
  margin-inline: auto;
  text-align: left; 
}
.button {
  display: inline-flex; /* Better for centering content */
  align-items: center;
  justify-content: center;
  padding: 0.8em 3rem;
  margin: 1rem;
  background-color: var(--plasmablue);
  color: var(--white) !important;
  border-radius: 20px;
  border: 3px solid var(--plasmablue);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.9s ease;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

.button:hover {
  background-color: var(--faq);
  transform: translateY(-2px);
  box-shadow: none;
  color: var(--plasmablue) !important;
}
.centerit {
  display: flex;
  justify-content: center;
  align-items: center;
}
/*######### links ############# */
.internlinks {
  color: var(--plasmablue);
}
.internlinks::before {
  content: url("../assets/icons/link.gif");
  margin-right: 5px;
  pointer-events: none; /* Verhindert, dass das Pseudoelement Hover-Ereignisse blockiert */
}
.internlinks:hover {
  text-decoration: underline;
}

/* #endregion content Styles */

