body {
    background-image: url("/assets/bg/bricks.webp");
    background-repeat: repeat;
    background-size: 250px;
    height: 100vh;
}

.container {
    display: flex;
    gap: 45px;
    padding-left: 60px;
    height: 80%;
}

.columnOne, .columnTwo {
    flex: 1;           /* makes both columns same width */
    display: flex;
    flex-direction: column;
}


.columnOne{
    position: relative;
}

.musicShelf {
    flex: 1;               /* fill column height */
    display: flex;
    align-items: stretch;   
    justify-content: space-between;
    flex-wrap: wrap;
    min-width: 478px;
    object-fit: cover;
    gap: 20px;

    position: relative;
    z-index: 1;
}

.musicShelf img {
    width: 100%;      /* scale width with column */
    height: auto;     /* maintain aspect ratio */
    max-height: 100%; /* never taller than column */
    display: block;
}

.musicShelfContent {
    position: absolute;

    top: 10%;               
    left: 4%;              
    width: 93%;
    height: 87%;

    z-index: 2;
    
    display: grid;
    row-gap: 3rem;
    column-gap: 1.25rem;
    align-content: start;

    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    justify-items: center;

    /* border: 2px solid black; */
}


/*ALBUM BUTTON AND THUMBNAIL STYLING */

.album-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.albumContainer {
  width: 100%;
  /* keep a square container using aspect-ratio */
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  position: relative;
}

.album-btn:hover {
  transform: translateY(-6px) scale(1.05);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.4));
  /* transform: rotate(3deg); */
}

.album-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.columnTwo {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 20px;
}

/* STATIC INFO */

.rowOne {
    width: 100%;
    height: 160px;

    display: flex;
    flex-direction: row;
    align-self: flex-start;
    justify-content: right;

    padding-bottom: 30px;
}

.speechBubble {
    position: relative;      /* important — allows text to layer on top */
    display: inline-block;
}

/* text inside bubble */
.speechBubble p {
    position: absolute;      /* place text over bubble */
    top: 12%;
    left: 2%;

    width: 70%;              
    text-align: left;

    color: #000;
    font-family: "StarJR Large Compressed";
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
    pointer-events: none;     /* text won't block clicks */
}


.elipsePlaceHolder {
    border-radius: 159px;
    border: 2px solid #000;
    background: url(/assets/img/profilePicture.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 159px;
    height: 159px;
}

/* ALBUM COVER AND DETAILS */

.rowTwo {
    width: 100%;
    margin: 0;
    padding: 0;

    display: inline-flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
}

.albumContainer{
    width: 320px;
    /* border: 2px solid black; */
}

.albumContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.albumInfoContainer {
    width: 100%;
    height: 320px;

    background-color: #ff7300;
    border: 1px solid black;
    padding: 5px 20px 5px 20px;

    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.albumInfoContainer h1 {
    font-family: "Ishmeria", sans-serif;
    font-size: 36px;
    color: black;
}

.albumInfoContainer h2 {
    font-family: "StarJR Large Compressed";
    font-size: 24px;
    color: black;
}

/* EMBEDDED MEDIA PLAYER */

.rowThree {
    width: 100%;
    height: fit-content;
    
    display: flex;
    flex-direction: row;
    gap: 20px;
    background-color: transparent; /* optional */
}

#musicplayer.mp-wrapper {
    flex: 1;       /* take up proportional space */
    max-width: 400px; /* optional max width */
}

/* DESCRIPTION */

.albumDescription {
    flex: 2;       /* description takes more space */
    min-width: 200px;
    height: 100%;
    background-color: rgb(255, 115, 0);
    border: 1px solid black;
    padding: 5px 20px;
    box-sizing: border-box;
}

.albumDescription p {
    font-family: "StarJR Large Compressed";
    /*font-size: 24px;
    color: black; */
    /* font-family: "IBM Plex Mono", monospace; */
    font-size: 20px;
    color: black;
    font-weight: 500;
}


/* RETURN BUTTON */

.rowFive {
    display: flex;               
    justify-content: flex-end;   
    width: 100%;                
    height: fit-content;           
    padding: 5px 0;              
}

.returnButton {
    text-decoration: none;
    font-family: "StarJR Large Compressed";
    font-size: 24px;
    color: white;
    padding: 8px 16px;
    background: none;
    width: fit-content;
    background-color: #0000FE; 

    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.arrowIcon {
  width: 47px;   /* same as original SVG */
  height: 12px;
}