* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  background-color: #1c1c1c;
  scrollbar-gutter: stable;
}

@font-face {
  font-family: "Inter";
  src: url(../assets/fonts/Inter/Inter-VariableFont.ttf);
}
body {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  padding: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100svh;
  line-height: 1.35;
  color: #f3f4f4;
  max-width: 1920px;
  margin: 0 auto;
}

/* ---------------------------- Header --------------------------- */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
header nav a {
  text-decoration: none;
  color: #f3f4f4;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
}
header.sticky {
  background-color: #1c1c1c;
  background: -webkit-gradient(linear, left top, left bottom, from(#1c1c1c), color-stop(rgba(28, 28, 28, 0.8549019608)), to(transparent));
  background: linear-gradient(#1c1c1c, rgba(28, 28, 28, 0.8549019608), transparent);
  position: sticky;
  top: 0;
  padding-top: 50px;
  padding-bottom: 50px;
}
header #logo {
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
header #logo:hover {
  opacity: 0.6;
}

body:has(header.sticky) {
  padding-top: 0;
}

/* ---------------------------- General --------------------------- */
a,
p {
  color: #f3f4f4;
}

ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  margin-left: 20px;
}

a {
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
a.active {
  opacity: 0.6;
}
a:hover {
  color: #a0a0a0;
}

/* ---------------------------- Main --------------------------- */
.grid {
  display: grid;
  grid-template-columns: 6.5fr 5.5fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  height: 100%;
  gap: 50px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/* ---------------------------- Text Section --------------------------- */
section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 35px;
  font-size: 22px;
  max-width: 615px;
  margin-left: auto;
}
section a {
  font-weight: 600;
}

/* ---------------------------- Logo --------------------------- */
.logo {
  width: 100%;
  margin-top: auto;
  opacity: 0;
}
.logo-animate {
  -webkit-animation: fade 2s forwards;
          animation: fade 2s forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
Source - https://stackoverflow.com/a/78086487
Posted by Salman Arshad, modified by community. See post 'Timeline' for change history
Retrieved 2026-08-11, License - CC BY-SA 4.0
*/
img {
  color: transparent;
}

/* ---------------------------- Swiper --------------------------- */
.swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  color: #1c1c1c;
}
.swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ---------------------------- Legal --------------------------- */
.legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin: 50px 0;
}
.legal h1 {
  font-size: 19px;
  font-weight: 600;
}
.legal h2 {
  font-size: 18px;
  font-weight: 600;
}
.legal p,
.legal li,
.legal a {
  font-size: 16px;
}
.legal a {
  word-break: break-word;
}

/* ---------------------------- Footer --------------------------- */
footer {
  margin-top: auto;
  width: 100%;
  text-align: end;
  text-transform: uppercase;
  font-size: 12px;
}
footer.forced-bottom {
  margin-top: auto !important;
}

/* ---------------------------- Cookie Banner --------------------------- */
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(26, 26, 26, 0.9450980392);
  color: #f5f5f5;
  border-bottom: 1px solid rgba(241, 241, 241, 0.6784313725);
  font-size: 14px;
}
.cookie-banner::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  height: 100vh;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
@media (max-width: 600px) {
  .cookie-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    text-align: center;
  }
}

.cookie-text {
  margin: 0;
  text-align: center;
  line-height: 1.5;
  max-width: 1200px;
}
.cookie-text a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 600px) {
  .cookie-actions {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  font-family: inherit;
}
.cookie-btn:hover {
  opacity: 0.85;
}
.cookie-btn--decline {
  background: transparent;
  color: #f3f4f4;
  border: 1px solid #555;
}
.cookie-btn--accept {
  background: #ffffff;
  color: #1a1a1a;
}

/* ---------------------------- Media Queries --------------------------- */
@media screen and (max-width: 1000px) {
  body {
    padding: 25px;
  }
  header.sticky {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .legal {
    margin: 25px 0;
  }
  .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  section {
    margin-left: 0;
    max-width: 100%;
    font-size: 16px;
    gap: 20px;
  }
  footer {
    margin-top: 0;
  }
}/*# sourceMappingURL=styles.css.map */