@font-face {
  font-family: "CQLogo";
  src: url("../assets/fonts/Handlee-Regular.ttf") format("truetype");
  font-display: swap;
}

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

body {
  min-height: 100vh;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: white;

  background:
    linear-gradient(rgba(0,0,0,.52), rgba(0,0,0,.76)),
    image-set(
      url("../images/hero/foodtruck.avif") type("image/avif"),
      url("../images/hero/foodtruck.webp") type("image/webp")
    )
    center/cover no-repeat;
}

.social-wrap {
  min-height: 100vh;

  display: grid;
  place-items: center;

  padding: 32px 20px;
}

.social-card {
  width: min(100%, 620px);

  padding: 50px;

  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;

  background: rgba(0,0,0,.54);
  backdrop-filter: blur(16px);

  text-align: center;
}

.cq-logo {
  display: inline-block;

  margin-bottom: 34px;

  font-family: "CQLogo", sans-serif;
  font-size: 42px;

  color: white;
  text-decoration: none;
}

.cq-logo span {
  color: #de0f0f;
}

.eyebrow {
  margin-bottom: 16px;

  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;

  color: #ffcf33;
}

h1 {
  margin-bottom: 18px;

  font-size: clamp(42px, 8vw, 72px);
  line-height: .95;
  letter-spacing: -.05em;
}

.lead {
  max-width: 500px;
  margin: 0 auto 34px;

  font-size: 19px;
  line-height: 1.6;

  color: rgba(255,255,255,.78);
}

.social-actions {
  display: grid;
  gap: 14px;

  margin-bottom: 28px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  min-height: 72px;
  padding: 18px 22px;

  border-radius: 18px;

  color: white;
  text-decoration: none;

  font-size: 20px;
  font-weight: 900;

  transition:
    opacity .2s ease,
    transform .2s ease;
}

.social-btn span {
  font-size: 14px;
  font-weight: 700;

  color: rgba(255,255,255,.72);
}

.social-btn.primary {
  background: #de0f0f;
}

.social-btn.secondary {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
}

.social-btn:hover {
  opacity: .92;
  transform: translateY(-2px);
}

.site-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-actions a {
  color: rgba(255,255,255,.82);

  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.site-actions a:hover {
  color: white;
}

@media (max-width: 620px) {

  .social-card {
    padding: 42px 24px;
  }

  .social-btn {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

}
