* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, sans-serif;
}

body {
  line-height: 1.6;
}

h3 {font-weight: 500!important;}

.hyperlink {
  color: #3ec8ff; text-decoration: none; font-weight: 500;
}

/* Container = 66% */
.container {
  width: 66%;
  max-width: 1440px;
  margin: 0 auto;
}

.album {
  display: flex; flex-direction: row; justify-content: space-between;
}

.album div {padding: 35px 0;}


/* Header */

.header {
    position: relative;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid grey;
    color: black;

}

.gradient-border {
  border-width: 4px;
  border-style: solid;
  border-image: linear-gradient(100deg,
        rgba(5, 25, 35, 0.9) 0%,
        rgba(20, 60, 80, 0.8) 50%,
        rgba(10, 10, 15, 0.9) 100%) 1;
  /* '1' is the border-image-slice value */
}   


.floating-dock {
  position: fixed;

  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 14px 14px;
  box-shadow:
  0 8px 30px rgba(0,0,0,0.4),
  0 0 20px rgba(62,200,255,0.2);

  background: linear-gradient(
    100deg,
    rgba(5, 25, 35, 0.9) 0%,
    rgba(20, 60, 80, 0.8) 50%,
    rgba(10, 10, 15, 0.9) 100%
);

  background-size: 400% 400%;
  animation: dockGlow 10s ease infinite;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.089);
  border-radius: 999px;
  z-index: 9999;
}

@keyframes dockGlow {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
}



.floating-dock a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 28px;

    color: #d0d0d0;
    text-decoration: none;

    border-radius: 50%;

    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background 0.2s ease;
}

.floating-dock a:hover {
    color: #3ec8ff;

    background: rgba(62, 200, 255, 0.12);

    transform: translateY(-3px);
}

.floating-dock a:nth-child(3):hover {
    color: #1DB954;
}

.floating-dock a:nth-child(4):hover {
    color: #FF0000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: rgb(11, 180, 223);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.social-links a {
    color: #aaa;
    font-size: 1.3rem;
    transition: all 0.2s ease;
}

.social-links a:hover {
    color: rgb(11, 180, 223);
    transform: translateY(-2px);
}


/* Discography */

.album-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.album-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .3s ease;
}

.album-card:hover img {
    transform: scale(1.05);
}

/* Overlay */

.album-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: rgb(221, 221, 221);

    padding: 1.5rem;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.85)
        );

    opacity: 0;
    transition: opacity .3s ease;
}

.album-card:hover .album-overlay {
    opacity: 1;
}

/* Modal */

.modal {
  display: none;
  position: relative;
  top:20px;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 1000;
}  




/* Grid */

.discography-grid {
    width: 66%;
    max-width: 1440px;
    margin: 50px auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}






/* Sections */

.section {
  min-height: 80vh;
  padding: 80px 0;
  background: #f7f7f7;
}

.section.alt {
  background: #fff;
}

.hero {
  background: linear-gradient(120deg, #eaeaea, #ffffff);
}

.hr {
  width: 13%; margin: 12px 0; border-style: dashed; color: #ccc;
}

.tracklist {
  margin: 15px 25px;
}

/* Footer */

.footer {
  background: #111;
  color: #ccc;
  padding: 24px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}

.footer ul {
  list-style: none;
  display: flex;
  gap: 16px;
}

.footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}



/* Responsive */

@media (max-width: 768px) {
  .container {
    width: 90%;
  }


  .navbar {
      flex-direction: column;
      gap: 1rem;
  }

  .nav-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
  }

  .social-links {
      justify-content: center;
  }


  .floating-dock {
    right: 20px;
    bottom: 12px;
    padding: 8px 12px;
    gap: 0.2rem;
  }

  .floating-dock a {
      width: 40px;
      height: 40px;
  }



}



/* Discography-Grid */

@media (max-width: 900px) {
    .discography-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .discography-grid {
        grid-template-columns: 1fr;
    }
}
