.material-symbols-rounded {
    --rz-icon-font-family: 'Material Symbols Rounded';
    
    font-family: 'Material Symbols Rounded', serif;
    font-weight: 300;
    font-style: normal;
    font-size: 1.4em;
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
    font-variation-settings: "FILL" 0, "GRAD" 0, "opsz" 40;
}




/* ========== Base / Reset ========== */
@font-face {
  font-family: "InterDisplay";
  src: url("assets/font/Inter/web/InterDisplay-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

html{ scroll-padding-top: var(--safe-top); }
main{
  padding-top: var(--safe-top);
}


body {
  font-family: "InterDisplay", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}



/* ========== CSS Custom Properties ========== */
:root {
  --header-h: 72px;
  --site-nav-h: 44px;          /* zweite Leiste */
  --safe-top: calc(var(--header-h) + var(--site-nav-h));
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --radius: 999px;
  --fg: #111;
  --muted: #666;
  --line: #e7e7e7;

  --text-neutral-primary: #1A1A1A;
  --type-font-family-display: "InterDisplay";
  --text-heading: #1A1A1A;

  --heading-size-h1: 60px;
  --heading-size-h2: 48px;
  --heading-size-h5: 24px;
  --heading-line-height-h1: 72px; /* 120% */
  --heading-line-height-h2: 56px; /* ~117% */
  --heading-line-height-h5: 28px; /* ~117% */

  --body-size-m: 16px;
  --body-line-height-m: 20px; /* 125% */
}

/* ========== Typo Utilities ========== */
.headingH1 {
  font-family: var(--type-font-family-display);
  font-size: var(--heading-size-h1);
  font-style: normal;
  font-weight: 600;
  line-height: var(--heading-line-height-h1);
  margin: 0;
}

.headingH2 {
  color: var(--text-heading);
  text-align: center;
  margin: 0;
  font-family: var(--type-font-family-display);
  font-size: var(--heading-size-h2);
  font-style: normal;
  font-weight: 600;
  line-height: var(--heading-line-height-h2);
}

.headingH5 {
  color: var(--text-heading);
  font-family: var(--type-font-family-display);
  font-size: var(--heading-size-h5);
  font-style: normal;
  font-weight: 600;
  line-height: var(--heading-line-height-h5);
  margin: 0;
}

/* ========== Header ========== */
.site-header {
  background: #fff;
  color: var(--fg);
  padding: 0 32px 0 60px;
  /* Falls Header nicht sticky sein soll einfach die nächsten 3 Zeilen ausblenden */
  position: fixed;
  width: 100vw;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Optional für Kontrast */
}


.header-top {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0 20px;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: inherit;
}
.brand__logo {
  width: 100px;
  display: inline-block;
}
.brand__name {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}
.action {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: inherit;
  text-decoration: none;
}
.action--login span {
  font-size: .95rem;
}
.action:hover {
  opacity: .85;
}

/* ========== Navigation ========== */
.site-nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 44px;
  position: relative;
  border-bottom: 2px solid var(--line);
  padding: 0 0 4px 0;
  width: fit-content;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-neutral-primary);
  text-decoration: none;
  padding: .25rem 0;
  border-bottom: 2px solid transparent;

  font-size: var(--body-size-m);
  font-style: normal;
  font-weight: 600;
  line-height: var(--body-line-height-m);
}
.site-nav__link:hover {
  border-bottom-color: #bbb;
}
.site-nav__link.is-active {
  border-bottom-color: #111;
}

