/* Updated styling for Y2K vibes and left column adjustments */

body {
  background-image: url('abtmephotos/pinkdiamond.jpg'); /* replace with your image */
  background-size: cover;       /* make it cover the whole page */
  background-position: center;  /* center the image */
  background-repeat: no-repeat; /* don’t repeat the image */
  font-family: 'Verdana', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  cursor:url("abtmephotos/buncur.png"), auto;
}

/* Top link strip */
.top-links {
  background: linear-gradient(90deg, #FD3B8A, #01ACCE, #C0E37A, #FD80B2);
  padding: 10px;
  text-align: center;
}
.top-links a {
  color: white;
  font-weight: bold;
  margin: 0 10px;
  text-decoration: none;
}

/* Page grid */
.page {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
  padding: 20px;
  align-items: start;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.column.left {
  width: 180px; /* thinner left column */
  position: relative; /* enable offsets */
  left: 140px; /* move it toward the center */
}


.column.center {
  position: relative;
  top: 60px;  /* moves center column down */
}


.column.right {
  max-height: fit-content;
  top: 100px;
}

/* Boxes */
.box {
  padding: 15px;
  border: 2px solid #01ACCE;
  border-radius: 0;
  background: #FFF;
  position: relative;
}

/* Profile box */
.profile-box {
  height: auto;      /* important */
  min-height: unset; /* remove any min-height if set earlier */
  border-color: #FD3B8A;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pfp {
  width: 100%;
  height: auto;      /* this is the key */
  max-width: 160px;  /* keeps it contained */
  border: 3px solid #FD3B8A;
}

/* Simples box inside profile */
.simples {
  width: 100%;
  text-align: left; /* move text to left */
  padding: 10px;
  font-family: 'Starborn', 'Curly', 'Comic Sans MS', sans-serif;
  font-size: 13px;
}


.column.right {
  width: 220px;
  position: relative;
  top: 200px; /* slightly lower than center */
}

.standin {
  border: 2px dashed #FD3B8A;
  background: #FFF0F5;
  font-size: 14px;
}

.standin h3 {
  margin-top: 0;
  font-size: 16px;
  text-transform: lowercase;
}

/* STAMPS SECTION */
.stamps-box {
  margin-top: 40px;
  padding: 15px;
}

.stamps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stamps-grid img {
  width: 88px;
  height: auto;
}






.photo-stack {
  border-color: #51C8B7;
}

.main-content { border-color: #C0E37A; }
.likes-dislikes { display: flex; gap: 10px; }
.likes-dislikes .inner { flex: 1; border: 2px solid #FD3B8A; padding: 10px; font-family: 'Verdana', 'Arial', sans-serif; }
.favorites { border-color: #F3F88D; }
.fun-facts { border-color: #FD3B8A; }
.stickers { border-color: #01ACCE; text-align: center; }
.now-playing { border-color: #00B1D4; background: #E0FFFF; }
.currently { border-color: #FD3B8A; background: #FFF0F5; }
.photo-box img, .photo-stack img { width: 100%; margin-bottom: 10px; border: 2px solid #C0E37A; transform: rotate(-2deg); }
.photo-box img:nth-child(even), .photo-stack img:nth-child(even) { transform: rotate(3deg); }

