*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #f09230;
  --black: #000;
  --white: #fff;
  --muted: rgba(255, 255, 255, 0.72);
}

html,
body {
  height: 100%;
}

body {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
  background-color: var(--black);
  background-image: url("../main.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 480px;
  text-align: center;
}

.logo {
  display: block;
  width: min(260px, 70vw);
  height: auto;
}

.title {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.accent-line {
  display: block;
  width: 40px;
  height: 2px;
  margin-top: -1.25rem;
  background-color: var(--orange);
}

.contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
}

.contact li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--muted);
}

.contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: var(--orange);
}

.contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact a:hover,
.contact a:focus-visible {
  color: var(--orange);
}

.social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  color: var(--white);
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background-color: var(--orange);
  color: var(--black);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@media (min-width: 540px) {
  .contact {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 1.75rem;
    row-gap: 0.875rem;
  }
}
