/* style.css — MiamiArchive reconstruction */

/* Palette */
:root{
  --bg:#0e0e0e;
  --text:#e8e8e8;
  --muted:#7b7b7b;
  --accent:#ffffff;
  --card:#151515;
  --mono:"Courier New", monospace;
  --serif:"Georgia","Times New Roman",serif;
  --maxw:1200px;
}

/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,"Helvetica Neue",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
}

/* Layout */
.wrap{
  max-width:var(--maxw);
  margin:32px auto;
  padding:20px;
}

/* Header + Nav */
.brand{
  font-family:var(--mono);
  font-size:20px;
  letter-spacing:2px;
  color:var(--accent);
}
.strap{
  color:var(--muted);
  font-size:13px;
  margin:6px 0 18px 0;
}
.nav{
  display:flex;
  gap:16px;
  margin-bottom:28px;
}
.nav a{
  color:var(--muted);
  font-size:13px;
  text-decoration:none;
}

/* ---- COLLECTION GRID ---- */
.collection-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:36px;
  margin-top:20px;
}

.collection-item{
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* Square thumbnail */
.collection-thumb{
  width:100%;
  aspect-ratio:1/1;
  overflow:hidden;
  border-radius:6px;
  background:var(--card);
  border:1px solid rgba(255,255,255,0.05);
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
}

/* Image inside thumb */
.collection-thumb img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:left top; /* ← this makes them align left */
}

/* Titles */
.magnet-title{
  font-size:15px;
  font-weight:500;
  color:var(--accent);
}
.magnet-sub{
  font-size:13px;
  color:var(--muted);
}

/* Back link */
.back{
  margin-top:48px;
  display:inline-block;
  font-size:13px;
  color:var(--muted);
}

.update-page main {
  margin-top: 80px; /* adjust: 60px–140px depending on taste */
}

/* Responsive */
@media(max-width:600px){
  .collection-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
}
/* --- TYPOGRAPHY REFINEMENT — MiamiArchive --- */

body {
  font-family: system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  color: #e6e6e6;
  line-height: 1.75;
  font-size: 18px;
  letter-spacing: 0.2px;
}

/* Headline style (very intentional, quiet confidence) */
h1, h2, h3 {
  font-family: "Courier New", monospace;
  font-weight: 500;
  letter-spacing: 2px;
  margin-top: 48px;
  margin-bottom: 16px;
  color: #ffffff;
}

/* Subtitle block — archive voice */
.subtletext,
main p {
  max-width: 700px;
  margin: 16px 0;
  font-size: 19px;
  font-weight: 300;
  opacity: 0.85;
}

/* Extra spacing before the button */
.description-block {
  margin-bottom: 40px;
}

/* The button — archive object entry */
button, .enter-object {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #ffffff;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 4px;
}

button:hover, .enter-object:hover {
  border-color: #ffffff;
  background: #ffffff;
  color: #000;
}

/* Footer text refinement */
footer, small {
  margin-top: 60px;
  font-size: 13px;
  opacity: 0.45;
  letter-spacing: 0.5px;
}

.update-page main {
  margin-top: 80px; /* adjust: 60px–140px depending on taste */
}