/* ─── Global Font ────────────────────────────────────────────────────── */
* {
  font-family: 'Times New Roman', Times, serif;
}

/* ─── Prevent horizontal scroll ─────────────────────────────────────── */
html, body {
  overflow: hidden;
  height: 100%;
  margin: 0;
}

/* ─── Home layout ───────────────────────────────────────────────────── */
.home-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto 1fr auto auto;
  grid-template-areas:
    ".     top-mid  .      "
    "work  mid      about  "
    ".     contact  .      "
    ".     archive  .      ";
  height: calc(100vh - 2.5rem);
  align-items: center;
  justify-items: center;
}

.nav-svg--work    { grid-area: work;    justify-self: start; }
.nav-svg--about   { grid-area: about;   justify-self: end;   }
.nav-svg--contact { grid-area: contact; padding-bottom: 2rem; }
.home-top-mid     { grid-area: top-mid; }
.home-center      { grid-area: mid; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.home-archive     { grid-area: archive; padding-bottom: 0.4rem; align-self: end; }

/* ─── Archive link ───────────────────────────────────────────────── */
.archive-link {
  color: #000;
  text-decoration: underline;
  transition: transform 0.2s ease;
  display: inline-block;
  font-size: 1rem;
}
.archive-link:hover { color: gray;}

/* ─── Home text ───────────────────────────────────────────────────── */
.home-text {
  text-align: center;
  font-size: 1rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #000;
  display: block;
}

.nav-svg {
  display: block;
  padding: 1rem;
  transition: transform 0.2s ease;
}
.nav-svg:hover { transform: scale(1.08); }

.nav-svg svg {
  width: clamp(160px, 20vw, 280px);
  height: auto;
  display: block;
}

.nav-svg--contact svg {
  width: clamp(180px, 24vw, 320px);
}

/* ─── SVG Styles ─────────────────────────────────────────────────────── */

.nav-svg svg,
.nav-svg svg .cls-1 {
    fill: none;
    stroke: #000;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 5px;
}

/* ─── Back button ───────────────────────────────────────────────────── */
.back-btn {
  position: fixed;
  top: 0.6rem;
  left: 1rem;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 5rem;
  color: #000;
  text-decoration: none;
  line-height: 1;
  z-index: 200;
  transition: transform 0.2s ease;
}
.back-btn:hover { transform: scale(1.08); }

/* ─── Footer ─────────────────────────────────────────────────────────── */
.footer {
  text-align: center;
  padding: 1.5rem 0;
}

/* ─── Clock Bar ──────────────────────────────────────────────────────── */
.clock-bar {
  width: 100%;
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  padding: 0.4rem 0;
  background: transparent;
  color: #000000;
  font-size: 1rem;
}

