@import url("./normalize.css");
@import url("./fonts.css");
@import url("./variables.css");

body {
  padding: 32px 16px;
  color: var(--color-base-text);
}
body,
a {
  color: var(--color-base-text);
}
.media-mobile {
  display: none;
}

.ui-card {
  border-radius: 50px;
  background: var(--color-ui-card-background-gradient);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 1024px;
  height: 100%;
  align-items: center;
}
.main {
  width: 100%;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.glow-text {
  background: linear-gradient(
    180deg,
    #fcf6d1 0%,
    #bd9457 10.42%,
    #e3ca89 25%,
    #fee8c8 69.79%,
    #4d3a1a 85.42%,
    #fcf0d1 100%
  );
  background-clip: text;
  -webkit-text-stroke: 2px transparent;
}

.background-image {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.4);
  background: url("../images/a52aaa7b79d28e103e696fb5321a21016e9a907c.jpg")
    center / cover no-repeat;
}

.hero-card {
  gap: 24px;
  padding: 24px;
}
.hero-card__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-card__title {
  text-align: center;
  font-family: "Google";
  font-size: 40px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.rotation-card {
  padding: 24px;
}

.rotation-card__text {
  text-align: center;
  font-family: "Google";
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.bonus__title {
  text-align: center;
  font-family: "Google";
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.manager {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.manager-card {
  gap: 32px;
  padding: 24px 64px;
  flex-grow: 1;
}
.manager-card__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
}
.manager-card__name {
  font-family: "Manrope";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 38.4px;
  white-space: nowrap;

  text-align: center;
  text-transform: uppercase;
}
.manager-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%;

  background: var(--color-manager-contact-background);
  padding: 4px 16px 4px 4px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s ease-out;
}
.manager-contact:hover {
  background: var(--color-manager-contact-background-hover);
}
.manager-contact__icon {
  flex-shrink: 0;
}
.manager-contact__name {
  font-family: "Google";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 1.25px;
  white-space: nowrap;
}

.apps {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bank-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.bank-card__title {
  text-align: center;
  font-family: "Google";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.bank-card__row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  height: 100%;
}
.bank-card__image {
  height: 100%;
  object-fit: contain;
}

.footer {
  flex: 0 0 auto;
}
.footer__text {
  text-align: center;
  font-family: "Source Sans Pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 900px) {
  .manager-card {
    padding: 24px 0;
  }
  .manager-contact {
    width: unset;
  }
}
@media screen and (max-width: 768px) {
  .manager-contact__name {
    font-size: 18px;
  }
  .bank-card__row {
    height: 40px;
  }
}
@media screen and (max-width: 520px) {
  .media-desktop {
    display: none;
  }
  .media-mobile {
    display: block;
  }
  .glow-text {
    -webkit-text-stroke-width: 1px;
  }
  .hero-card__title {
    font-size: 24px;
  }
  .rotation-card__text {
    font-size: 16px;
  }
  .bonus__title {
    font-size: 16px;
  }
  .manager-card {
    gap: 12px;
  }
  .manager-card__name {
    white-space: unset;
    font-size: 16px;
    line-height: 38.4px;
  }
  .manager-contact {
    gap: 8px;
  }
  .manager-contact__icon {
    width: 20px;
    height: 20px;
  }
  .manager-contact__name {
    font-size: 14px;
  }
  .apps {
    flex-direction: column;
  }
  .bank-card__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 400px) {
  .manager {
    flex-direction: column;
  }
  .manager-card {
    padding: 24px 48px;
  }
  .manager-contact {
    gap: 10px;
  }
}
