:root {
  --box-bg: rgba(30, 27, 26, 0.88);
  --box-border: #5E5236;
  --box-shadow: rgba(0, 0, 0, 0.6);

  --text-body: #E6E1D8;
  --text-muted: #B8B2A8;

  --link-primary: #C9B37E;
  --link-hover: #D8C690;
  --link-visited: #B39A68;

  --text-heading: #C9B37E;
}

body {
  margin: 0;
  font-family: Georgia, Garamond, serif;

  /* Fallback first, variable second */
  color: #E6E1D8;
  color: var(--text-body);

  background-color: black;
}

.photo-bg {
  min-height: 100vh;
  background-image: url("Entrance.jpg");
  background-size: cover;
  background-position: center;
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.text-box {
  position: relative;
  z-index: 1;

  background: var(--box-bg);
  border: 1px solid var(--box-border);
  border-radius: 10px;

  padding: 2rem 2.5rem;
  max-width: 720px;
  width: 90%;

  box-shadow: 0 12px 30px var(--box-shadow);
}

p {
  line-height: 1.6;
  margin-top: 0;
}

h1, h2, h3 {
  color: var(--text-heading);
  font-weight: normal;
}

a {
  color: var(--link-primary);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

a:visited {
  color: var(--link-visited);
}

.muted {
  color: var(--text-muted);
}
