:root{
  --bg: #000000;          
  --panel: #eee1eb;       
  --panel-2: #eee9f1;     
  --ink: #2b2b2b;         
  --hot: #ee4ea2;         
  --hot-dark:#993f8e;
  --btn-bg:#f286be;       
  --btn-edge:#eec2d6;     
  --dot:#ee8fbe;          
}

/* Reset-ish */
*, *::before, *::after { box-sizing:border-box; }
html, body { height:100%; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:"VT323", system-ui, monospace;
  letter-spacing: .3px;
}

a{ color:var(--hot); text-decoration:none; }
a:hover{ text-decoration:underline; }

/* Page frame */
.wrap{
  max-width: 1024px;
  margin: 18px auto 32px;
  padding: 0 14px;
}

/* Banner */
.banner{
  background: var(--panel);
  border: 2px solid var(--btn-edge);
  border-radius: 8px;
  padding: 14px 18px;
  text-align:center;
  margin-bottom:14px;
  position:relative;
}
.banner h1{
  margin:0;
  font-family: "Press Start 2P", system-ui, cursive;
  font-size: 18px;
  letter-spacing: 1.5px;
  color:#333;
}

/* 3-column layout */
.grid{
  display:grid;
  grid-template-columns: 220px 1fr 260px;
  gap: 14px;
}

/* Panels (dotted outline look) */
.panel{
  background: var(--panel-2);
  border-radius: 10px;
  padding: 10px;
  position:relative;
  box-shadow: 0 0 0 2px var(--btn-edge) inset;
}
.panel .dotted{
  border: 3px dotted var(--dot);
  border-radius: 8px;
  padding: 14px;
  background: #fffdfd;
}

/* Left nav */
.nav{
  background: var(--panel);
  padding: 12px;
  border-radius: 10px;
  box-shadow: 0 0 0 2px var(--btn-edge) inset;
}
.nav ul{ list-style:none; margin:0; padding:0; }
.nav li + li{ margin-top:10px; }

.btn{
  display:block;
  padding: 10px 12px;
  background: var(--btn-bg);
  border: 2px solid var(--btn-edge);
  border-radius: 10px;
  text-align:left;
  font-family: "Press Start 2P", monospace;
  font-size: 12px;
  color:#333;
  line-height:1.2;
  position:relative;
  box-shadow:
    0 2px 0 0 #ffffff inset,
    0 -2px 0 0 #f7d8e6 inset,
    0 3px 0 0 var(--btn-edge);
}
.btn:hover{
  transform: translateY(1px);
  box-shadow:
    0 1px 0 0 #ffffff inset,
    0 -1px 0 0 #f7d8e6 inset,
    0 2px 0 0 var(--btn-edge);
  text-decoration:none;
}

/* Small note box in nav */
.note{
  margin-top:12px;
  padding: 12px;
  background:#fffdfd;
  border: 2px dashed var(--dot);
  border-radius: 8px;
  font-size: 20px; 
  line-height:1.1;
}

/* Center content */
.content h2{
  margin: 0 0 10px 0;
  color: var(--hot);
  font-family: "Press Start 2P", monospace;
  font-size: 16px;
}
.content p, .content li{ font-size: 22px; line-height:1.05; }
.content ul{ margin: 6px 0 0 18px; }

.tag{
  display:inline-block;
  background:#fff0f7;
  border:2px dotted var(--dot);
  border-radius:8px;
  padding:4px 8px;
  font-family: "Press Start 2P";
  font-size: 10px;
  margin-left:6px;
  color:#333;
}

/* Right sidebar */
.side h3{
  margin:0 0 10px 0;
  font-family: "Press Start 2P";
  font-size: 14px;
}


/* Footer */
footer{
  margin-top:16px;
  text-align:center;
  font-size: 18px;
  color:#444;
}

.content{ position: relative; z-index: 2; }
.side{ position: relative; z-index: 1; }

/* Mobile: stack columns */
@media (max-width: 950px){
  .grid{
    grid-template-columns: 1fr;
  }
}

img {
  max-width: 100%;   /* don’t overflow panel width */
  height: auto;      /* keep aspect ratio */
  display: block;    /* removes inline gaps */
  margin: 0 auto;    /* center horizontally if smaller */
  image-rendering: pixelated; /* crisp for pixel art */
}

.grid.no-side {
  grid-template-columns: 220px 1fr; /* only two columns now */
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 20px; /* space between icons */
  justify-items: center; /* center icons horizontally */
  text-align: center;
  margin-top: 20px;
}

.icon-item img {
  width: 100px;  /* adjust size smaller or larger */
  height: 100px;
  object-fit: contain;
  image-rendering: pixelated; /* optional if pixel icons */
  transition: transform 0.2s;
}

.icon-item img:hover {
  transform: scale(1.1); /* little hover zoom */
}

.icon-label {
  display: block;
  margin-top: 6px;
  font-size: 14px; /* adjust label size */
  color: #333; /* or your theme color */
  font-family: "Press Start 2P", monospace; /* matches your retro vibe */
}

.faves .ul {
  columns: 2;
  gap: 1.25rem;
  list-style: "✿  ";
  padding-left: 1.2rem;
}
.faves li { margin: .25rem 0; }

.latte-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr); 
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .latte-grid { grid-template-columns: repeat(2, 1fr); } /* 2 across on tablet */
}
@media (max-width: 560px) {
  .latte-grid { grid-template-columns: 1fr; } /* 1 across on phone */
}

.latte-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;       /* square thumbs */
  object-fit: cover;         /* crop nicely */
  border: none;              /* no border */
  border-radius: 0;          /* no rounding */
  background: transparent;   /* no background */
  box-shadow: none;          /* no shadow */
  transition: transform .12s ease;
}

.latte-grid img:hover {
  transform: scale(2);
}

/* Timeline base */
.timeline {
  position: relative;
  list-style: none;
  padding-left: 2.25rem;
  margin: .5rem 0 0;
}

/* Vertical line */
.timeline::before {
  content: "";
  position: absolute;
  left: .8rem;
  top: .4rem;
  bottom: .4rem;
  width: 2px;
  background: linear-gradient(#ff9de6, #8fd3ff);
  opacity: .8;
}

/* Each row */
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 7.5ch 1fr; /* date | place */
  gap: .75rem;
  align-items: start;
  margin: .35rem 0 .85rem;
  line-height: 1.35;
  font-variant-numeric: tabular-nums;
}

/* Dot */
.timeline li::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: .25rem;
  width: .7rem; height: .7rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #ff7ad9;
  box-shadow: 0 0 0 3px #fff;
}

/* Date column */
.timeline time {
  color: #444;
  font-weight: 600;
}

/* Place column */
.timeline span {
  color: #111;
}

/* Small screens: stack nicely */
@media (max-width: 480px) {
  .timeline { padding-left: 2rem; }
  .timeline li { grid-template-columns: 1fr; }
  .timeline time { margin-bottom: .15rem; }
}

.bucket-form {
  font-family: "VT323", monospace; /* matches your retro vibe */
  font-size: 18px;
  display: grid;
  gap: 10px; /* space between items */
}

.bucket-form label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bucket-form input[type="checkbox"] {
  transform: scale(1.3); /* make checkboxes bigger */
  accent-color: #ff8fbe; /* your dotted color */
  cursor: pointer;
}


