/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0px 20px;
}

/* Header */
header {
    padding-top: 15px;
    padding-bottom: 15px;
}

header img {
    max-width: 150px;
}

.right-content {
    display: flex;
    align-items: center;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.header p {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    margin-right: 20px;
}

.btn {
    background: #cc0000;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    color: white;
    cursor: pointer;
    font-size: 16px;
    width: 200px;
    font-weight: 600;
}

/* Subheader */
.subnav {
    background-color: #f5f5f5;
    border-bottom: 1px solid #e5e5e5;
    display: none;
}

.right-content {
    display: none;
}

.subheader {
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    align-items: center;
}

.subheader a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
}


/* Banner */
.book-nowbtn {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}

.book-nowbtn a {
    background-color: #cc0000;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: 30px;
    width: 190px;
    text-decoration: none;
    text-align: center;
    display: inline-block;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;

}



.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    object-fit: cover;

}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    height: 600px;
    position: relative;
}

.slide img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

/* Buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    border-radius: 100px;
    width: 45px;
    height: 45px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Category Section */
.category {
    padding: 35px 0px;
}

.category h2 {
    margin-bottom: 15px;
    color: #333;
    font-size: 24px;
    font-weight: 700;
}

.cards {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); */
    grid-template-columns: repeat(auto-fit, 230px);
    gap: 20px;
    /* width: 230px; */

}

.card {
    /* background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    /* height: 370px; */
}

.card img {
    width: 100%;
    border-radius: 8px;
    height: auto;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #030303;
    padding: 30px 0px;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

footer img {
    max-width: 150px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.musicImage2 {
    display: none;
}

.Insta {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    header .btn {
        width: auto;
    }

    .cards {
        grid-template-columns: repeat(auto-fit, 100%);
    }

    .slide {
        height: 300px;
    }


    /* .subnav{
        display: block;
    } */
    /* .desktop_nav{
        display: none;
    } */
    .right-content {
        display: block;
    }

    .book-nowbtn a {
        width: 135px;
    }

    header img {
        max-width: 130px;
    }

    footer img {
        max-width: 130px;
    }

    .musicImage {
        display: none;
    }

    .musicImage2 {
        display: block;
    }

    .Insta {
        text-align: center;
        padding-left: 0px;
        margin: 20px 0;
    }

    .book-nowbtn {
        bottom: 18px;
    }
    .footer{
flex-direction: column;
    }
}