@font-face {
    font-family:'13misa';
    src: url('/fonts/13_Misa.TTF') format('truetype');
}

@font-face {
    font-family: 'Ethereal';
    src: url('/fonts/EtherealDemo-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Ethereal', sans-serif;
    min-height: 100vh;
    background: url('IMG_0567.PNG') no-repeat center center;
    background-size: 100% 100%;
    color: white;
    padding: 50px;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-family: '13misa', sans-serif;
}

.container {
  display: flex;
  gap: 100px;
  flex-wrap: wrap;
  justify-content: center;
}

/* go back to your original translucent-box */
.translucent-box {
  background: rgba(0, 0, 0, 0.3);
  padding: 30px;
  border-radius: 10px;
  width: 350px;
  height: 500px;
  backdrop-filter: blur(5px);
}

/* card styling inside */
.info-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* updated: only text glow */
.info-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* smooth text glow on the words inside the link */
.info-link h3,
.info-link p {
  transition: text-shadow 0.25s ease;
}

.info-link:hover h3,
.info-link:hover p {
  text-shadow: 0 0 8px rgba(220, 190, 255, 1);
}

h1 {
    font-size: 2rem;
    margin: 0 0 20px 0;
}

h2 {
    font-size: 1.5rem;
    margin: 0 0 10px 0;
}

p {
    margin: 0;
    line-height: 1.6;
}
/* smaller, left-side profile bar */
.profile-box {
  position: fixed;              /* starts on left of screen */
  top: 60px;
  left: 20px;
  z-index: 1000;
  width: 360px;                 /* about half your big boxes */
  background: rgba(0, 0, 0, 0.3);   /* same translucency as .translucent-box */
  padding: 16px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  display: flex;
  gap: 12px;
  cursor: move;                 /* shows it can be dragged */
}
.profile-box {
  position: fixed;   /* keep this */
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 1000;
  width: 360px;
  background: rgba(0, 0, 0, 0.3);
  padding: 16px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  display: flex;
  gap: 12px;
  cursor: move;
}



.profile-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

#profile-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  object-fit: cover;
  cursor: pointer;
}

.avatar-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.avatar-choices img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.avatar-choices img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.profile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.profile-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-row label {
  font-size: 0.8rem;
  opacity: 0.8;
}

#mood {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  padding: 4px 6px;
  color: white;
  font-family: 'Ethereal', sans-serif;
  font-size: 0.8rem;
  box-sizing: border-box;
}


#mood:focus,
#notes {
  width: 150px;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 18px
    );
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  padding: 6px 8px;
  color: white;
  font-family: 'Ethereal', sans-serif;
  font-size: 0.8rem;
  line-height: 1.4;
  resize: vertical;
  box-sizing: border-box;
}

/* MUSIC LIST _________________________________________________________________*/

.song-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.song-list li {
  margin: 10px 0;
  padding: 8px 14px;
  background: rgba(255,255,255,0.10);
  border-radius: 6px;
  font-size: 1em;
}

.song-title {
  font-weight: bold;
  color: #fff; /* Change if you want a different highlight */
}

.song-artist {
  color: #aecff7;
  margin-left: 10px;
}

