/* ==============================
   Global Styles
   ============================== */
body {
  margin: 0;
  font-family: "Georgia", serif;
  background-color: #0d0d0d;   /* dark background */
  color: #e0e0e0;              /* light text */
  display: flex;
}

/* ==============================
   Sidebar
   ============================== */
.sidebar {
  height: 100vh;
  width: 230px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #111;
  padding-top: 20px;
  padding-left: 20px;
  border-right: 4px solid #330000; /* gothic red accent */
}

.sidebar a {
  display: block;
  color: #b3b3b3;
  padding: 12px 20px;
  text-decoration: none;
  transition: 0.3s;
  font-family: "Nostalgia", Georgia, serif;
  letter-spacing: 1px;
}

.sidebar a:hover {
  background-color: #330000;
  color: #e60000;
  text-shadow: 0 0 5px #660000;
}

/* ==============================
   Content Area
   ============================== */
.content {
  margin-left: 260px;   /* pushes content beside sidebar */
  padding: 30px;
  max-width: 800px;
}

.header-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  border-bottom: 2px solid #660000;
}

/* ==============================
   Typography
   ============================== */
h1, h2, h3 {
  font-family: "Nostalgia", Georgia, serif;
  color: #b30000; /* deep vampiric red */
  text-shadow: 0 0 10px #000;
}

p {
  line-height: 1.6;
  margin-bottom: 1em;
}

/* ==============================
   Custom Font (Nostalgia)
   ============================== */
@font-face {
  font-family: 'Nostalgia';
  src: url('fonts/Nostalgia.ttf') format('truetype');
}
