@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

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

html {
  scroll-behavior: smooth;
}

section {
  overflow: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #222329;
}

.btn {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 3px;
  padding: 15px 70px;
  border-radius: 0;
  transition: all 0.3s;
}

.btn.btn-outline:hover {
  background-color: #222329;
  color: #fff;
}

.btn.btn-outline {
  border: 1px solid #222329;
}

.btn.btn-outline-white {
  border: 1px solid #fff;
  color: #fff;
}

.btn.btn.btn-outline-white:hover {
  background-color: #fff;
  color: #222329;
  transition: all 0.3s;
}

.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.bg.animated {
  animation: animateBg 23s linear infinite;
  animation-delay: 2s;
}

@keyframes animateBg {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}

a {
  text-decoration: none;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px !important;
  }

  .container {
    padding: 0 !important;
  }
}

header {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1;
}

header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 120px;
}

header .wrapper div {
  display: flex;
  align-items: center;
  gap: 20px;
}

header .wrapper span,
.premium-partner span {
  text-decoration: none;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  z-index: 1;
}

.hero {
  min-height: 850px;
  max-width: 1440px;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.subtitle {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
}

.hero h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0;
}

.hero h1 {
  font-size: 90px;
  font-weight: 800;
  margin: 30px 0 90px 0;
  line-height: 0.95;
}

