/* Fonts */
/* open-sans-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-regular.woff2') format('woff2'); 
}

/* open-sans-italic - latin */
@font-face {
  font-display: swap; 
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/open-sans-v44-latin-italic.woff2') format('woff2'); 
}

/* open-sans-500 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/open-sans-v44-latin-500.woff2') format('woff2'); 
}

/* open-sans-600 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v44-latin-600.woff2') format('woff2'); 
}


/* barlow-regular - latin */
@font-face {
  font-display: swap; 
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/barlow-v13-latin-regular.woff2') format('woff2'); 
}

/* barlow-italic - latin */
@font-face {
  font-display: swap; 
  font-family: 'Barlow';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/barlow-v13-latin-italic.woff2') format('woff2'); 
}

/* barlow-500 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/barlow-v13-latin-500.woff2') format('woff2'); 
}

/* barlow-600 - latin */
@font-face {
  font-display: swap; 
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/barlow-v13-latin-600.woff2') format('woff2'); 
}

/* barlow-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/barlow-v13-latin-700.woff2') format('woff2'); 
}


@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src: url("../fonts/bootstrap-icons.woff2") format("woff2"),
url("../fonts/bootstrap-icons.woff") format("woff");
}

:root {
  --default-font: "Open Sans", sans-serif;
  --heading-font: "Barlow", sans-serif;
  --nav-font: "Barlow", sans-serif;
}

/* Global Colors */

:root {
  --background-color: #efefef;
  --default-color: #4E4E4E;
  --heading-color: #005064;
  --accent-color: #005064;
  --surface-color: #ffffff;
  --contrast-color: #00B4DC;
}

/* Nav Menu Colors  */

:root {
  --nav-color: #ffffff;
  --nav-hover-color: #00B4DC;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #124265;
  --nav-dropdown-hover-color: #00B4DC;
}

/* Navigation anpassen */

.topnavsub {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
}

.navbar {
  /*background-color: var(--nav-color) !important;*/
  font-family: var(--nav-font), sans-serif;
  font-weight: 600;
}

.navbar-brand, .navbar-nav .nav-link {
  color: var(--nav-color);
  text-transform: uppercase;
}

.navbar li:hover > a {
  color: var(--nav-hover-color) !important;
}

.navbar .active, .navbar .active:focus {
  color: var(--nav-hover-color) !important;
}

/* Linien des Burgers */

.navbar-toggler-icon {
  display: block;
  margin: 6px auto;
  transition: all 0.3s ease-in-out;
  border-radius: 1px;
}

/* Mobile Ansicht */

@media (max-width: 991.98px) {
  .navbar {
    justify-content: space-between;
  }
}

@media (max-width: 991.98px) {
  .navbar-toggler {
    color: #ffffff;
    margin-right: auto;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }
}

@media (max-width: 991.98px) {
  .logo {
    margin-left: auto;
    width: 140px;
  }
}

/* Menü rechtsbündig unter dem Logo */

@media (max-width: 991.98px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    width: 75%;
    background-color: var(--accent-color);
    text-align: right;
    padding: 1rem;
    box-shadow: -3px 3px 10px rgba(0,0,0,0.3);
    margin-top: 20px;
  }
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    display: block;
    padding: 0.75rem 1rem;
  }
}

/* Dropdown-Menü */

.dropdown-menu {
  background-color: var(--nav-hover-color);
  border: none;
}

.dropdown-item {
  color: var(--bs-white) !important;
}

.dropdown-item:hover {
  background-color: var(--nav-hover-color);
  color: var(--bs-light) !important;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #efefef;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #2487ce;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #469fdf;
  --contrast-color: #ffffff;
}

/* Smooth scroll */

:root {
  scroll-behavior: smooth;
}

.btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  /*text-transform: uppercase;*/
  display: inline-block;
  padding: 10px 30px;
  border-radius: 5px;
  transition: 0.5s;
  /*margin-top: 30px;*/
  /*margin-left: 15px;*/
}

/* --------------------------------------------------------------
# General Styling & Shared Classes
-------------------------------------------------------------- */

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 500;
}

/* --------------------------------------------------------------
# Global Header
-------------------------------------------------------------- */

.header {
  color: var(--default-color);
  background-color: var(--background-color);
  background: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 180, 220));
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  /*max-height: 36px;*/
  /*margin-right: 8px;*/
}

.header .logo h1, i {
  font-size: 26px;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--surface-color);
}

.header .btn-getstarted, .header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.scrolled .header {
  border-color: var(--contrast-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------------------
# Global Sections
-------------------------------------------------------------- */

section, .section, #leistungen {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 100px;
  }
}

/* --------------------------------------------------------------
# Disable aos animation delay on mobile devices
-------------------------------------------------------------- */

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* section[id] {
  scroll-margin-top: 80px; }/* Höhe deiner Navbar */

/* --------------------------------------------------------------
# Global Section Titles
-------------------------------------------------------------- */

.section-title {
  /*text-align: center;*/
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  margin-bottom: 5px;
  /*text-transform: uppercase;*/
}

.section-title p {
  margin-bottom: 0;
}

/* --------------------------------------------------------------
# Start Section
-------------------------------------------------------------- */

.start {
}

.start:before {
}

.start .img {
}

.start .container {
}

.start h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 72px;
}

p.subslogan {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-family: var(--heading-font);
}


.start p.logo {
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-family: var(--heading-font);
}

