@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Work+Sans:wght@300;400;500;600&display=swap");

:root {
  color-scheme: light;
  --bg-deep: #06121a;
  --bg-mid: rgba(3, 9, 14, 0.55);
  --text-main: #f7f7f2;
  --text-soft: rgba(247, 247, 242, 0.75);
  --accent: #f6d27b;
  --glow: rgba(246, 210, 123, 0.4);
  --shadow: rgba(2, 6, 10, 0.6);
}

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

body {
  min-height: 100vh;
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #103046 0%, #06121a 55%, #030607 100%);
  overflow: hidden;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 24px 96px;
  isolation: isolate;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  z-index: -2;
}

.hero__social {
  position: absolute;
  bottom: 40%;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: 90%;
  max-width: 1200px;
  transform: translateY(50%);
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-radius: 999px;
}

.social {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 999px;
}

.social img {
  display: block;
  width: 45%;
  min-width: 45px;
  max-width: 110px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
  transition: filter 0.2s ease;
}

.social:focus-visible,
.social:hover {
  box-shadow: none;
}

.social:focus-visible img,
.social:hover img {
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35)) brightness(0.85);
}

@media (max-width: 720px) {
  body {
    overflow: auto;
  }

  .hero {
    padding: 40px 20px 120px;
  }

  .hero__social {
    width: fit-content;
    gap: 26px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 22px;
  }

  .social {
    flex: 0 0 auto;
    padding: 3vw;
  }

  .social img {
    width: 9vw;
    min-width: 9vw;
    height: auto;
  }

}

@media (max-width: 420px) {
  .hero__social {
    border-radius: 24px;
  }
}
