/* villr style.css — "ink on paper" look */

:root {
  --bg: #F5EFD7;   /* cream background (paper) */
  --ink: #000000;  /* black text (ink) */
  --accent: #3C261A; /* deep brown, can use for borders */
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, serif; /* serif for bookish feel */
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

/* Header / nav */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em;
  height: 60px;
  background-color: var(--bg);
  border-bottom: 2px solid var(--accent);
  position: relative;
  z-index: 2;
}

.brand {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--ink);
  text-decoration: none;
}

.menu-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  border: none;
  background: none;
}

.menu-button .bar {
  height: 3px;
  width: 25px;
  background: var(--ink);
  margin: 3px 0;
}

/* Dropdown menu */
.dropdown {
  display: none;
  position: absolute;
  top: 60px;
  right: 1em;
  background: var(--bg);
  border: 1px solid var(--accent);
  min-width: 150px;
  box-shadow: 2px 2px 6px rgba(0,0,0,0.2);
}

.dropdown a {
  display: block;
  padding: 0.75em 1em;
  text-decoration: none;
  color: var(--ink);
  font-size: 1em;
}

.dropdown a:hover {
  background-color: #E7CFA0; /* soft tan hover */
}

.dropdown.active {
  display: block;
}

/* Page layout */
main {
  padding: 2em;
}

/* Link blocks (store, YouTube, etc.) */
.link-block {
  padding: 1em;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--accent);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.link-block a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
}

.link-block a:hover {
  text-decoration: underline;
}