/* ========== Start / Video Section ========== */
.startInfoBannerElementVideo {
  display: flex;
  margin: 20px 36px 20px 36px;
  height: 720px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  position: relative;
  overflow: hidden; /* fallback */
  background: linear-gradient(180deg, rgba(72, 72, 72, 0) 10%, rgba(72, 72, 72, 0.75) 82.21%);
  background-blend-mode: darken;
  border-radius: 40px;
  overflow: clip; /* if supported */
}
.startInfoBannerElementVideo .visual-container {
  position: absolute;
  inset: 0;
  z-index: -1; /* Video hinter den Text */
  border-radius: 40px;
}
#videoMultiworkCloud {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
}
.MultiworkCloudStart {
  display: flex;
  width: 795px;
  padding: 0 48px 48px 48px;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.MultiworkCloudLogoStart {
  fill: #fff;
  width: 245px;
  height: 85px;
  aspect-ratio: 49 / 17;
}
.MultiworkCloudDescriptionStart {
  align-self: stretch;
  color: #fff;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* ========== Projektmanagement ========== */
.projectManagement {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.projectManagement_first {
  display: flex;
  height: 720px;
  padding: 20px 0 0 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 52px;
  align-self: stretch;
  background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
  overflow: hidden; /* fallback */
  overflow: clip;  /* if supported */
}
.projectManagement_first_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 144px;
}
.projectManagement_first_heading p {
  color: var(--text-heading);
  text-align: center;
  font-size: var(--heading-size-h1);
  font-style: normal;
  font-weight: 600;
  line-height: var(--heading-line-height-h1);
}

.projectManagement_first_image {
  display: flex;
  height: 924.31px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  aspect-ratio: 452 / 924.31;
}
.projectManagement_first_image img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.projectManagement_second {
  padding-block: 64px 58px;
  background: #fff;
  width: 100vw;
}
.projectManagement_second__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  margin-bottom: 24px;
}

/* --- Carousel --- */
.carousel {
  position: relative;
  display: flex;
  padding: 0 128px;
  align-items: flex-start;
  gap: 128px;
  overflow: hidden;
  touch-action: none;
  
}

.task-steps {
  overscroll-behavior-x: contain; /* blockt Scrollweitergabe */
  user-select: none;              /* verhindert Textauswahl beim Swipen */
  display: flex;
  gap: 128px;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(0);
  transition: transform 0.4s ease;
  touch-action: none;
  pointer-events: none;
  justify-content: flex-start;
}

/* Einzelnes Slide */
.task-step {
  flex: 0 0 auto;
  width: clamp(240px, 25vw, 280px);
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: start;
}

.task-step__figure {
  margin: 0;
}
.task-step__figure img {
  width: 100%;
  height: auto;
  display: block;
}

.task-step__caption {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.4;
  text-align: left;
}

/* Carousel Buttons */
.carousel-controls {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  width: 100vw;
}
.carousel-btn {
  background: transparent;
  border: none;
  padding: 16px;
  cursor: pointer;
  opacity: .8;
}
.carousel-btn[disabled] {
  opacity: .3;
  cursor: default;
}

/* Nummerierung */
.numbering {
  display: flex;
  width: 24px;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: #1A1A1A;
  color: #fff;
}

/* ========== Scan Tag ========== */
.scanTag {
  display: flex;
  padding: 112px 158px;
  align-items: center;
  gap: 148px;
}
.scanTagText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  flex: 1 0 0;
}
.scanTagRectangle {
  width: 230px;
  height: 230px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.scanTagRectangle object{
  width: 70%;
  height: 70%;
}

/* ========== Alleinarbeit / InfoBox ========== */
.infoBox {
  display: flex;
  height: 720px;
  padding: 0 146px;
  align-items: center;
  gap: 144px;
  background: #f2f2f2;
}
.infoBoxPhone {
  display: flex;
  width: 227px;
  height: 465px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  aspect-ratio: 227 / 465;
}
.infoBoxPhone img {
  width: 100%;
  height: 100%;
}
.infoBoxText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  flex: 1 0 0;
}
#winterService {
  background: #fff;
}

/* ========== Fahrtenbuch ========== */
.logbook {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  /* background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%); */
}

