/* Self-hosted Google font (download WOFF2 and place into /fonts). */
/* Rubik Mono One - for name */
@font-face {
  font-family: "RubikMonoOne";
  src: url("/fonts/RubikMonoOne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Oswald - for everything else */
@font-face {
  font-family: "Oswald";
  src: url("/fonts/Oswald-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/fonts/Oswald-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/fonts/Oswald-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/fonts/Oswald-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/fonts/Oswald-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("/fonts/Oswald-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #6e6e6e;
  --text: rgba(255, 255, 255, 0.92);
  --text-soft: rgba(255, 255, 255, 0.78);
  --card: rgba(0, 0, 0, 0.35);
  --card-border: rgba(255, 255, 255, 0.14);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: var(--bg);
  background-image: url("/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text);
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 36px 18px;
  text-align: center;
}

.name {
  margin: 0;
  font-family: "RubikMonoOne", sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.tagline {
  margin: 0;
  max-width: 980px;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.5;
  color: var(--text-soft);
  padding: 12px 14px;
  border: 1px solid var(--card-border);
  background: var(--card);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--card-border);
  background: var(--card);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.social {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  text-decoration: none;
}

.social:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.social svg {
  width: 22px;
  height: 22px;
  fill: var(--text);
}

.footer {
  margin-top: 4px;
}

.imprint {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.28);
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}

.imprint:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.38);
  border-color: rgba(255, 255, 255, 0.22);
}