/* Retro-futuristic aesthetic inspired by Kaliber10000 */
/* ---------- GLOBAL ---------- */
body {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  background: #f4f4f0;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 10px;
}

/* ---------- HEADER ---------- */
.retro-header {
  background: #dfe7d8;
  border: 2px solid #9da98c;
  padding: 10px;
  margin-bottom: 10px;
}

.profile-section {
  display: flex;
  align-items: center;
}

.profile-pic {
  width: 80px;
  height: 80px;
  background: #bbb;
  border: 2px solid #999;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;           /* makes the img stay inside the circle */
  border-radius: 50%;         /* makes it circular */
}

.profile-pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* fits the image neatly */
  border-radius: 50%;         /* ensures image itself is circular */
}

.pic-placeholder {
  font-size: 2rem;
}

.header-text h1 {
  margin: 0;
  font-size: 2rem;
  text-transform: lowercase;
  color: #556b2f;
}

.tagline {
  margin: 5px 0;
  font-size: 0.9rem;
}

.social-links {
  margin-top: 5px;
}

.social-link {
  font-size: 0.8rem;
  margin-right: 10px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px dotted #999;
}

.social-link:hover {
  color: #556b2f;
}

/* ---------- NAV ---------- */
.main-nav {
  display: flex;
  justify-content: space-around;
  background: #e9efe3;
  border: 2px solid #9da98c;
  margin-bottom: 10px;
}

.nav-item {
  padding: 10px;
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
}

.nav-item:hover {
  background: #cdd7c1;
}

/* ---------- BOXES ---------- */
.box {
  border: 2px solid #9da98c;
  padding: 10px;
  background: #ffffff;
  margin-bottom: 10px;
}

.box-mini {
  border: 1px solid #9da98c;
  padding: 8px;
  background: #f9f9f7;
}

/* ---------- CONTENT ---------- */
.content-section h2 {
  text-transform: lowercase;
  font-size: 1.2rem;
  border-bottom: 1px solid #9da98c;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.quick-facts ul {
  padding-left: 20px;
  margin: 0;
}

/* ---------- INTERESTS GRID ---------- */
.interests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.interest-card h3 {
  margin-top: 0;
  font-size: 1rem;
  color: #556b2f;
}

.interest-icon {
  font-size: 2rem;
}

/* ---------- MUSIC ---------- */
.music-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.track-info {
  display: flex;
  align-items: center;
}

.album-art {
  width: 60px;
  height: 60px;
  background: #bbb;
  margin-right: 10px;
  /* ADD album cover with background-image here */
}

.progress-bar {
  width: 100%;
  height: 5px;
  background: #ccc;
  margin-top: 5px;
  overflow: hidden;
}

.progress {
  height: 5px;
  background: #556b2f;
  width: 0%;
  transition: width 0.5s;
}

.playlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.spotify-link {
  font-size: 0.8rem;
  text-decoration: none;
  color: #333;
  border-bottom: 1px dotted #999;
}

.spotify-link:hover {
  color: #556b2f;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}

.artwork {
  width: 100%;
  height: 100px;
  border: 1px solid #9da98c;
}

/* ---------- LINKS GRID ---------- */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  text-align: center;
}

.link-card {
  text-decoration: none;
  color: #333;
  display: block;
}

.link-card:hover {
  background: #e9efe3;
}

/* ---------- FOOTER ---------- */
.retro-footer {
  background: #dfe7d8;
  border: 2px solid #9da98c;
  padding: 10px;
  text-align: center;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  margin: 0 5px;
}

.footer-links a:hover {
  color: #556b2f;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .music-content {
    flex-direction: column;
  }
}