.hero .arrow {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.hero .btn-outline-white {
  margin-top: 100px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.presentation {
  margin-top: 100px;
}

.presentation .row {
  align-items: center;
  row-gap: 100px;
}

.title {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 50px 0 70px 0;
}

.title.underline {
  position: relative;
  margin-bottom: 70px;
}

.title.underline::before {
  content: "";
  position: absolute;
  bottom: -35px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #bcbdbe;
}

.premium-partner {
  margin-top: 125px;
  text-align: center;
}

.premium-partner h2 {
  margin: 50px 0 60px 0;
}

.premium-partner span {
  color: #222329;
  font-weight: 600;
}

.premium-partner span:first-of-type {
  margin-right: 10px;
}

.premium-partner .col-lg-10 div img {
  filter: invert(1);
}

.premium-partner img[alt="DUSCHOLUX Logo"] {
  margin: 70px 0 55px 0;
}

.premium-partner img[alt="van"] {
  margin-bottom: 60px;
}

.premium-partner img[alt="Tenall Logo"] {
  margin-top: 85px;
}

footer {
  text-align: center;
  padding: 60px 0 90px 0;
}

footer p {
  margin-bottom: 0;
  margin-top: 60px;
}

footer a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #222329;
  font-weight: 600;
}

.kontakt {
  min-height: 550px;
}

.kontakt h1 {
  margin: 30px 0 0 0;
}

.breadcrumb {
  margin: 55px 0 75px 0;
}

.breadcrumb nav ul {
  display: flex;
  align-items: center;
  list-style-type: none;
  padding: 0;
}

.breadcrumb nav ul li {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.breadcrumb nav ul li:not(:last-child)::after {
  content: url("../images/arrow-right.svg");
  margin: 0 20px;
  color: #222329;
}

.breadcrumb li[aria-current="page"] {
  font-weight: 800;
}

.kontakt-form form {
  margin-top: 60px;
}

.kontakt-form input:not([type="checkbox"]),
.kontakt-form textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #92989a;
  outline: none;
  margin-top: 10px;
  resize: none;
}

.kontakt-form label:not(:first-child),
.kontakt-form textarea {
  margin-top: 20px;
}

.kontakt-form span {
  margin-left: 10px;
}

.kontakt-form span a {
  text-decoration: underline;
  color: #222329;
}

.kontakt-form p:first-of-type {
  margin-top: 40px;
}

.kontakt-form button {
  margin-bottom: 60px;
  margin-top: 20px;
}

.kontakt-form ul {
  list-style-type: none;
  padding: 0;
}

.kontakt-form ul li {
  text-transform: uppercase;
}

.kontakt-form ul li a {
  color: #222329;
}

.map {
  margin: 150px 0;
}

.map .wrapper {
  position: relative;
  width: 100%;
  max-height: 690px;
}

.map img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

.map iframe {
  filter: grayscale(1);
}

.slider-counter {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 25px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-counter ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 0;
}

.slider-counter ul li {
  height: 2px;
  width: 30px;
  background-color: #222329;
  opacity: 0.2;
}

.slider-counter ul li.active {
  opacity: 1;
  background-color: #222329;
}

.slider-counter span {
  font-size: 14px;
  font-weight: 700;
}

.testimonials {
  padding: 160px 0 0 0;
}

.testimonials .row {
  justify-content: center;
}

.testimonials h3 {
  position: relative;
  font-size: 50px;
  font-weight: 200;
}

.testimonials h3::before {
  content: url("../images/quotes.svg");
  position: absolute;
  top: -70px;
  left: -70px;
  z-index: -1;
}

.testimonials h5 {
  margin-top: 60px;
  font-size: 18px;
  font-weight: 300;
}

.testimonials h5 strong {
  font-weight: 800;
}

.border_list {
  list-style-type: none;
  padding: 10px 0 15px 0;
  margin: 0 0 70px 0;
  border-top: 1px solid #c8c8c9;
  border-bottom: 1px solid #c8c8c9;
}

.border_list li:first-child {
  padding-top: 5px;
}

.border_list li:not(:last-child) {
  border-bottom: 1px solid #c8c8c9;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.border_list li {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.border_list li span {
  transition: all 0.2s;
  display: block;
  cursor: pointer;
}

.border_list li:hover span {
  transform: scale(1.05) translateZ(0) translateX(3%) translateY(0%);
}

.impressum,
.datenschutz {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(34, 35, 41, 0.08);
  padding: 48px 32px;
  margin: 48px auto;
  max-width: 900px;
}

.impressum .title,
.datenschutz .title {
  font-size: 40px;
  font-weight: 800;
  color: #222329;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.impressum ul,
.datenschutz ul {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(34, 35, 41, 0.04);
  padding: 24px 32px;
  margin-bottom: 32px;
  list-style: none;
}
.impressum ul li,
.datenschutz ul li {
  font-size: 18px;
  font-weight: 600;
  color: #222329;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.impressum ul li a,
.datenschutz ul li a {
  color: #000;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.datenschutz a,
.impressum a {
  color: #000;
  text-decoration: underline;
}
.impressum ul li a:hover,
.datenschutz ul li a:hover {
  color: #000;
}

.impressum p,
.datenschutz p {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.7;
}
.impressum h2,
.datenschutz h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222329;
  margin: 36px 0 18px 0;
}
.impressum h3,
.datenschutz h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin: 24px 0 12px 0;
}
.impressum h4,
.datenschutz h4 {
  font-size: 18px;
  font-weight: 600;
  color: #222329;
  margin: 18px 0 8px 0;
}
.impressum b,
.datenschutz b {
  color: #222329;
  font-weight: 700;
}
.impressum strong,
.datenschutz strong {
  color: #000;
  font-weight: 800;
}
.impressum .anchor,
.datenschutz .anchor {
  display: block;
  height: 60px;
  margin-top: -60px;
  visibility: hidden;
}

@media only screen and (max-width: 992px) {
  .impressum,
  .datenschutz {
    padding: 32px 12px;
    margin: 32px auto;
    max-width: 100%;
  }
  .impressum .title,
  .datenschutz .title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1399px) {
  .map iframe,
  .map img {
    max-width: 100%;
  }
}

@media only screen and (max-width: 992px) {
  header .wrapper {
    flex-direction: column;
    row-gap: 20px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .presentation .col-lg-5.offset-lg-1 {
    order: 1;
  }

  .presentation .col-lg-6:not(.offset-lg-1) {
    order: 2;
  }

  .map img {
    display: none;
  }
}

@media only screen and (max-width: 480px) {
  header .wrapper {
    padding: 0;
  }
  header .wrapper div {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero img {
    max-width: 75%;
  }

  .title {
    font-size: 28px;
  }

  .presentation {
    margin-top: 30px;
  }

  .presentation .row {
    row-gap: 30px;
  }

  .premium-partner {
    margin-top: 70px;
  }

  .breadcrumb {
    margin: 30px 0 20px 0;
  }

  .map {
    margin: 70px 0;
  }

  .hero .btn-outline-white {
    margin-top: 40px;
  }

  .slider-counter {
    padding: 20px 15px;
  }

  .testimonials h3 {
    font-size: 24px;
  }

  .testimonials h3::before {
    display: none;
  }

  .testimonials {
    padding: 50px 0 0 0;
  }

  .border_list li span {
    font-size: 14px;
  }

  .border_list {
    margin-bottom: 40px;
  }

  .title {
    margin: 30px 0;
  }
  footer {
    padding: 30px 0;
  }
}
