/* ---------- Fonts ---------- */
@font-face {
  font-family: "Aeonik Pro";
  src: url("fonts/AeonikPro-Regular.woff2") format("woff2"),
    url("fonts/AeonikPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik Pro";
  src: url("fonts/AeonikPro-Bold.woff2") format("woff2"),
    url("fonts/AeonikPro-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset {
  border: none;
}

/* ---------- Base Styles ---------- */
body {
  font-family: "Aeonik Pro", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background-color: #fff;
  color: rgba(133, 151, 159, 1);
  padding: 0;
  overflow: hidden;
}

.logo {
  position: absolute;
  width: 132px;
  z-index: 2;
  inset-inline-start: 20px;
  inset-block-start: 20px;
}

.logo img {
  width: auto;
  height: auto;
  display: block;
  filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.4));
  -webkit-filter: drop-shadow(0px 0px 25px rgba(0, 0, 0, 0.4));
}

/* ---------- Hero Slider ---------- */
.hero-slider {
  width: 100%;
  height: calc(100dvh - 184px);
}

.hero-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider .hero-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wrapper .hero-slider__title {
  position: absolute;
  inset-inline-start: 62px;
  inset-block-end: 180px;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  line-height: 100%;
  z-index: 10;
  text-shadow: 0px 0px 40px rgba(0, 0, 0, 0.45);
}

/* ---------- Overlay Content ---------- */
.wrapper {
  position: relative;
}

.wrapper .slogan {
  display: none;
}

.wrapper .symbol {
  width: 318px;
  position: absolute;
  z-index: 9;
  inset-inline-start: 20px;
  inset-block-end: -38px;
  backdrop-filter: blur(13px);
  -webkit-clip-path: url(#mobil-clip-path);
  clip-path: url(#mobil-clip-path);
}

.wrapper .symbol svg {
  width: 100%;
  height: auto;
}

/* ------------- Footer ------------ */
.footer {
  background-color: #fff;
  padding: 21px;
  padding-block: 71px 17px;
  display: flex;
  align-content: flex-end;
  justify-content: flex-start;
  text-align: end;
  flex-direction: column;
}

.footer .footer__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.1;
  color: rgba(133, 151, 159, 1);
  display: block;
}

.footer .footer__text:not(:last-child) {
  margin-bottom: 20px;
}

.footer .footer__text a {
  display: inline-block;
}

@media screen and (min-width: 992px) {
  .desktop-none {
    display: none !important;
  }

  .logo {
    width: 209px;
    inset-inline-start: 38px;
    inset-block-start: 47px;
  }

  .hero-slider {
    height: calc(100dvh - 121px);
  }

  .wrapper .hero-slider__title {
    inset-inline-start: 113px;
    inset-block-end: 397px;
    font-size: 48px;
  }

  .wrapper .slogan {
    position: absolute;
    inset-block-end: 24px;
    inset-inline-end: 40px;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    text-align: end;
    text-shadow: 0px 0px 25px rgba(0, 0, 0, 0.45);
    color: rgba(255, 255, 255, 1);
    z-index: 1;
    display: block;
  }

  .wrapper .symbol {
    width: 682px;
    position: absolute;
    z-index: 9;
    inset-inline-start: 38px;
    inset-block-end: -80px;
    backdrop-filter: blur(13px);
    -webkit-clip-path: url(#symbol-clip);
    clip-path: url(#symbol-clip);
  }

  .footer {
    padding: 24px 40px;
    height: 121px;
  }

  .footer .footer__text {
    font-size: 18px;
  }
}