@font-face {
    font-family: "iranlight";
    src: url('../fonts/IRANSansWeb\(FaNum\)_Light.woff2');
}

@font-face {
    font-family: "iranbold";
    src: url('../fonts/IRANSansWeb\(FaNum\)_Bold.woff2');
}

@font-face {
    font-family: "fontezic";
    src: url('../fonts/Lalezar-Regular.ttf');
}

@font-face {
    font-family: "classic";
    src: url('../fonts/g\ aseman.ttf');
}

body{
    background-color: #f7fafc;
    font-family: 'iranlight';
    overflow-x: hidden;
}

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.header1{
    /* position:fixed; */
    /* width: 100%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 100px ;
}

.search{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    cursor: pointer;
}

.search-inp{
    all: unset;
    width: 360px;
    border: 0.5px groove rgb(240, 240, 240); 
    background-color: #f1f1f15e;
    border-radius: 4px;
    height: 16px;
    padding: 10px;
    transition: all 0.5s ease;
}

.search-inp::placeholder{
    font-size: 11px;
}

.search-inp:focus{
    border: 0.6px solid rgba(128, 128, 128, 0.267);
    transition: all 0.5s ease;
    box-shadow: 1px 2px 6px 4px rgba(221, 221, 221, 0.164);
}

.search-logo{
    width: 38px;
    height: 38px;
    border: 0.5px groove rgb(240, 240, 240); 
    background-color: #f1f1f15e;
    border-radius: 4px;
    padding: 10px;
}

.header-options{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    transition: all 0.5s ease;
}

.header-options-item{
    position: relative;
    transition: all 0.5s ease;
}

.header-options-item:hover{
    transition: all 0.5s ease;
    transform: translateY(-2px);
    cursor: pointer;
}

.header-options-item::after{
    content: '';
    position: absolute;
    background-color: gray;
    width: 0px;
    height: 1px;
    bottom: 0px;
    left: 0px;
    transition: all 0.4s ease;
}

.header-options-item:hover::after{
    content: '';
    width: 100%;
    transition: all 0.4s ease;
}

.bell{
    width: 44px;
    height: 44px;
    background-color: #63e5bc;
    color: rgba(36, 36, 36, 0.829);
    border-radius: 8px;
}

.bell-logo{
    /* color: rgba(36, 36, 36, 0.274); */
    width: 20px;
    height: 20px;
    margin-top: 10px;
    margin-right: 11px;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.bell:hover > .bell-logo{
    transition: all 0.4s ease;
    color: rgb(255, 255, 255);
    opacity: 0.6;
    cursor: pointer;
}

.special-songs{
    margin-top: 70px;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(151, 151, 151, 0.171);
    box-shadow: -2px -2px 12px 4px rgba(165, 165, 165, 0.151);
}

.special-songs-head{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.special-songs-main{
    overflow-x: hidden;
}

.special-songs-texts-and-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.special-songs-texts{
    display: flex;
    flex-direction: column;
}

.special-songs-logo{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgb(0, 250, 167);
}

.special-songs-logo svg{
    width: 16px;
    height: 16px;
    margin-right: 10px;
    margin-top: 10px;
    opacity: 0.6;
}

.special-songs-texts-fa{
    font-weight: 700;
}

.special-songs-texts-en{
    color: rgb(112, 112, 112);
}

.special-songs-btns{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.next, .prev{
    border-radius: 50%;
    border: 1px solid rgba(175, 175, 175, 0.438);
    /* padding: 10px; */
    width: 34px;
    height: 34px;
    background-color: inherit;
    transition: all 0.5s ease;
}

.next:hover , .prev:hover{
    background-color: white;
    color: #63e5bc;
    transition: all 0.5s ease;
}

.special-songs-card{
    text-decoration: none;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap:14px;
    border-radius: 10px;
    border: 1px solid rgba(177, 177, 177, 0.199);
    width: 200px;
    padding: 10px 30px;
    transition: all 0.4s ease;
}

.special-songs-cards{
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    max-width: 1200px;
    position: relative;
}

.special-songs-song-cover{
    border-radius: 10px;
    width: 180px;
}

.special-songs-card:hover{
    transition: all 0.4s ease;
    box-shadow: 0px -13px 10px 4px rgba(204, 204, 204, 0.301) inset;
    cursor: pointer;
}

.content{
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 50px;
    gap: 10px;
}

.category{
    padding: 20px;
    border: 1px solid rgba(121, 121, 121, 0.137);
    border-radius: 8px;
    box-shadow: 1px 1px 8px 2px rgba(170, 170, 170, 0.226);
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.category-logo{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: #63e5bc;
}

.category-logo svg{
    width: 16px;
    height: 16px;
    margin-right: 10px;
    margin-top: 10px;
    opacity: 0.6;
}

.category-head{
    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.category-text{
    display: flex;
    flex-direction: column;
}

.category-text-fa{
    font-weight: 700;
    font-size: 17px;
}

.category-text-en{
    color: rgb(112, 112, 112);
    font-size: 14px;
}

.category-songs{
    margin-top: 10px;
    margin-right: 30px;
    list-style:none;
    line-height: 34px;
    transition: all 0.5s ease;
}

.category-songs li{
    margin: 0px 0px;
    position: relative;
    transition: all 0.5s ease;
}

.category-songs li::after{
    content: '';
    position: absolute;
    background-color: gray;
    width: 2px;
    height: 100%;
    right: -20px;
    bottom: 0;
    transition: all 0.5s ease;
    /* margin-left: 30px; */
}

.category-songs li:hover::after{
    content: '';
    background-color: #63e5bc;
    transition: all 0.5s ease;
    /* margin-left: 30px; */
}

.category-songs li:hover{
    color: #63e5bc;
    transition: all 0.5s ease;
    cursor: pointer;
}

.songs{
    padding: 20px;
    border: 1px solid rgba(121, 121, 121, 0.137);
    border-radius: 8px;
    box-shadow: 1px 1px 8px 2px rgba(170, 170, 170, 0.226);
    /* width: 540px; */
    display: flex;
    flex-direction: column;
    align-items: start;
}

.most-liked-songs{
    padding: 20px;
    border: 1px solid rgba(121, 121, 121, 0.137);
    border-radius: 8px;
    box-shadow: 1px 1px 8px 2px rgba(170, 170, 170, 0.226);
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.songs-head{
    margin: 10px;
    font-size: 12px;
}

.song-title{
    text-align: center;
    margin: 10px 0px;
}

.song-cover{
    border-radius: 10px;
}

.songs-footer{
    width: 100%;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.song-title-des{
    max-width: fit-content;
}

.songs-footer::before{
    content: '';
    background-color: rgba(207, 207, 207, 0.356);
    width: 100%;
    height: 2px;
    box-shadow: 1px 1px 10px 6px rgba(233, 233, 233, 0.507);
    position: absolute;
    top: -10px;
    left: 0px;
}

.song-download-btn{
    background-color: #63e5bc;
    color: white;
    border: 1px solid rgba(128, 128, 128, 0.116);
    border-radius: 6px;
    padding: 8px 18px;
    text-decoration: none;
}

.down-new-song{
    color: gray;
    font-size: 14px;
    font-weight: 900;
}

.down-new-song svg{
    width: 16px;
    height: 16px;
}

.main-content{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.most-liked-songs-main{
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.most-liked-songs-track{
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.most-liked-songs-track:hover{
    transition: all 0.3s ease;
    color: #63e5bc;
    cursor: pointer;
}

.most-liked-songs-track-details{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.most-liked-songs-track-img{
    border-radius: 6px;
}


.most-liked-songs-track-name{
    font-weight: 700;
}

.most-liked-songs-track-date{
    color: gray;
    font-size: 14px;
}

.pageintions{
    margin-right: 180px;
}

.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #63e5bc;
    border-color: rgb(23, 235, 189);
}

.page-link{
    color:black;
}

.header2{
    display: flex;
}


.header2{
    display: none;
    justify-content: space-between;
    align-items: center;
    padding:12px 26px;
    background-color: #63e5bc;
    border-bottom: 1px solid #07bb824d;
    box-shadow: 1px 2px 12px 2px #63e5bc81;
}

.menu-logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0.6px solid rgba(20, 20, 20, 0.281);
    border-radius: 10px;
    padding: 14px;
    gap:6px;
    cursor:pointer;
    transition: all 1.4s ease;
    width: 54px;
    height: 48px;
    position: relative;
    z-index: 3;
    background-color: #63e5bc;
}

.circle-1{
    background-color: black;
    width: 22px;
    height: 2px;
    position: relative;
    transition: all 1.4s ease;
}

.circle-2{
    background-color: black;
    width: 22px;
    height: 2px;
    position: relative;
    transition: all 1s ease;
}

.circle-3{
    background-color: black;
    width: 22px;
    height: 2px;
    position: relative;
    transition: all 1.4s ease;
}

footer{
    margin-top: 60px;
    background-color: rgb(34, 34, 34);
    border: 1px solid rgba(56, 56, 56, 0.384);
    box-shadow: 2px 3px 8px 12px rgba(172, 172, 172, 0.418);
    color:rgb(209, 209, 209);
    font-size: 12px;
    text-align: center;
    padding:6px;
}

footer h5{
    font-size: 14px;
}

.menu-options{
    opacity: 0;
    background-color:#edf8ff;
    width: 0%;
    height: 100vh;
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 1;
    border-radius: 8px;
    border:1px solid rgba(128, 128, 128, 0.226);
    box-shadow: 1px 1px 4px 8px  inherit;
    transition: all 0.4s ease;
    /* transform: translateX(-2000px); */
}

.logo-container2{
    text-align: center;
    padding: 10px;
}

.options input{
    width: 100%;
}

.items{
    margin-top: 70px;
}

.items{
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.options-item{
    position: relative;
    transition: all 0.6s ease;
}

.options-item:hover{
    color: #63e5bc;
    cursor: pointer;
    transition: all 0.6s ease;
}

.options-item::after{
    content: '';
    background-color: gray;
    width: 240px;
    height: 1.5px;
    position: absolute;
    bottom: -20px;
    right: 0px;
    transition: all 0.6s ease;
}

.options-item:hover::after{
    content: '';
    background-color: #63e5bc;
    transition: all 0.6s ease;
}

.options{
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 20px;
    align-items: start;
}

.slidebar-right{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.song-page{
    display: none;
}

.social-media-logos{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    /* color: red; */
}

.social-media-logos svg{
    width: 24px;
    height: 24px;
    /* color: red; */
    transition: all 0.6s ease;
    opacity: 0.4;
}

.social-media-logos svg:hover{
    transition: all 0.6s ease;
    width: 24px;
    height: 24px;
    /* color: red; */
    opacity: 1;
    cursor: pointer;
}

.btn-download{
    text-decoration: none;
    cursor: pointer;
    /* width: 300px; */
    border: 1px solid rgba(155, 155, 155, 0.212);
    background-color: #63e5bc;
    color: white;
    padding: 8px 52px;
    border-radius: 8px;
}

.download-box{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: start;
    /* margin-top: 10px; */
    padding: 20px 14px;
    border-radius: 10px;
    border: 1px solid rgba(151, 151, 151, 0.171);
    box-shadow: -2px -2px 12px 4px rgba(165, 165, 165, 0.151);
}

.btn-download-box{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    /* flex-wrap: wrap; */
}

.download-box-main{
    display: flex;
    flex-direction:column;
    gap:10px;
    width: 100%;
    align-items: center;
}

.pre-song{
    width: 100%;
}

.like-you{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: 10px; */
    padding:12px 18px;
    border-radius: 10px;
    border: 1px solid rgba(151, 151, 151, 0.171);
    box-shadow: -2px -2px 12px 4px rgba(165, 165, 165, 0.151);
}

.liek-dislike{
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-bottom: 16px;
    cursor: pointer;
}

.liek-dislike svg{
    width: 22px;
    height: 22px;
}

.like{
    background-color: #a4c346;
    color: white;
    border-radius: 10px;
    padding: 8px 14px ;
    display: flex;
    align-items: center;
    gap: 10px;
    
}

.dislike{
    background-color: #c84848;
    color: white;
    border-radius: 10px;
    padding: 8px 14px ;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media screen and (max-width:1080px) {
    .header1{
        padding: 26px 60px ;
    }

    .header-options{
        font-size: 14px;
    }

    .category{
        display: none;
    }

    .most-liked-songs{
        display: none;
    }
    
    .songs{
        width:500px;
    }

    .download-box{
        width:500px;
    }

    .search-inp{
        width: 180px;
    }
    /* .btn-download-box{
        flex-direction: column;
        gap: 10px;
    } */
}

@media screen and (max-width:780px) and (min-width:600px) {
    .header1{
        display: none;
    }

    .header2{
        display: flex;
    }

    .pageintions{
        margin-right: 175px;
    }

    .download-box{
        width:100%;
    }
}

@media screen and (max-width:600px) and (min-width:450px) {
    .header1{
        display: none;
    }

    .header2{
        display: flex;
    }

    .song-cover{
        width:340px;
        height:300px;
    }

    .songs{
        width: 390px;
    }

    .song-title-des{
        font-size: 12px;
    }

    .pageintions{
        margin-right: 100px;
    }
    
    /* .menu-options{
        width: 70%;
    } */

    .btn-download-box{
        flex-direction: column;
        gap: 10px;
    }

    .download-box{
        width:100%;
    }
}

@media screen and (max-width:450px) {
    .header1{
        display: none;
    }

    .header2{
        display: flex;
    }

    .song-cover{
        width:300px;
        height:260px;
    }

    .songs{
        width: 340px;
        font-size: 12px;
    }

    .song-title-des{
        font-size: 11px;
    }

    .song-title-topic{
        font-size:12px;
    }

    .category-text-fa{
        font-size: 14px;
    }

    .pageintions{
        margin-right: 100px;
    }

    footer h5{
        font-size: 12px;
    }
    
    /* .menu-options{
        width: 85%;
    } */

    .btn-download-box{
        flex-direction: column;
        gap: 4px;
    }

    .download-box{
        width:100%;
    }
}

