@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@700&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
    user-select: none;
    font-family: 'Quicksand', sans-serif;
}

.container {
    width: 80%;
    margin: 0 auto;
}

/* header start*/

header {
    position: fixed;
    width: 100%;
    padding-top: 20px;
    /* top: 20px; */
    left: 0;
    z-index: 1000;
    /* background-color: #040d8a77; */
}

header img {
    width: 70px;
    border-radius: 20px;
}

header a {
    color: aliceblue;
    text-decoration: none;
}

.site-header__wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav__item a {
    display: block;
    padding: 1rem 1.1rem;
}

.nav__toggle {
    display: none;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(0) scale(0);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale();
    }
}



/* header end */


/* # one section start */


.all_best_img {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* position: absolute; */
    z-index: -1;
    right: 0;
    gap: 15px;
}

.hiss-best h1 {
    font-size: 90px;
    text-align: left;
    font-weight: 600;
    color: #020316;
}

.hiss-best h1::after {
    content: '"BEST"';
    font-size: 90px;
    text-align: left;
    font-weight: 600;
    color: #040d8a;
}

.hiss-best {
    display: flex;
    justify-content: center;
    height: 70vh;
}

/* # one section end */


/* # two section start */


#two_section {
    position: relative;
    text-align: center;
    padding-top: 150px;
}

.imgs-words {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

/* details[open] {
    display: block;
} */

.song-container {
    background-color: #f5dbdb;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    text-align: center;
    padding: 20px;
    flex: 3;
}

.song-details img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
}

.singer-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.song-title {
    font-size: 24px;
    margin: 20px 0 10px;
    color: #333;
}

