@font-face {
  font-family: HND;
  src: url("assets/fonts/HelveticaNowDisplay-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: HND;
  src: url("assets/fonts/HelveticaNowDisplay-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: HND;
  src: url("assets/fonts/HelveticaNowDisplay-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: HND;
  src: url("assets/fonts/HelveticaNowDisplay-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --mono-white: #fff;
  --mono-black: #000;
  --yellow: #ffa300;
  --white-10: #ffffff1a;
  --white-15: #ffffff26;
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--mono-black);
  color: var(--mono-white);
  font-family: HND, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  background-image:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0) 30%,
      rgba(0, 0, 0, 0) 70%,
      rgba(0, 0, 0, 0.5)
    ),
    linear-gradient(rgba(0, 0, 0, 0) 50%, rgb(0, 0, 0)),
    url("assets/images/chef.png"),
    url("assets/images/background.jpg");
  background-position: 0 0, 0 0, 50% 0, 50% 40%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: auto, auto, contain, cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100svh;
  min-height: 720px;
  padding: 80px;
  position: relative;
}

.page-header,
.cards {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  display: block;
  width: 219px;
  height: 80px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cards {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  min-height: 360px;
  padding: 40px;
  border-radius: 32px;
  background-color: var(--white-10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: rgba(0, 0, 0, 0.2) 0 60px 40px;
}

.card-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.card-icon {
  height: 80px;
  width: auto;
}

.card-icon--round {
  width: 83px;
  height: 83px;
  object-fit: contain;
}

.card-text {
  margin: 0;
  color: var(--mono-white);
  line-height: 140%;
  text-wrap: balance;
}

.card-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 56px;
  padding: 0 24px;
  border: 1px solid var(--white-15);
  border-radius: 56px;
  color: var(--mono-white);
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: background-color 0.4s, border-color 0.4s;
}

.card-button:hover {
  background-color: var(--white-10);
  border-color: rgba(255, 255, 255, 0.35);
}

@media screen and (max-width: 991px) {
  .page {
    gap: 320px;
    background-size: auto, auto, 70%, cover;
    height: auto;
  }

  .cards {
    flex-direction: column;
    gap: 12px;
  }

  .card {
    gap: 16px;
    min-height: auto;
    padding: 32px;
  }
}

@media screen and (max-width: 767px) {
  .page {
    background-position: 0 0, 0 0, 50% 0, 50% 40%;
    background-size: auto, auto, 90%, cover;
    padding: 40px;
  }
}

@media screen and (max-width: 479px) {
  .page {
    gap: 200px;
    background-position: 0 0, 0 0, 50% 5%, 50% 40%;
    background-size: auto, auto, 80%, cover;
    justify-content: flex-start;
    align-items: flex-start;
    max-height: none;
    padding: 32px;
  }

  .logo {
    height: 80px;
  }
}
