* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: rgb(223, 240, 255);
}

header {
    background-color: #333;
    padding: 35px 30px;
    position: sticky;
    top: 0;
    z-index: 998;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    width: 80px;
    height: 50px;
}

.logo>a>img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 30px;
}

.nav-links>li>a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.7s;
}

.nav-links>li>a:hover {
    letter-spacing: 2px;
    color: rgb(255, 67, 67);
}

.bar_menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 250px;
    background-color: #333;
    opacity: 0;
    transition: all 0.7s ease;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.mobile-menu.active {
    right: 0;
    /* Slide in from the right */
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    margin: 70px 20px;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu>ul>li>a:hover {
    transition: all 0.7s;
    letter-spacing: 2px;
    color: rgb(255, 67, 67);
}

.mobile-menu a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}

.close-btn {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
}



/* ========================Slide Show========================  */


.slide_show {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.slide {
    display: none;
    font-size: 24px;
    width: 100%;
    height: 100%;
}

.slide>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide_text {
    position: absolute;
    width: 900px;
}

.slide_title_name {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide_title_name>h1 {
    font-weight: 700;
    font-size: 50px;
    color: white;
    text-shadow: rgb(0, 0, 0) 1px 0 17px;
    text-align: center;
}

.slide_title h1{
    margin-top: 80px;
    color: white;
    text-align: center;
}

.slide_title>p {
    font-weight: 500;
    letter-spacing: 2px;
    color: white;
}

.btn_slide {
    cursor: pointer;
    position: absolute;
    color: rgb(255, 255, 255);
    font-size: 35px;
    transition: all 0.5s;
}

.btn_slide:hover {
    color: rgb(139, 22, 22);
}

.slide_prev {
    left: 20px;
}

.slide_next {
    right: 20px;
}

/* =============================Main Albums=============================== */

.album_title {
    width: 100%;
    margin: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(139, 22, 22);
}

.block_card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    width: 100%;
    padding: 0 7.5rem;
}

.block_card>.box_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.block_card>.box_card>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.block_card>.box_card>.box_card_title>h2 {
    font-weight: 700;
}

.block_card>.box_card>a>.box_card_img {
    border-radius: 10px;
    overflow: hidden;
    /* width: 270px;
    height: 270px; */
    margin: 1rem 0;
    box-shadow: rgba(0, 0, 0, 0.542) 0px 3px 8px;
    transition: transform 0.3s ease;
    background-color: black;
}

.block_card>.box_card>a>.box_card_img:hover {
    transform: translateY(-10px);
}

.block_card>.box_card>a>.box_card_img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.block_card>.box_card>a>.box_card_img>img:hover {
    opacity: 70%;
}

.block_card>.box_card>a>button {
    padding: 0.7rem 1.8rem;
    color: white;
    background-color: rgb(255, 179, 0);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.7s;
    font-weight: 700;
}

.block_card>.box_card>a>button:hover {
    background-color: rgb(255, 128, 0);
    transform: scale(0.9);
}



.btn_go_album {
    background-image: linear-gradient(to right, rgb(139, 22, 22) 0%, #b29f94 51%, rgb(185, 22, 22) 100%)
}

.btn_go_album {
    margin: auto;
    padding: 0.8rem 1.8rem;
    text-align: center;
    transition: 0.7s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    display: flex;
    border: none;
}

.btn_go_album:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}

.btn_go_album>a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 500;
}



/* ==========================Footer========================== */
footer {
    width: 100%;
    background-color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    color: rgb(138, 138, 138);
    margin-top: 4rem;
    text-align: center;
}




/* ==================Respone===================== */
@media (max-width: 1400px) {
    .block_card {
        gap: 2.5rem;
        padding: 0 7.5rem;
    }
}

@media (max-width: 1200px) {
    .block_card {
        gap: 1.5rem;
        padding: 0 5rem;
    }
}

@media (max-width: 950px) {
    .slide_show {
        height: 700px;
    }
    .slide_text {
        width: 600px;
    }

    .slide_title_name>h1 {
        font-size: 35px;
    }

    .slide_title>p {
        font-weight: 500;
        letter-spacing: 2px;
        color: white;
    }

    .block_card {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .nav-links {
        display: none;
    }

    .bar_menu {
        display: flex;
    }

    .slide_text {
        width: 300px;
    }

    .slide_title_name>h1 {
        font-size: 30px;
    }

    .slide_title {
        margin-top: 30px;
    }

    .slide_prev {
        left: 10px;
    }

    .slide_next {
        right: 10px;
    }

    .block_card {
        grid-template-columns: repeat(1, 1fr);
    }

    .album_title {
        margin: 4rem 0;
    }

    .album_title>h1 {
        font-size: 25px;
    }

    .btn_go_album {
        padding: 0.6rem 1.4rem;
        display: flex;
        float: right;
        margin-right: 2rem;
    }


    /* ==========================Footer========================== */

    footer {
        padding: 3rem 1.5rem;
        font-size: 15px;
    }
}