body {
  font-family: Arial, sans-serif;
  margin: 0;
  background-color: #141012 !important;
  color: white;
  height: 100vh; /* Corrected typo */
}

header {
  background-color: #0F131B;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  border-radius: 0px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*NAV*/
/* Navbar Styling */
        nav {
            background-color: #0F131B;
            padding: 1rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav a {
            color: #ffffff;
            margin: 0 15px;
            text-decoration: none;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #3498db;
        }
/*END NAV*/

.logo img {
  height: 50px;
}

.featured-album {
  background-color: #212529;
  padding: 20px;
  width: 53%;
  height: 200px;
  display: flex;
  align-items: center;
  color: white;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
  margin: auto;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.featured-album img {
  width: 300px;
  height: 169px;
  margin-right: 30px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.songimg {
    width: 300px;
    height: 169px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.btn-primary {
    border-radius: 18px;
    border:none;
    color: #fff !important;
    padding: 6px 9px;
    font-style: italic;
}

.btn-primary a {
    color: #fff;
    border:none;
    text-decoration: none;
    font-style: italic;
}
/*CARDS*/
.card-title,
.card-body { 
  display: none; 
  position: relative; 
  z-index: 1;  
  text-align: center; /* Center text within these elements*/
}

.card {
  position: relative; 
  min-height: 200px;
  margin: 15px 0; /* Reset default card margins */
  background-color: #222222 !important;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #222222 !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  opacity: 0; 
  transition: all ease-in-out 180ms; 
}

.card:hover .card-title,
.card:hover .card-body { 
  display: block;
  transition: all ease-in-out 180ms; 
} 

.card:hover::before {
  opacity: 1; 
}


.s1 {
    background-image: url('https://i.ytimg.com/vi/Uu8soqPcJIs/hqdefault.jpg?sqp=-oaymwEcCPYBEIoBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAAPT0PcL6LHVJhCjH-Fqioi5iqFA');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}
.s2 {
    background-image: url('https://i.ytimg.com/vi/YxX0qWs6mcA/hqdefault.jpg?sqp=-oaymwEcCPYBEIoBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAt1IrcWPIqXsjG_hNQX4XOo-L8pQ');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}
.s3 {
    background-image: url('https://i.ytimg.com/vi/7sJNe3ZXe-w/hqdefault.jpg?sqp=-oaymwEcCPYBEIoBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDx67OEU9Hb_k14EeLEVyrhDnjTAQ');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}
.s4 {
    background-image: url('https://i.ytimg.com/vi/vlHQ4bWqtvs/hqdefault.jpg?sqp=-oaymwEcCPYBEIoBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLD7-Ik8mSX0Hbwz8f-it2strAoFsA');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    
}
/*END CARDS*/

/*MUSIC PLAYER*/
.audio-controls {
    margin-top: 20px;
    display: flex;
    align-items: center;
    /* Style your controls as needed */
} 

.btn { 
  border-radius: 25px; /* Adjust the number for more/less rounding */
  transition: 180ms ease-in-out;
}

.btn:hover {
  background-color: #002D57; /* Example hover color */
  transform: translateY(-3px); /* Example hover lift */
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); /* Example shadow */
  transition: 180ms ease-in-out;
}
.progress-bar {
    width: 100%; 
    height: 5px;
    background-color: #ddd; 
    margin-top: 5px;
    position: relative;
    padding-top: 10px;
}

/* ... your existing CSS ... */

/* Style the playlist container */
.playlist {
    background-color: #141012; /* Slightly darker for contrast */
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center;
    padding: 10px;
}

ul { padding: 0; list-style-type: none; }

/* Style the individual playlist items */
.playlist-item {
    color: #ddd;
    padding: 8px 0;
    border-bottom: 1px solid #282828; /* More subtle divider */
    text-decoration: none;
    text-align: center;
    border-radius: 16px;
    background-color: #212529;
    text-align: center;
    padding: 10px;
}

.playlist-item:last-child {
    border-bottom: none; 
}

.playlist-item a { 
    color: #62CCEF; /* A brighter, modern link color */
    text-decoration: none;
}

.playlist-item a:hover {
    color: #99e9f2; /* Slightly lighter hover color */
}


/*END MUSIC PLAYER*/

main {
  background: linear-gradient(to right, #0F131B, #002D58, #1E232D);
  height: 15%; /* Adjust height if needed */
  padding: 140px 80px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

html {
  background-color: #121010 !important;
  transition: 150ms ease-in-out;
}

* {
  border-radius: 12px;
  transition: 150ms ease-in-out;
  font-family: 'Arial', sans-serif;
  text-decoration: none;
}

.tracks {
  padding-top: 20px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
}

footer {
    background-color: #0F131B;
    color: #ffffff !important;
    text-align: center;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
}

/* Media Queries for Responsiveness */
@media only screen and (max-width: 768px) { 
  
  
  .featured-album {
    flex-direction: column;
    width: 95%; 
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    display: none;
    visibility: hidden;
  }

  .featured-album img {
    width: 100%; 
    max-height: 300px; 
    margin-right: 0;   
    margin-bottom: 20px; 
    display: none;
    visibility: hidden;
  }
  .release {
      margin-top: 20px;
      padding-top: 20px;
  }
  .card {
    padding: 20px 30px; 
    transition: 150ms ease-in-out;
    height: 200px;
    margin-bottom: 50px;
  }
  
  .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: #222222 !important;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0; 
  transition: all ease-in-out 180ms; 
}

.s1 {
    background-image: url('https://i.ytimg.com/vi/Uu8soqPcJIs/hqdefault.jpg?sqp=-oaymwEcCPYBEIoBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAAPT0PcL6LHVJhCjH-Fqioi5iqFA');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    margin-bottom: 100px;
}
.s2 {
    background-image: url('https://i.ytimg.com/vi/YxX0qWs6mcA/hqdefault.jpg?sqp=-oaymwEcCPYBEIoBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLAt1IrcWPIqXsjG_hNQX4XOo-L8pQ');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    margin-bottom: 100px;
}
.s3 {
    background-image: url('https://i.ytimg.com/vi/7sJNe3ZXe-w/hqdefault.jpg?sqp=-oaymwEcCPYBEIoBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLDx67OEU9Hb_k14EeLEVyrhDnjTAQ');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    margin-bottom: 100px;
    
}
.s4 {
    background-image: url('https://i.ytimg.com/vi/vlHQ4bWqtvs/hqdefault.jpg?sqp=-oaymwEcCPYBEIoBSFXyq4qpAw4IARUAAIhCGAFwAcABBg==&rs=AOn4CLD7-Ik8mSX0Hbwz8f-it2strAoFsA');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    margin-bottom: 100px;
    
}

  main {
    padding: 60px 30px; 
  }
  
  .disc {
      padding-top: 15px;
  }
  
    footer {
    background-color: #0F131B;
    color: #ffffff !important;
    text-align: center;
    padding: 1rem;
    position: relative;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
}
}

/* Image Responsiveness */
img {
  max-width: 100%;
  height: auto;
}
