 /* collection */

 .hamburger {
    display: none;
    cursor: pointer;
}

.hide {
    display: none;
}



.hero_section {
    background-image: url(../images/collections_banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px 0px 100px 0px;
    height: 36vh;
    position: relative;
    z-index: 2;
}
.hero_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 69%);
    z-index: -1; /* Ensure the overlay is on top */
}

.hero_section .hero {
    height: 40vh;
}


h2 {
    font-size: 60px;
}

h3 {
    font-size: 36px;
}





.collection {
    margin: 100px 0px;
}

.collection h2 {
    width: 100%;
    margin-bottom: 20px;
}

.collection .collection_heading {
    text-align: center;
}

.collection figure img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.collection .collection_background {
    background-image: none;
    /* background-position: left; */
    /* background-size: contain; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    /* background-repeat: no-repeat; */
}

.collection .collection_card {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    padding: 0px 100px 0px 100px;
    margin: 0px 50px;
}

@media screen and (min-width: 768px) and (max-width: 1023px) {


    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #000;
        color: #fff;
        padding: 0px;
        height: 100vh;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hide {
        display: block;
    }

    header .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0px 10px 0px
    }

    .nav-links.active {
        display: flex;
        gap: 10px;
    }

    .hero_section {
        height: 30vh;
    }

    .hero_section .hero {
        height: 30vh;
    }


    h2 {
        font-size: 46px;
    }

    h3 {
        font-size: 36px;
    }







    .collection .collection_card {
        display: flex;
        flex-direction: column;
    }

}


@media screen and (max-width: 767px) {

    .hero_section h1 {
   
        font-size: 38px;
        padding-top: 50px;
    }


    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #000;
        color: #fff;
        padding: 0px;
        height: 100vh;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

    .hide {
        display: block;
    }



    .hero_section {
        height: 30vh;
    }

    .hero_section .hero {
        height: 30vh;
    }



    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 26px;
    }





    .collection .collection_card {
        display: flex;
        flex-direction: column;
        padding: 0px;
    }

}