.song-lyrics {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.online-date {
    font-size: 14px;
    color: #999;
}

.dropdown-menu {
    display: none;
}

.dropdown .dropdown-menu {
    transform-origin: top center;
    will-change: transform, opacity;
    transition: transform 260ms cubic-bezier(.2, .9, .3, 1), opacity 260ms ease;
    opacity: 0;
    transform: translateY(-8px) scale(.98);
    pointer-events: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    overflow: hidden;
}

.dropdown.show .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.dropdown .dropdown-item {
    opacity: 0;
    transform: translateX(-8px);
    transition: transform 220ms cubic-bezier(.2, .9, .3, 1), opacity 220ms ease;
    transition-delay: 0s;
    padding: 10px 12px;
}

.dropdown.show .dropdown-item:nth-child(1) {
    transition-delay: 0.03s;
    opacity: 1;
    transform: translateX(0);
}

.dropdown.show .dropdown-item:nth-child(2) {
    transition-delay: 0.06s;
    opacity: 1;
    transform: translateX(0);
}

.dropdown.show .dropdown-item:nth-child(3) {
    transition-delay: 0.09s;
    opacity: 1;
    transform: translateX(0);
}

.dropdown.show .dropdown-item:nth-child(4) {
    transition-delay: 0.12s;
    opacity: 1;
    transform: translateX(0);
}

.dropdown.show .dropdown-item:nth-child(5) {
    transition-delay: 0.15s;
    opacity: 1;
    transform: translateX(0);
}

.dropdown.show .dropdown-item:nth-child(6) {
    transition-delay: 0.18s;
    opacity: 1;
    transform: translateX(0);
}

.dropdown .dropdown-item:hover,
.dropdown .dropdown-item:focus {
    transform: translateX(4px);
    background-color: rgba(0, 0, 0, 0.03);
}


.section_4,
.section_2,
.section_3 {
    padding-top: 100px;
    text-align: center;
}

.section_2 h2 {
    /* font-size: 22px; */
    text-align: center;
}

/* SONGS */
.swiper-wrapper {
    display: flex;
    padding-top: 100px;
}

.song-card {
    background: linear-gradient(180deg, #1e1e1e, #161616);
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.song-card img {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    aspect-ratio: 1 / 1;

    transition: transform 0.4s ease, opacity 0.4s ease;
}

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

.song-card span {
    display: block;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.song-card span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin: 12px 0 10px;
    text-align: center;
    letter-spacing: 0.3px;
    opacity: 0.95;
}

.song-card button {
    background: #2ecc71;
    border: none;
    border-radius: 50%;
    padding: 10px 14px;
    color: #000;
    font-size: 16px;
}

.songs-swiper {
    width: 100%;
}

.song-card button {
    background: none;
    border: none;
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

.end-slide {
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.end-content {
    height: 100%;
    width: 100%;
    padding: 20px 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;

    border-left: 2px dashed rgba(255, 255, 255, .2);
}

.end-content p {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.3;
}

.end-content a {
    color: #2a2b2a;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.end-content a:hover {
    text-decoration: underline;
}

.btn-outline {
    display: block;
    margin: 25px auto 0;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #d4af37;
    color: #d4af37;
    text-decoration: none;
    width: fit-content;
}

.play-button {
    position: relative;
    width: 60px;
    height: 60px;
    background: #282828;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    margin: 15px auto;
}

.playing .play-button {
    animation: pulse 1.8s infinite;
}

.main-icon {
    color: #d1cfcf;
    font-size: 18px;
    z-index: 5;
}

.progress-ring {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg);
    pointer-events: none;
}

.progress-ring__bg {
    fill: none;
    stroke: #444;
    stroke-width: 3;
}

.progress-ring__circle {
    fill: none;
    stroke: #addfbe;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.1s linear;
}

.progress-ring,
.progress-ring * {
    pointer-events: none;
}

.progress-ring__circle {
    stroke-dasharray: 138.23;
    stroke-dashoffset: 138.23;
    transition: stroke-dashoffset 0.1s linear;
}




/* sekiller start */

.gallery-item {
    position: relative;
}

.gallery-swiper {
    overflow: hidden;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
}

.gallery-item span {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 13px;
}

.gallery-swiper .swiper-slide {
    width: 160px;
}

.gallery-item {
    padding: 0;
}

.gallery-item img {
    border-radius: 8px;
}

.gallery-swiper .swiper-wrapper {
    display: flex;
    transition-timing-function: linear !important;
    will-change: transform;
}

/* sekiller end */



.video-swiper {
    width: 100%;
    padding: 20px 0;
}

.video-swiper .swiper-slide {
    width: 320px;
    /* video eni */
    display: flex;
    justify-content: center;
}

.video-swiper video {
    width: 300px;
    border-radius: 12px;
}






@media (max-width: 576px) {
    .dropdown .dropdown-menu {
        width: calc(100vw - 32px) !important;
        left: 16px !important;
        right: 16px !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    .dropdown .dropdown-menu,
    .dropdown .dropdown-item {
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto;
    }
}

/* 
.imgs-words {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.imgs-words>* {
    flex: 0 0 33.33%;
    box-sizing: border-box;
}

.imgs-words img {
    width: 300px;
    height: 300px;
    border-radius: 20px;
    margin-top: 50px;
} */


/* # two section end */



/* footer start */


.footer {
    /* background-color: #333; */
    /* color: #fff; */
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    border-top: 1px solid #020316;
    margin-top: 100px;
}

.box {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    background-color: #f0f2f3;
    transition: box-shadow 0.3s ease;
}

.sosial-media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 30px;
}

.sosial-media i {
    color: #020316;
    font-size: 30px;
    padding-top: 20px;
}

.box:hover {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}


/* footer end */



@media (min-width: 600px) {
    .site-header__wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 0;
        padding-bottom: 0;
    }
}

@media (min-width: 600px) {
    .nav__wrapper {
        display: flex;
    }
}

@media (max-width: 599px) {
    .site-header__wrapper a img {
        position: relative;
        z-index: 20;
    }

    .nav__wrapper {
        position: absolute;
        top: 0.1px;
        right: 0;
        left: 0;
        z-index: 10;
        text-align: center;
        padding-top: 40px;
        background-color: #020316;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-100%);
        transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    }

    .nav__wrapper.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }


}

@media (max-width: 599px) {
    .nav__toggle {
        display: block;
        position: absolute;
        right: 1rem;
        top: 2rem;
        color: aliceblue;
    }
}

@media (max-width: 320px) {

    header {
        background-color: transparent;
    }

    .site-header {
        width: 100%;
        display: flex;
    }

    .all_best_img img {
        width: 320px;
        position: relative;
    }

    .hiss-best {
        margin: 0 auto;
        z-index: 999;
        position: absolute;
        display: none;
    }

    .hiss-best h1 {
        text-align: left;
        font-weight: 600;
        color: #FFF5F4;
        display: none;
    }

    .hiss-best h1::after {
        content: '"BEST"';
        text-align: left;
        font-weight: 600;
        color: #4149b9;
        display: none;
    }

    .imgs-words {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .footer-content {
        padding: 0 10px;
    }

    .footer span {
        font-size: 14px;
        text-align: center;
    }

    .box {
        width: 50px;
        height: 50px;
        border-radius: 50px;
        background-color: #f0f2f3;
        transition: box-shadow 0.3s ease;
    }

    .sosial-media {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding-bottom: 30px;
    }

    .sosial-media i {
        color: #020316;
        font-size: 20px;
        padding-top: 15px;
    }

    .nav__toggle {
        display: block;
        /* və ya flex */
        cursor: pointer;
        z-index: 1001;
    }
}

@media (min-width: 321px) and (max-width: 375px) {
    header {
        background-color: transparent;
    }

    .all_best_img img {
        width: 375px;
        /* height: 100vh; */
        position: relative;
    }

    .imgs-words {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav__toggle {
        display: block;
        /* və ya flex */
        cursor: pointer;
        z-index: 1001;
    }
}

@media (max-width: 375px) {
    .site-header {
        width: 100%;
    }

    .all_best_img {
        display: flex;
        justify-content: center;
        /* align-items: center; */
        /* align-items: ; */
    }

    .hiss-best {
        /* margin: 0 auto; */
        top: calc(50% + 20px);
        z-index: 999;
        position: absolute;
        display: none;

    }

    .hiss-best h1 {
        font-size: 55px;
        text-align: left;
        font-weight: 600;
        color: #FFF5F4;
        display: none;

    }

    #dropdownMenu {
        margin-right: 27px;
    }

    .hiss-best h1::after {
        content: '"BEST"';
        font-size: 55px;
        text-align: left;
        font-weight: 600;
        color: #4149b9;
        display: none;
    }

    .imgs-words {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav__toggle {
        display: block;
        /* və ya flex */
        cursor: pointer;
        z-index: 1001;
    }
}

@media (min-width: 376px) and (max-width: 425px) {
    .all_best_img img {
        width: 425px;
        position: relative;
    }

    .all_best_img {
        display: flex;
        justify-content: center;
    }

    .hiss-best {
        /* margin: 0 auto; */
        top: calc(50% + 20px);
        z-index: 999;
        position: absolute;
        display: none;

    }

    .hiss-best h1 {
        font-size: 60px;
        text-align: left;
        font-weight: 600;
        color: #FFF5F4;
        display: none;

    }

    .hiss-best h1::after {
        content: '"BEST"';
        font-size: 60px;
        text-align: left;
        font-weight: 600;
        color: #4149b9;
        display: none;

    }

    .imgs-words {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .imgs-words {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nav__toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .nav__toggle {
        display: block;
        /* və ya flex */
        cursor: pointer;
        z-index: 1001;
    }
}

@media (max-width: 425px) {
    .site-header {
        width: 100%;
    }

    #dropdownMenu {
        margin-right: 27px;
    }
}

@media (min-width: 426px) and (max-width: 500px) {
    .all_best_img img {
        width: 500px;
        position: relative;
    }

    /* #two_section{
        top: 400px;
    } */
    .nav__toggle {
        display: block;
        /* və ya flex */
        cursor: pointer;
        z-index: 1001;
    }
}

@media (min-width: 426px) and (max-width: 768px) {
    .all_best_img img {
        width: 768px;
        /* height: 100vh; */
    }

    .all_best_img {
        display: flex;
        justify-content: center;
        /* align-items: center; */
        /* align-items: ; */
    }

    .hiss-best {
        /* margin: 0 auto; */
        top: calc(50% + 20px);
        z-index: 999;
        position: absolute;
    }

    .hiss-best h1 {
        font-size: 90px;
        text-align: left;
        font-weight: 600;
        color: #FFF5F4;
    }

    .hiss-best h1::after {
        content: '"BEST"';
        font-size: 90px;
        text-align: left;
        font-weight: 600;
        color: #4149b9;
    }
}

@media (max-width: 768px) {
    .site-header {
        width: 100%;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {
    .all_best_img img {
        width: 1024px;
        /* height: 100vh; */
    }
}