body{
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #000;
    color: #fff;
    overflow: hidden;
}

/* <!-- ---nvavbar ---- --> */
/* Navbar styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #000;
  }
  
  .navbar-left,
  .navbar-right {
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 30px;
    height: 30px;
    margin-right: 10px;
  }
  
  /* Search bar */
  .search-bar {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    width: 250px;
  }
  
  .search-bar::placeholder {
    color: #b3b3b3;
  }
  
  /* Buttons */
  .btn {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    margin-left: 10px;
    cursor: pointer;
  }
  
  .download-btn {
    background-color: #121212;
    color: #fff;
    border: 1px solid #fff;
  }
  
  /* Icons */
  .icon {
    width: 20px;
    height: 20px;
    background-color: #333;
    border-radius: 50%;
    margin-left: 10px;
  }
  
  .profile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #1db954;
    color: #000;
    border-radius: 50%;
    font-weight: bold;
    margin-left: 10px;
  }
  
  /* Responsive styling */
  @media (max-width: 768px) {
    .search-bar {
      width: 180px;
    }
  
    .navbar-right .btn {
      display: none;
    }
  }

/* <!-- ------main------- --> */
.main {
    display: flex;
    height: 100vh;
}

.sidebar {
    background-color:#000;
    width: 340px;
    border-radius: 1rem;
    margin-right: 0.5rem;
}

.main-content {
    background-color: #121212;
    flex: 1;
    border-radius: 1rem;
    overflow: auto;
    padding: 0 1.5rem 0 1.5rem;
}

.music-player {
    background-color: black;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 72px;
}

a {
    text-decoration: none;
    color: #fff;
}
.nav{
    background-color: #121212;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100px;
    padding: 0.5rem 0.75rem;
}

.nav-option{
    line-height: 2.5rem;
    opacity: 0.7;
    padding:0.5rem 0.75rem;
}
.nav-option:hover {
    opacity: 1 ;
}
.nav-option i {
    font-size: 1.25rem;
}
.nav-option a {
    font-size: 1rem;
    margin-left: 1rem;
}

.library{
    background-color: #121212;
    border-radius: 1rem;
    height: 100%;
    margin-top: 0.5rem;
    padding: 0.5rem 0.75;

}

.options{
    display: flex;
    justify-content: space-between ;
    align-items: center;
}
.lib-option img {
    height: 1.25rem;
    width: 1.25;
}
.icons {
    font-size: 1.25rem;
    display: flex;
}
.icons i{
    opacity: 0.7;
    margin-right: 1rem;
}
.icons i:hover{
    opacity: 1;
}
.box {
    background-color: #232323;
    height: 8rem;
    border-radius: o.75rem;
    margin: 0.5rem 0 0.5rem 0;
    padding: 0.75rem 1.25rem;
}
.box-p1 {
    font-size: 1rem;
    font-weight: 500;
}
.box-p2 {
    font-size: 0.85rem;
    opacity: 0.9;
}
.badge{
    background-color: #fff;
    border: none;
    border-radius: 100px;
    padding: 0.25rem 1rem;
    font-weight: 700;
    margin-top: 0.5rem;
    height: 2rem;
    width: fit-content;
}



@media(max-width: 100px){
    .hide{
        display: none;
    }
}
/* ----------card----------- */

.card{
    background-color: #232323;
    width: 150px;
    border-radius: 0.5em; 
    padding: 1rem;
    margin-left: 1.5rem;
    margin-top:1rem ;
}

.cards-container{
    display: flex;
    flex-wrap: wrap;
}

.card-img{
    width:100%;
    border-radius: 0.5em;  
}

.card-title{
    font-weight: 600;
}

.card-info{
    font-size: 0.85rem;
    opacity: 0.7;
}


    /* Footer */

.footer{
    height:250px;
    display: flex;
    align-items: center;
    justify-content: center;
}    

.line{
    width: 90%;
    height: 50%;
    border-top: 1px solid white;
    opacity: 0.4;
}

/* -----Footer--- */

footer {
    background-color: #000;
    color: #b3b3b3;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1 1 200px;
}

.footer-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff; /* White text for headings */
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #b3b3b3;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #1DB954; /* Spotify green */
}

.footer-bottom {
    border-top: 1px solid #282828;
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom ul {
    list-style: none;
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
}

.footer-bottom ul li a {
    text-decoration: none;
    color: #b3b3b3;
    font-size: 12px;
}

.footer-bottom ul li a:hover {
    color: #1DB954; /* Spotify green */
}

.footer-bottom p {
    font-size: 12px;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a img {
    width: 20px;
    height: 20px;
    filter: invert(80%); /* Makes icons white */
}

.social-icons a:hover img {
    filter: invert(45%) sepia(93%) saturate(746%) hue-rotate(88deg) brightness(93%) contrast(88%);
}


.k{
    height: 1%;
    background-color: whitesmoke;
}
