/**************** fonts ******************/
@font-face{
    font-family: 'irannastaliq';
    src: url('../fonts/IranNastaliq/IranNastaliq.ttf');
}


/**************** general style ******************/

:root{
    /* font size */
    font-size: 62.5%;
    /* website colors */
    --primary-color: #FFA300;
    --secondary-color: #FFF;
}

body {
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: #2D2C2A;
    font-family: irannastaliq;
}

.menu {
    align-items: center;
    justify-content: center;
    height: fit-content;
    min-height: 100vh;
    width: 100vw;
    background-image: url("../assets/background.png");
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding-top: 0; /* Adjust the value as needed */
}

.menu__items--item__div {
    background: url("../assets/category.png") no-repeat center center;
    background-size: contain; /* Ensures the image scales correctly */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 15rem; /* Adjust as per your design needs */
    color: white;
    margin: 10px 0;
}

.menu__items--item__div--para {
    font-size: 3.5rem;
}

/**************** responsive *****************/

/* For very small screens, max-width 380px */
@media screen and (max-width: 380px) {
    .menu {
        padding: 5rem; /* Smallest screen padding */
    }
}

/* For extra small devices, phones (max-width: 576px) */
@media screen and (max-width: 576px) {
    .menu {
        padding: 4rem; /* Adjust this for phones */
    }
}

/* For small devices, larger phones (min-width: 576px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
    .menu {
        padding: 5rem; /* Adjust this for larger phones */
    }
}

/* For medium devices, tablets (min-width: 768px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .menu {
        padding: 6rem; /* Adjust this for tablets */
    }
}

/* For large devices, desktops (min-width: 992px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .menu {
        padding: 7rem; /* Adjust this for desktops */
    }
}

/* For extra-large devices, larger desktops (min-width: 1200px) */
@media screen and (min-width: 1200px) {
    .menu {
        padding: 8rem; /* Adjust this for large desktops */
    }
}


