@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Courier+Prime:ital@0;1&display=swap');

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #5DAC81, #FAF8F4, #E87A90);
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #2c2c2c;
}

header {
  font-size: 2.5rem;
  color: #2c2c2c;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1;
}

.navbar {
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
}

.navbar li {
  margin-bottom: 1rem;
}

.navbar a {
  text-decoration: none;
  color: #4a4a4a;
  font-size: 1rem;
  font-family: 'Courier Prime', 'Courier New', monospace;
  padding: 0.5rem 1.2rem;
  transition: color 0.2s;
}

.navbar a:hover {
  color: #E87A90;
}

.contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  margin-top: 0;
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}

.contact ul {
  list-style: none;
  padding: 1.2rem 2rem;
  margin: 0;
  font-family: 'Courier Prime', 'Courier New', monospace;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  align-items: flex-start;
}

.contact li {
  font-size: 0.95rem;
  color: #4a4a4a;
}

.contact a {
  color: #5DAC81;
  text-decoration: none;
  transition: color 0.2s;
}

.contact a:hover {
  color: #E87A90;
  text-decoration: underline;
}

/* ── Centre photo ────────────────────────────────────────────── */
.me-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.me-photo img {
  height: 72vh;
  width: auto;
  display: block;
  object-fit: contain;
}

