body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background-color: #ffffff;
  color: #4b2e2e;
}

:root {
  --menu-width: 200px;
  --menu-padding: 20px;
  --logo-height: 150px;
  --logo-top: 20px;
  --logo-left: 21px;
  --after-logo-gap: 12px;
}

/* Sidebar */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--menu-width);
  height: 100vh;
  background-color: #040615;
  background-image: url("images/GRAPHICS/sidebar3.jpg");
  background-repeat: repeat-y;
  background-position: top center;
  background-size: 100% auto;
  padding: var(--menu-padding);
  box-sizing: border-box;
  z-index: 1000;
}

.menu .logo {
  position: absolute;
  top: var(--logo-top);
  left: var(--logo-left);
  height: var(--logo-height);
  width: auto;
  display: block;
}

.menu h2 {
  margin-top: calc(var(--logo-height) + var(--after-logo-gap));
  margin-bottom: 12px;
  text-align: center;
  color: #79E4FF;
}

.menu a {
  display: block;
  margin: 10px 0;
  color: #79E4FF;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.menu a:hover {
  color: #ffffff;
}

/* Content */
.content {
  margin-left: var(--menu-width);
  padding: 40px;
  max-width: 800px;
}

header h1 {
  font-size: 2.5em;
  color: #ff6f61;
  margin-bottom: 0.2em;
}

.tagline {
  font-size: 1.2em;
  color: #6b4c4c;
  margin-bottom: 1.5em;
}

/* Promo Section */
.promo p {
  font-size: 1em;
  margin-bottom: 20px;
}

.bobzone {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: linear-gradient(to right, #fdf6f0, #fff);
  padding: 20px;
  border-radius: 8px;
}

.bobzone a {
  text-decoration: none;
}

.bobzone img {
  width: 128px;
  height: 128px;
  border: 2px solid #4b2e2e;
  transition: transform 0.2s;
  display: block;
}

.bobzone img:hover {
  transform: scale(1.05);
}
/* Gallery Section */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.gallery img {
  width: 200px;
  height: auto;
  cursor: pointer;
  border: 2px solid #4b2e2e;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/*scrolly thing for crochet mapper*/
#chartOutput {
  overflow-x: auto;
  white-space: nowrap;
}

/* Lightbox Overlay */
#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

#lightbox-img {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.sigil-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}


#close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  z-index: 2100;
}