@font-face {
  font-family: "BrandonGrotesqueWeb-Thin";
  src: url("./images/39D442_0_0-3c10399b.eot");
  src:
    url("./images/39D442_0_0-3c10399b.eot?#iefix") format("embedded-opentype"),
    url("./images/39D442_0_0-3b8598ed.woff2") format("woff2"),
    url("./images/39D442_0_0-a827c9f9.woff") format("woff"),
    url("./images/39D442_0_0-405a877c.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

:root{
  --bg: #051622;
  --accent: #deb992;
  --accent-soft: rgba(222,185,146,0.55);
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--accent);
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* (1) Moving background borrowed from the template */
.hero{
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
  text-align: center;

  background: var(--bg) url("./images/bg_star.png") repeat-y;
  animation: move-bg 40s linear infinite;
}

/* Subtle vignette so text reads cleanly */
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 500px at 50% 35%, rgba(0,0,0,0.0), rgba(0,0,0,0.55));
  pointer-events: none;
}

.content{
  position: relative;
  z-index: 1;
  width: min(980px, 92vw);

  display: flex;
  flex-direction: column;
  align-items: center;

  /* Equal spacing between: top line, name, icons, bottom line */
  gap: 24px;
}

/* (3) Line that expands on load */
.divider{
  height: 1px;
  background-color: var(--accent);
  width: 0;
  margin: 0;
  opacity: 0.95;
}

.divider--bottom{ }

body.loaded .divider{
  animation: full-width 1.8s ease forwards;
}

/* (2) "Luke Bornn" text/font borrowed from the template */
.hero-title{
  /* NOTE: flex 'gap' is equal, but the font's line box makes the top spacing look tighter.
     A small top margin makes the visual spacing match the other gaps. */
  margin: 10px 0 0;
  color: var(--accent);
  font-family: "BrandonGrotesqueWeb-Thin", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  line-height: 0.95;
  font-size: clamp(54px, 7vw, 128px);
  padding: 0 10px;
}

/* Links */
.link-row{
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin: 0;
}

.link{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 14px;

  border: 1px solid rgba(222,185,146,0.25);
  background: rgba(0,0,0,0.18);
  color: var(--accent);
  text-decoration: none;

  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.link:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,0.26);
  border-color: rgba(222,185,146,0.45);
}

.link:focus-visible{
  outline: 2px solid rgba(222,185,146,0.70);
  outline-offset: 4px;
}

.icon{
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
}

.icon svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
  opacity: 0.95;
}

.label{
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

/* Keyframes borrowed from template */
@keyframes full-width {
  0% { width: 0; }
  to { width: 100%; }
}

@keyframes move-bg {
  0% { background-position: center 0px; }
  to { background-position: center -500px; }
}

@media (prefers-reduced-motion: reduce){
  .hero{ animation: none; }
  body.loaded .divider{ animation: none; width: 100%; }
  .link{ transition: none; }
}
