*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'k2d', sans-serif;
}
html{
    scroll-behavior: smooth;
}

/* Smartphones (portrait and landscape) ----------- */
@media (min-device-width : 992px) {
    /* Styles */
}

.header{
    width: 100%;
    height: 150px;
    background-color: #000000;
    background-image: url(images/pos7logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-top: 20px;
    margin-bottom: 20px;
    }
.social-icons {
    width: 40%;
    margin: auto;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-evenly;
    letter-spacing: 20px;
    margin-bottom: 50px;
}
.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; 
}

.releases {
    background-color: #000000;
    margin: 0;
    padding: 0;
    min-height: 100vh;       /* full viewport height instead of fixed 1080px */
    width: 100%;             /* use full screen width */
    max-width: 100%;
    display: flex;           /* enable flexbox layout */
    flex-direction: column;  /* stack content vertically */
    box-sizing: border-box;
}

.releasescontainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.row {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.album {
    margin: 0 82.5px;
    width: 250px;
}

.album img {
  width: 250px;
  height: 250px;
  display: block;
  margin: 0 auto;
  transition: all 0.2s ease;
  border-radius: 0px;
  }
  .album img:hover {
  filter: brightness(.9) contrast(1) saturate(1.2) blur(1.7px);
  transform: scale(.998);
  border-radius: 3px;
}

.album-text {
    font-size: 11px;
    color: white;
    margin: 5px 0;
}

.top-left{
    text-align: left;
    margin-bottom: 0;
}

.bottom-right{
    text-align: right;
    margin-top: 0;
}

.body{
    width: 100%;
    height: 500px;
    justify-content: center;
    align-items: center;
    background-color: #000000;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0px;
    }
    h1{
        font-size: 12px;
        color: #ffffff;
        text-align: left;
        width: 400px;
        margin-left: auto;
        margin-right: auto;
        padding-bottom: 10px;
        letter-spacing: normal;
    }
    video{
        border: 1px solid rgba(255, 255, 255, 0.3);
}

.audioplayer{
    width: 400px;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top, center;
    background-color: #000000;
    background-position: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    margin-bottom: 100px;
    }
    audio{
    width: 400px;
    height: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    border-radius: 100px;
    cursor: crosshair;
    }
    audio::-webkit-media-controls-panel{
    background-color: rgb(255, 255, 255);
    }
    audio::-webkit-media-controls-play-button{
    background-color: #14ff27;
    border-radius: 50%;
    cursor: crosshair;
    }
    audio::-webkit-media-controls-current-time-display{
    color: rgb(0, 0, 0);
    font-weight: 600;
    cursor: crosshair;
    }
    audio::-webkit-media-controls-time-remaining-display{
    color: rgb(197, 197, 197);
    padding-right: 10px;
    font-weight: 600;
    cursor: crosshair;
    }
    audio::-webkit-media-controls-timeline{
    background-color: rgb(255, 255, 255);
    border-radius: 40px;
    padding-left: 10px;
    padding-right: 10px;
    cursor: crosshair;
    }
    audio::-webkit-media-controls-timeline-container{
    color: #00b91f;
    cursor: crosshair;
    }
    audio::-webkit-media-controls-volume-slider{
    background-color: rgb(0, 140, 255);
    border-radius: 50px;
    padding-right: 40px;
    cursor: crosshair;
    }
    audio::-webkit-media-controls-mute-button{
    background-color: rgb(82, 177, 255);
    border-radius: 50%;
    cursor: crosshair;
}

.po7w {
    width: 100%;
    height: 30px;
    background-color: #000000;
    margin-top: 0px;
    }
 
    .po7w img {
    max-height: 30px;
    max-width: 30px;
}

footer {
    width: 100%;
    background-color: rgb(0, 0, 0);
    background-size: 100%;
    background-position: top, center;
    background-repeat: no-repeat;
    justify-content: center;
    padding-bottom: 0px;
    padding-top: 40px;
    margin-top: auto; /* (auto) keeps footer pinned at bottom */
  }

    h2{
        color: #ffffff;
        font-size: 8px;
        font-weight: 500;
        transform: scaleY(1.2);
        letter-spacing: 3px;
        text-align: center;
        padding-top: 10px;
    }
    h3{
        color: #ffffff;
        font-size: 8px;
        font-weight: 500;
        transform: scaleY(1.2);
        letter-spacing: 3px;
        text-align: center;
        padding-top: 20px;
    }
    h4{
        width: 50%;
        color: #ffffff93;
        font-size: 8px;
        font-weight: 500;
        transform: scaleY(1.2);
        letter-spacing: 3px;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        padding-top: 30px;
        padding-bottom: 40px;
    }
/* lightbox */

main {
    flex: 1; /* This makes the main content push the footer down */
}