/* Global styles */
:root{
  --bg:black;
  --fg:#c9ac60; /* gold tone */
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Josefin Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 400; /* Body Regular */
}

/* Fixed links row at top-center */
.links{
  position: fixed;
  top: clamp(20px, 4vh, 60px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  padding: 0 .75rem;
  z-index: 10;
}

/* Dot separators */
.dot {
  color: var(--fg);
  opacity: 0.75;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1;
  user-select: none;
}

/* Page Link Regular — uniform width & visual consistency */
.link{
  display: inline-block;
  min-width: 90px;             /* ensures even width balance for short labels */
  text-align: center;
  font-weight: 400;            /* Regular */
  text-decoration: none;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: opacity .2s ease, border-color .2s ease, transform .1s ease;
  text-shadow: 0 0 10px rgba(0,0,0,.25);
}
.link:hover,
.link:focus{
  opacity: .85;
  border-color: rgba(201,172,96,.4); /* soft gold underline on hover */
  outline: none;
  transform: translateY(-1px);
}

/* Center the image in the viewport, responsive on all screens */
.wrap{
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14vh 4vw;
}

/* Hero image (portrait 16:9) — preserves ratio and scales properly */
.hero {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  border: 0;
  background: black;
}

/* Optional header styling if reused elsewhere */
.hdr{
  font-weight: 300;   /* Header Light */
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fg);
}