.logbook_first {
  display: flex;
  height: 720px;
  padding: 20px 0 0 0;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 52px;
  align-self: stretch;
  background: linear-gradient(180deg, #fff 0%, #f2f2f2 100%);
  overflow: hidden; /* fallback */
  overflow: clip;  /* if supported */
}
.logbook_first_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 144px;
}
.logbook_first_heading p {
  color: var(--text-heading);
  text-align: center;
  font-size: var(--heading-size-h1);
  font-style: normal;
  font-weight: 600;
  line-height: var(--heading-line-height-h1);
}

.logbook_first_image {
  display: flex;
  height: 924.31px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  aspect-ratio: 452 / 924.31;
}
.logbook_first_image img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.logbook_slide {
  padding-block: 64px 58px;
  background: #fff;
  width: 100vw;
}
.logbook_slide__title {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  margin-bottom: 24px;
}

/* ========== Media Queries ========== */
/* Kleinere Screens */
@media (max-width: 900px) {
  .header-top { gap: var(--space-2); }
  .action--login span { display: none; }
}

@media (max-width: 640px) {
  .site-nav__inner { gap: 1rem; overflow: auto; }
}

/* ========= Tablet bis kleine Laptops ========= */
@media (min-width: 768px) and (max-width: 1200px) {
  /* Headings etwas kompakter */
  .headingH1 {
    font-size: 44px;
    line-height: 56px;
  }
  .headingH2 {
    font-size: 32px;
    line-height: 40px;
  }
  .headingH5 {
    font-size: 20px;
    line-height: 26px;
  }

  /* Start / Video */
  .startInfoBannerElementVideo {
    height: 600px;
    margin: 20px;
    border-radius: 32px;
  }
  .startInfoBannerElementVideo .visual-container,
  #videoMultiworkCloud {
    border-radius: 32px;
  }
  .MultiworkCloudStart {
    width: 680px;
    padding: 0 32px 36px 36px;
    gap: 8px;
  }
  .MultiworkCloudLogoStart {
    width: 200px;
    height: auto;
  }
  .MultiworkCloudDescriptionStart {
    font-size: 24px;
  }

  /* Projektmanagement – Hero */
  .projectManagement_first {
    height: 560px;
    gap: 32px;
    padding-top: 16px;
  }
  .projectManagement_first_heading {
    width: auto;
  }
  .projectManagement_first_heading p {
    font-size: 44px;
    line-height: 56px;
  }
  .projectManagement_first_image {
    height: 700px;
    aspect-ratio: 452 / 700;
  }

  /* Projektmanagement – Carousel enger */
  .projectManagement_second {
    padding-block: 48px 44px;
  }
  .projectManagement_second__title {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 18px;
  }
  .carousel {
    padding: 0 48px;
    gap: 32px;
  }
  .task-steps {
    gap: 32px;
  }
  .task-step {
    width: clamp(220px, 28vw, 260px);
  }
  .task-step__caption {
    font-size: 14px;
  }

  /* Scan Tag kompakter */
  .scanTag {
    padding: 64px 96px;
    gap: 72px;
  }
  .scanTagRectangle {
    width: 180px;
    height: 180px;
  }

  /* InfoBox kompakter */
  .infoBox {
    height: 620px;
    padding: 0 64px;
    gap: 64px;
  }
  .infoBoxPhone {
    width: 200px;
    height: 410px;
  }

  /* Fahrtenbuch */
  .logbook_first {
    height: 560px;
    gap: 32px;
    padding-top: 16px;
  }
  .logbook_first_heading p {
    font-size: 44px;
    line-height: 56px;
  }
  .logbook_first_image {
    height: 700px;
    aspect-ratio: 452 / 700;
  }
  .logbook_slide {
    padding-block: 48px 44px;
  }
  .logbook_slide__title {
    font-size: clamp(18px, 2vw, 24px);
    margin-bottom: 18px;
  }

  /* Buttons im Carousel minimal kleiner Padding */
  .carousel-btn {
    padding: 12px;
  }
}

/* === Burger Button === */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1001;
}
.burger__bar {
  width: 24px;
  height: 2px;
  background-color: #111;
  transition: 0.3s;
}


