/* Reset & basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'k2d', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    width: 100%;
    height: 70px;
    background-color: #000000;
    background-image: url(images/pos7logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-top: 30px;
    margin-bottom: 10px;
}

/* Social Icons */
.social-icons {
    width: 80%;
    max-width: 400px;
    margin: 10px auto 30px auto;
    display: flex;
    justify-content: space-between;
}

.social-icons a {
  font-size: 30px;
  color: rgba(255, 255, 255, 0.3); /* Resting gray */
  text-decoration: none;
  transition: color 1.5s linear; /* Fade-out only */
}

.social-icons a:hover {
  transition: none; /* Instant color change on hover */
}

.social-icons img.social-img {
  width: 34px; /* Match other icons */
  height: 34px;
  cursor: pointer;
  filter: brightness(0.4);
  transition: filter 1.7s linear; /* Fade-out only */
}

.social-icons img.social-img:hover {
  filter: brightness(1); /* Full brightness on hover */
  transition: none; /* Instant change on hover */
}

/* Individual hover colors */
.social-icons a .fa-instagram { 
  color: rgba(255, 255, 255, 0.3); 
  transition: color 1.7s; 
}
.social-icons a .fa-instagram:hover { 
  color: #c53fd6; 
  transition: none; 
}

.social-icons a .fa-youtube { 
  color: rgba(255, 255, 255, 0.3); 
  transition: color 1.7s; 
}
.social-icons a .fa-youtube:hover { 
  color: #ff0000; 
  transition: none; 
}

.social-icons a .fa-spotify { 
  color: rgba(255, 255, 255, 0.3); 
  transition: color 1.7s; 
}
.social-icons a .fa-spotify:hover { 
  color: #45c939; 
  transition: none; 
}

.social-icons a .fa-apple { 
  color: rgba(255, 255, 255, 0.3); 
  transition: color 1.7s; 
}
.social-icons a .fa-apple:hover { 
  color: #ffffff; 
  transition: none; 
}

.social-icons a .fa-soundcloud { 
  color: rgba(255, 255, 255, 0.3); 
  transition: color 1.7s; 
}
.social-icons a .fa-soundcloud:hover { 
  color: #ff7b00; 
  transition: none; 
}

.social-icons a .fa-bandcamp { 
  color: rgba(255, 255, 255, 0.3); 
  transition: color 1.7s; 
}
.social-icons a .fa-bandcamp:hover { 
  color: #26b6c9; 
  transition: none; 
}

.social-icons a .fa-deezer { 
  color: rgba(255, 255, 255, 0.3); 
  transition: color 1.7s; 
}
.social-icons a .fa-deezer:hover { 
  color: #ffffff; 
  transition: none; 
}

.social-icons a .fa-amazon { 
  color: rgba(255, 255, 255, 0.3); 
  transition: color 1.7s; 
}
.social-icons a .fa-amazon:hover { 
  color: #ffd23d; 
  transition: none; 
}


/* Albums */
.releasescontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px ;
}

.row {
    display: flex;
    flex-direction: row; /* side by side */
    gap: 20px;           /* spacing between albums */
    justify-content: center; /* center the row */
    flex-wrap: wrap;      /* wrap to next line on small screens */
    width: 100%;
}
.album {
    width: 100%;
    margin: 0 auto;
}

.album img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.album img:hover {
    filter: brightness(.9) contrast(1) saturate(1.2) blur(.9px);
    transform: scale(.998);
    border-radius: 0px;
}

.album-text {
    font-size: 12px;
    color: white;
    margin: 3px 0;
}

.top-left {
    text-align: left;
}

.bottom-right {
    text-align: right;
}


/* Footer */
footer {
    width: 100%;
    background-color: #000;
    text-align: center;
    margin-top: 30px;
    padding: 10px 0;
    color: white;
    margin-top: auto; /* (auto) keeps footer pinned at bottom */
    padding-bottom: 20px;
}

.po7w img {
    max-height: 25px;
    max-width: 25px;
}

/* Scrollbar for mobile */
html ::-webkit-scrollbar {
    width: 0px;
}
html ::-webkit-scrollbar-thumb {
    background-color: #fff;
}
html ::-webkit-scrollbar-track {
    background-color: #000;
    border-left: 0px solid white;
}

/* Adjustments for smaller devices */
@media (max-width: 600px) {

    .social-icons {
        width: 70%;
        gap: auto;
    }

    .album {
        max-width: 100px;
    }

    .album-text {
        font-size: 8px;
    }

    .audioplayer {
        max-width: 280px;
        margin-top: 20px;
    }

    h1 {
        font-size: 10px;
    }

    footer h3{
        width: 80%;
        font-size: 5px;
    }
    footer h4 {
        width: 80%;
        font-size: 5px;
        color: #ffffff93;
    }
}
