/* ===========================================================
   THE PORTAL // SUPER SIMPLE DARK MODE // EARLY INTERNET
   =========================================================== */

/* --- Pixel Font Import (Choose one) ---
   Options: "Press Start 2P" (chunky pixel font),
            "VT323" (terminal monospace),
            "Pixelify Sans" (modern pixel)
*/

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

/* CHOOSE YOUR FONT HERE */
:root {
  --pixel-font: "Press Start 2P", monospace;
  /* for a more readable pixel font: "VT323" */
  --body-font: "VT323", monospace;

  --bg: #fa434c; /* deep black */
  --fg: #f9e5c6;     /* light gray text */
  --link: #66ddff;   /* neon cyan link */
  --link-hover: #ff9427; /* pink hover */
  --border: #444;    /* subtle borders */
}

/* --- BASIC RESET --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Fullscreen static background image */
.bg-static {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -3;           /* way behind everything */
  pointer-events: none;  /* don't block clicks */
}

/* Side art strips */
.side-art {
  position: fixed;
  top: 0;
  width: 160px;          /* adjust width */
  height: 100vh;
  background-size: cover;
  background-position: center;
  opacity: 0.3;          /* subtle so it doesn't overpower */
  pointer-events: none;
  z-index: -2;
}

.side-art.left {
  left: 0;
  background-image: url("sidebar-left.png");   /* your art */
}

.side-art.right {
  right: 0;
  background-image: url("images/sidebar-right.png");  /* your art */
}


html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body-font);
  font-size: 18px; /* readable but retro */
  line-height: 1.5;

}
.screenshot-grid img {
  width: 100%;
  max-width: 280px; /* adjust this number to control size */
  height: auto;
  border: 2px solid #3a0000;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.25);
  margin: auto;
}



/* --- HEADER --- */
header {
  text-align: center;
  margin-bottom: 25px;
}

header h1 {
  font-family: var(--pixel-font);
  font-size: 22px;
  margin-bottom: 5px;
}

header h2 {
  font-family: var(--pixel-font);
  font-size: 14px;
  color: #aaa;
}

/* --- NAVIGATION --- */
nav {
  margin: 15px 0;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

nav a {
  font-family: var(--pixel-font);
  font-size: 12px;
  color: var(--link);
  text-decoration: none;
  margin: 0 10px;
}

nav a:hover {
  color: var(--link-hover);
}

/* --- SECTIONS --- */
section {
  margin-bottom: 35px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}

section h3 {
  font-family: var(--pixel-font);
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--link-hover);
}

/* --- CARDS / SIMPLE BOXES --- */
.card {
  border: 1px solid var(--border);
  padding: 15px;
  margin-bottom: 15px;
  background: #080808;
}

.card img {
  max-width: 100%;
  display: block;
  margin-bottom: 10px;
}

/* --- GALLERY GRID (simple, responsive) --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.gallery-grid img {
  width: 100%;
  border: 1px solid var(--border);
}

/* --- LOG POSTS --- */
.post {
  border: 1px solid var(--border);
  padding: 15px;
  background: #080808;
  margin-bottom: 20px;
}

.post-title {
  font-family: var(--pixel-font);
  font-size: 14px;
  margin-bottom: 5px;
}

.post-date {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

/* --- FOOTER --- */
footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #666;
  margin-top: 40px;
}
/* Center the main content column a bit */
.page-wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

/* Row that holds all Bandcamp embeds */
.embeds-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;  /* center as a group */
  gap: 2rem;                /* space between embeds */
  margin-top: 1rem;
}

/* Each embed + its button */
.embed-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;       /* center iframe + button */
}

/* Optional: smaller retro button */
.btn.small-btn {
  font-family: var(--pixel-font);
  font-size: 10px;
  padding: 4px 10px;
  text-decoration: none;
  border: 1px solid var(--border);
  background: #080808;
  color: var(--link);
}

.btn.small-btn:hover {
  color: var(--link-hover);
  border-color: var(--link-hover);
}

