@import url(root.css);
@import url(index.css);
@import url(import.css);

#heading-container {
    width: 100%;
    background-color: var(--primaryBlue);
    display: flex;
    align-items: center;
    justify-content: center;
}

#heading-box {
    background-color: #fff;
    color: #000;
    width: 60%;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 10px 8px #00000044;
    border-radius: 3px; 
}

#heading-text {
    font-size: 22px;
    padding: 30px 100px;
    word-spacing: 1px;
}

#product-description-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.product-card {
    flex: 1 0 300px;
    margin: 40px 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 15px;
}

.product-card:hover {
    box-shadow: 0 0 15px #000000;
    transition: .4s;
    
}

.product-price {
    font-size: 20px;
    font-family: 'Rubik', sans-serif;
    font-style: italic;
    padding: 20px 0 12px 0;
    font-weight: normal;
}

.product-name {
    padding: 0 0 20px 0;
    font-size: 26px;
    font-family: 'Rubik', sans-serif;
}

#suit {
    background-color: #d9d8d8;
}

#pant-shirt {
    background-color: #b2beed;

}

#kurta-pajama {
    background-color: #dbc4bc;
}

#jodhpuri-suit {
    background-color: #a15d69;
}

#wasket {
    background-color: #ededce;
}

#tuxedo {
    background-color: #9d9ea3;
}

#indo-western {
    background-color: #d9ccdd;
}

#safari-suit {
    background-color: #619af3;
}

/* ----------------------------------media querry---------------------------------- */

@media (max-width:768px) {

    #heading-container {
        width: 100%;
        background-color: var(--primaryBlue);
    }
    
    #heading {
        font-size: 18px;
        padding: 50px;
        word-spacing: 1px;
    }

    
    #product-description-container {
        width: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        padding: 20px;
        align-items: center;
        justify-content: center;
    }
    
    .product-card {
        width: 230px;
        flex: 1 0 100px;
        margin: 20px;
        padding: 10px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 15px;
    }
    
    .product-card:hover {
        box-shadow: 0 0 15px #000000;
        transition: .4s;
        
    }

    .product-card img {
        max-width: 100%;
        height: auto;
    }
    
    .product-price {
        font-size: 16px;
        font-family: 'Rubik', sans-serif;
        font-style: italic;
        padding: 10px 0 6px 0;
        font-weight: normal;
    }
    
    .product-name {
        padding: 0 0 20px 0;
        font-size: 18px;
        font-family: 'Rubik', sans-serif;
        display: flex;
        justify-content: center;
    }
    
    #suit {
        background-color: #d9d8d8;
    }
    
    #pant-shirt {
        background-color: #b2beed;
    
    }
    
    #kurta-pajama {
        background-color: #dbc4bc;
    }
    
    #jodhpuri-suit {
        background-color: #a15d69;
    }
    
    #wasket {
        background-color: #ededce;
    }
    
    #tuxedo {
        background-color: #9d9ea3;
    }
    
    #indo-western {
        background-color: #d9ccdd;
    }
    
    #safari-suit {
        background-color: #619af3;
    }
}