
/* GLOBAL */
html,
body {
  height: 100%;
  margin: 0;
  background-color: var(--white);
}

.outer-container {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: center; */
  /* border: 1px solid red; */
  /* min-height: 100%; */
}

/* NAVBAR */
.top-z{
    z-index: 100;
}

.outer-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  /* border: 1px solid blue; */
  position: sticky;
  top: 0;
}

.inner-nav{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  /* border: 1px solid orange; */
}

.text-icon-button-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.25rem;
  /* border: 1px solid green; */
  background-color: var(--white);
  cursor: pointer;
}

.text-icon-button-box img {
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}

.text-icon-button-box a {
  font-family: "sohne-bold";
  font-weight: 600;
  font-style: normal;
  font-size: 1rem;
  /* color: var(--black); */
}

/* ////////// LANDING PAGE ////////// */

/* ALBUMS/TITLES CONTAINER */
.outer-content-container {
  /* margin-top:5rem; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* border: 1px solid cyan; */
  width: 100%;
  height: 85vh;
}

.inner-content-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* border: 1px solid red; */
  width: 90vw;
  max-height: 90vh;
}

.album-cover-box{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  /* border: 1px solid orange; */
  width: 100%;
}

.album-cover-img{
  width:15rem;
  height:15rem;
}

/* ABOUT */

.supplementary-content-container{
  margin-top:5rem;
  display: flex;
  flex-direction: column;
  /* border: 1px solid orange; */
  width: 80vw;
  /* gap:4rem; */
}

.outer-about-container{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* border: 1px solid pink; */
  gap:2rem;
}

.about-container{
  /* border:1px red solid; */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex:1;
}

.outer-flipbook-container{
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  /* border: 1px solid purple; */
}

.about-caption-text{
  position:relative;
  top:50%;
  left:0;
  text-align:center;
  color: var(--white);
}

.flipbook {
    width: 100%;
    height: 500px;
    display: flex;
    flex-direction:column;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    flex:1;
    /* border: 1px solid cyan; */
    /* justify-content: space-between; */
}

.flipbook img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
    display: block;
    align-self:center;
}

/* FOOTER */
footer{
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 1rem;
  /* border: 1px solid green; */
  margin-top:4rem;
  margin-bottom:1rem;
}

/* MEET THE ALBUMS */
.album-links{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  /* border: 1px solid orange; */
}

/* ////////// ALBUMS PAGE ////////// */

.outer-album-content-container {
  margin-top:3rem;
  display: flex;
  flex-direction: column;
  /* border: 1px solid cyan; */
  width: 80vw;
  gap:4rem;
  min-height: 100vh;
  max-width: 1200px;
}

.album-about-container{
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* border: 1px solid pink; */
  gap:2rem;
}


.album-start-container{
  /* border:1px red solid; */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex:1;
  padding-right:2rem;
}

.album-flipbook-container{
  width: 45%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  /* border: 1px solid purple; */
}


/* .outer-flipbook-container{
  width: 100%;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: 1px solid purple;
} */

/* lyrics part */
.lyrics-box{
  display:flex;
  flex-direction:row;
  flex-wrap:wrap;
  /* border:1px solid navy; */
  gap: 1rem;
  margin-bottom:2rem;
  justify-content:center;
}

.song-box{
  display:flex;
  flex-direction:column;
  gap:1.5rem;
  /* border:1px solid fuchsia; */
  flex:1;
  min-width: 275px;
  max-width: 300px;
}

.album-caption-text{
  position:relative;
  top:50%;
  left:0;
  text-align:center;
  color: var(--white);
}



/* caption text to hover on images */
@media screen and (max-width: 1200px) {
  .about-caption-text{
      top:33%;
  }

    .album-caption-text{
      top:45%;
  }
}

/* caption text to hover on images */
@media screen and (max-width: 900px) {
  .about-caption-text{
      top:33%;
  }

  .album-caption-text{
      top:33%;
  }
}

/* columns breakpoint */
@media screen and (max-width: 800px) {
  .album-about-container{
    flex-direction: column;
    align-items: center;
  }

  .album-flipbook-container{
    width: 100%;
  }

  .outer-about-container{
    flex-direction: column;
    align-items: center;
  }

  .about-caption-text{
      top:40%;
  }

    .album-caption-text{
      top:50%;
  }
}