.start p.teaser {
  margin: 10px 0 0 0;
  font-size: 18px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
  .start h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (max-width: 992px) {
  .start p {
    font-size: 18px;
    line-height: 24px;
  }
}

.btn-contact {
  color: var(--background-color);
  background: var(--accent-color);
  font-weight: 400;
  font-size: 16px;
  /*letter-spacing: 0.5px;*/
  /*text-transform: uppercase;*/
  display: inline-block;
  padding: 5px 30px;
  border-radius: 5px;
  transition: 0.5s;
  /*margin-top: 30px;*/
  margin-left: 15px;
}

.btn-contact:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.start .btn-get-started {
  color: var(--background-color);
  background: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 50px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 30px;
}

.start .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.start .icon-box {
  background-color: var(--background-color);
  /*background: linear-gradient(to bottom, var(--background-color) 65%, rgb(0, 180, 220));*/
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  border-bottom: 2px solid #00B4DC;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.start .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.start .icon-box .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.start .icon-box .description {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.start .icon-box .icon img {
  margin-bottom: 15px;
  /*padding-top: 10px;*/
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease-in-out;
  font-size: 36px;
  line-height: 1;
  color: var(--contrast-color);
}

@media (min-width: 640px) {
  .start .icon-box:hover {
    transform: scale(1.08);
  }
}

@media (min-width: 640px) {
  .start .icon-box:hover .title a {
    color: var(--accent-color);
  }
}

/* --------------------------------------------------------------
# leistungen Section
-------------------------------------------------------------- */

.leistungen ul {
  list-style: none;
  padding: 0;
}

.leistungen ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.leistungen ul i {
  font-size: 20px;
  padding-right: 10px;
  color: var(--accent-color);
}

.redactor {
 padding: 20px;
}

.private ul i {
  color: var(--contrast-color);
}


.leistungen h2.business, h2.private {
  text-align: center;
  padding: 40px;
  color: var(--background-color);
  background-color: var(--accent-color);
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  margin-bottom: 10px;
}

.leistungen h2.private {
  background-color: var(--contrast-color);
}

.leistungen .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 900;
  font-size: 18px;
  padding: 15px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.leistungen .read-more i {
  font-size: 18px;
  color: var(--contrast-color);
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.leistungen .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.leistungen .read-more:hover i {
  transform: translate(5px, 0);
}

/* --------------------------------------------------------------
# Call To Action Section
-------------------------------------------------------------- */

.call-to-action {
  padding: 20px 0;
  position: relative;
  background: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 180, 220));
  clip-path: inset(0);
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  margin-bottom: 50px;
}

.call-to-action h3 {
  color: var(--surface-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--default-color);
  color: var(--accent-color);
}

/* --------------------------------------------------------------
# Faq Section
-------------------------------------------------------------- */

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  background-color: var(--accent-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #ffffff;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--contrast-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
  color: #ffffff;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active {
  background-color: #ffffff;
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-container .faq-active h3 {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--contrast-color);
}

/* --------------------------------------------------------------
# Contact Section
-------------------------------------------------------------- */

#kontakt, #handwerker {
  padding-bottom: 450px;
}

.contactmaps {
  background-color: var(--background-color);
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  height: 100%;
  width: 100%;
}

.kontakt .info-item + .info-item {
  margin-top: 10px;
}

.kontakt .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.kontakt .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.kontakt .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 16px;
}

.kontakt-modal .modal-content, .schaden-modal .modal-content {
  background-color: var(--accent-color);
  color: #fff;
  border-radius: 8px;
  /*border-bottom: 4px solid #00B4DC;*/
  padding: 1.5rem;
  z-index: 2000;
}

.kontakt-modal .modal-title, .schaden-modal .modal-title {
  background-color: var(--accent-color);
  color: #fff;
}

.kontakt-modal .form-control, .kontakt-modal .form-select {
  background-color: #fff;
  color: #000;
  border-radius: 0.5rem;
  border: none;
}

.kontakt-modal label {
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.kontakt-modal .btn-primary {
  background-color: var(--contrast-color);
  border: none;
  font-weight: 600;
}

.kontakt-modal .btn-primary:hover {
  background-color: transparent;
}

.kontakt-modal .alert {
  margin-top: 1rem;
}

.kontakt-modal .btn-close, .schaden-modal .btn-close {
  filter: invert(1);
}

.form-check-group .radio label {
  display: flex;
  align-items: center;
  /* padding: 6px 10px;*/
  cursor: pointer;
}

.form-check-group .radio input[type="radio"] {
  margin-right: 8px;
    background-color: var(--contrast-color);
  border-color: var(--contrast-color);
  outline: none;
}

.form-check-input[type="radio"]:checked {
  background-color: var(--contrast-color);
  border-color: var(--contrast-color);
  outline: none;
}

.form-check-input:focus {
  outline: none;
  box-shadow: #ffffff;
}

.form-check-label {
  font-weight: 400;
  color: #ffffff;
}

/* Zweispaltiges Grid für obere Felder */

@media (min-width: 576px) {
  .kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

/* --------------------------------------------------------------
# Global Footer
-------------------------------------------------------------- */

.footer {
  color: var(--background-color);
  background: linear-gradient(to right, rgb(0, 0, 0), rgb(0, 180, 220));
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  font-size: 14px;
  padding-bottom: 20px;
  position: relative;
}

.footer .footer-top {
  padding-top: 25px;
}

.footer .footer-leistungen .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-leistungen .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-leistungen .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-leistungen p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: var(--surface-color);
}

.footer h4.adress {
  font-size: 26px;
  margin: 0;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--surface-color);
}

.footer .footer-links {
  margin-bottom: 0;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin-top: 5px;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--surface-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
}

.footer .credits a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

/* Nur auf großen Bildschirmen: Footer fixieren */

@media (min-width: 992px) {
  .fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
  }
}

/* --------------------------------------------------------------
# Scroll Top Button
-------------------------------------------------------------- */

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/* --------------------------------------------------------------
# Disable aos animation delay on mobile devices
-------------------------------------------------------------- */

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

