
/* Example CSS content */
body { background-color: black; color: white; font-family: 'Garamond', serif; }
.navbar ul { list-style-type: none; }
.navbar ul li { display: inline; margin-right: 20px; }
/* ───────────────────────────────────────────────────────────────────────── */
/* Vesselborn header/nav styles                                          */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  background: #111;
  box-shadow: 0 2px 4px rgba(0,0,0,0.5);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.nav-logo {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  color: #eaeaea;
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

.nav-list a:hover {
  color: #fff;
}
/* ───────────────────────────────────────────────────────────────────────── */
/* ───────────────────────────────────────────────────────────────────────── */
/* Footer styling                                                         */
.site-footer {
  background: #000;
  border-top: 1px solid #222;
  padding: 2rem 0;
  color: #888;
}

.footer-nav {
  text-align: center;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: #aaa;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin: 0 0.5rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-separator {
  color: #444;
}

.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: #555;
  margin: 0;
}
/* ───────────────────────────────────────────────────────────────────────── */