/* Mobile */
@media (max-width: 768px) {
  /* Burger */
  .burger {
    display: flex;
    padding: 20px;
  }

  .site-header{
    justify-content: center;
    padding: 0;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav__inner {
    display: flex;
    height: fit-content;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .site-nav__inner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__link {
    font-size: 1rem;
  }



  :root{ --safe-top: var(--header-h); }
  .headingH1 { font-size: 28px; }
  .headingH2 { font-size: 18px; line-height: normal; }
  .headingH5 { font-size: 14px; line-height: normal; padding: 8px; }

  /* Video */
  .startInfoBannerElementVideo { height: 500px; margin: 14px; }
  .MultiworkCloudStart { padding: 0 0 20px 20px; gap: 0; }
  .MultiworkCloudLogoStart { width: 140px; height: auto; }
  .MultiworkCloudLogoStart object { width: 100%; }
  .MultiworkCloudDescriptionStart { font-size: 16px; }

  /* Projektmanagement */
  .projectManagement_first {
    height: 200px;
    padding: 0 10px;
    justify-content: center;
  }
  .projectManagement_first_heading p {
    font-size: 28px;
    line-height: normal;
  }
  .projectManagement_first_image { display: none; }

  .projectManagement_second { padding: 10px; }
  .task-steps { gap: 30px; }
  .task-step { width: clamp(180px, 40vw, 240px); gap: 0; }
  .task-step__caption { font-size: 14px; }
  .carousel { padding: 0 clamp(16px, 5vw, 24px); }
  .carousel-controls { justify-content: unset; }

  /* Scan Tag */
  .scanTag {
    padding: 20px;
    gap: 20px;
    flex-direction: column;
    text-align: center;
  }
  .scanTagText { align-items: center; }
  .scanTagRectangle { width: 50px; height: 50px; }

  /* InfoBox */
  .infoBox {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 20px;
    height: auto;
  }
  .infoBoxText { align-items: center; order: 1; }
  .infoBoxPhone { order: 2; }

  /* Fahrtenbuch */
  .logbook { gap: 0; }
  .logbook_first {
    height: fit-content;
    padding: 0 10px;
    justify-content: center;
  }
  .logbook_first_heading p {
    font-size: 28px;
    line-height: normal;
  }
  .logbook_first_image { display: none; }
  .logbook_slide { padding: 10px; }
}







/************ Footer ************/
#siteFooterSelf {
    background-color: #f5f5f7;
    color: #727378;
    text-align: center;
    font-size: 16px;
    padding:90px 0 40px 0;
    margin-top: 10px;
    width: 100%;
}
#siteFooterSelf .siteFooterSelfLogo {

}
#siteFooterSelf .siteFooterSelfLogo img {
    width: 49px;
    display: inline-block;
    margin-top: -6px;
    margin-right: 10px;
}
#siteFooterSelf .footerMenuObject {
    display: inline-block;
    margin-left:30px;
    cursor: pointer;
    color: #727378;
}

@media (max-width: 1000px) {
    #siteFooterSelf {
        padding:50px 0 40px 0;
    }
    .siteFooterSelfLinkHolders {
        display: block;
        margin-top: 24px;
    }
}

@media (max-width: 590px) {
    #siteFooterSelf .footerMenuObject {
        display: block;
        width: max-content;
        margin: 10px auto;
    }
    .siteFooterSelfBusinessInfo {
        display: block;
        margin-top: 14px;
    }
}





.videoBtnVolumeOff, .videoBtnVolumeOn,
.videoBtnStopNow, .videoBtnPlayNow,
.videoBtnFullscreen {
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 36px;
    text-align: center;
    background-color: #FFFFFF99;
    font-size: 18px;
    cursor: pointer;
    
    width: 40px;
    height: 40px;

    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
}

.videoBtnStopNow, .videoBtnPlayNow {
    right: 70px;
}

.videoBtnFullscreen {
    right: 120px;
}
