.album-folder-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  margin-top: 18px;
  padding: 11px 26px;

  background: #c9a24d;
  color: #fffdf8;

  border: 1px solid #c9a24d;
  border-radius: 30px;

  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.8px;

  cursor: pointer;
  text-decoration: none;

  box-shadow: 0 5px 15px rgba(110, 95, 75, 0.15);

  transition: all 0.3s ease;
}

.album-folder-button i {
  font-size: 20px;
  line-height: 1;
}

.album-folder-button:hover {
  background: #c9a24d;
  border-color: #9d8b70;
  color: #ffffff;

  transform: translateY(-3px);

  box-shadow: 0 8px 20px rgba(110, 95, 75, 0.25);
}

.album-folder-button:active {
  transform: translateY(-1px);
}


















/* ===========================
   MUSIC PAGE SCROLL ANIMATION
=========================== */

.music-hero .album-cover,
.music-hero .col-lg-8,
.music-albums-heading,
.album-folder-card,
.footer-cta .container {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s ease;
}


/* LEFT IMAGE */

.music-hero .album-cover {
    transform: translateX(-80px);
}


/* RIGHT TEXT */

.music-hero .col-lg-8 {
    transform: translateX(80px);
}


/* ACTIVE ANIMATION */

.music-hero .album-cover.show,
.music-hero .col-lg-8.show,
.music-albums-heading.show,
.album-folder-card.show,
.footer-cta .container.show {

    opacity: 1;
    transform: translate(0);
}


/* CARD DELAY */

.album-folder-card:nth-child(2){
    transition-delay: .2s;
}


.album-folder-card:nth-child(3){
    transition-delay: .4s;
}


/* SMOOTH PAGE */

html {
    scroll-behavior: smooth;
}


