* {
    margin: 0;
    padding: 0;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    border: border-box;
}

.navbar {
    width: cover;
    height: 60px;
    background-color: rgb(0, 0, 0);
    display: flex;
     align-items: center;
    justify-content: space-evenly;
}

.icon {
    font-size: 30px;
    color: whitesmoke;
}

.icon-1 {
    display: flex;
    align-items: center;
    color: whitesmoke;
    font-size: 25px;
}

.nav-search {
    width: 400px;
    display: flex;
    background-color: rgb(0, 0, 0);
    border-radius: 20px;
}

.search-1 {
    width: 400px;
    border-radius: 20px;
}

.search-icon {
    background-color: white;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.nav-search:hover {
    border: 2px solid navy;
}

.container {
      width: 100%;
 } 

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

.nav-links li a {
      color: white;
      text-decoration: none;
      font-weight: 600;
}

    .nav-links li a:hover {
      text-decoration: underline;
}

.hero {
      background-image: url(images-echoverse/music-2.jpeg);
      background-size: cover;
      background-position: center;
      padding: 5rem 2rem;
      text-align: center;
}

.hero h1 {
      font-size: 3rem;
      margin-bottom: 1rem;
}

.hero p {
      font-size: 1.2rem;
      opacity: 0.9;
}

.TrendingSongs {
    padding: 2rem;
    background-image: url(images-echoverse/music-2.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.TrendingSongs {
    padding: 2rem;
    background-image: url(images-echoverse/music-2.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.playlists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); 
    gap: 1.5rem;
    background-image: url(images-echoverse/music-2.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.playlist-card {
      background-color: transparent;
      padding: 1rem;
      border-radius: 10px;
      text-align: center;
      transition: transform 0.3s;
      border: 2px solid white;
}

.playlist-card img {
    width: 100%;
    height: auto;              
    max-height: 220px;         
    object-fit: contain;      
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

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

body {
    background-image: url(images-echoverse/music-2.jpeg);
    background-size: cover;
    background-attachment: fixed; 
    background-position: center;
    background-repeat: no-repeat;
}

.popular-artists {
    padding: 2rem;
    background: transparent;
    color: white;
    text-align: center;
}

.popular-artists h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.artist-row {
    display: flex;
    flex-wrap: wrap;         
    justify-content: center; 
    gap: 2rem;               
}

.artist-card {
    width: 220px;           
    display: flex;
    flex-direction: column;
    align-items: center;
}


.artist-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
}

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

.artist-card p {
    margin-top: 0.3rem;
    font-weight: bold;
}


.echoverse-footer {
    background-color: #000;
    color: #bbb;
    padding: 3rem 2rem 1rem;
    font-size: 14px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.footer-socials a {
    color: white;
    background: #222;
    padding: 10px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
}

.footer-socials a:hover {
    background: #444;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #222;
    margin-top: 2rem;
    color: #777;
}

.footer-bottom p {
    margin: 0.3rem 0;
}
