
/* header, common elements are styled in style-services.css file */

/* variables */
:root{
    /* font sizes */
    --tiffins-section-heading-fs: 4vw;
    --tiffin-name-fs: 2.6vw;     /* 50px */
    --tiffin-items-fs: 1.47vw;
}

.hero-section::after{
    content: "PREMIUM FOOD";
}


/* styling individual sections */
/* menu section */
.menu-section > .wrapper-leaf{
    width: 20%;
    top: 2%;
    right: -8%;
}
.menu-section > .box-description{
    width: 40%;
    padding-bottom: 100px;
}

/* tiffins section */
.tiffins-section > .wrapper-leaf:nth-child(1){
    width: 25%;
    transform: rotate(-20deg);
    top: 0;
    right: 0;
}
.tiffins-section > .wrapper-leaf:nth-child(2){
    width: 20%;
    transform: rotate(25deg);
    bottom: 0;
    left: -8%;
}
.tiffins-section > p{
    color: var(--green-theme);
    font-family: var(--volkolak-font);
    font-size: var(--tiffins-section-heading-fs);
}
.tiffins-section > .tiffin-container{
    position: relative;
    margin-top: 160px;
    margin-left: 6%;
    padding: 40px;
    border: 5px solid var(--border-color);
	border-radius: 40px;
	box-shadow: -14px 17px 24px rgba(0, 0, 0, 0.06), -5px 5px 5px rgba(255, 255, 255, 0.6), inset -14px 17px 24px rgba(0, 0, 0, 0.06), inset -5px 5px 5px rgba(255, 255, 255, 0.6);
}
.tiffin-container > .tiffin-image{
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.tiffin-container > .tiffin-image > img{
    width: 100%;
}
.tiffin-container:nth-child(4) > .tiffin-image{
    width: 20%;
    transform: translate(-30%, -60%);
}
.tiffin-container:nth-child(5) > .tiffin-image{
    width: 25%;
    transform: translate(-28%, -60%);
}
.tiffin-name{
    color: #8E6F38;
    text-transform: uppercase;
    font-family: var(--volkolak-font);
    font-weight: bold;
    font-size: var(--tiffin-name-fs);
    letter-spacing: 5px;
    padding-bottom: 30px;
}
.tiffin-items-wrapper{
    display: flex;
    justify-content: space-evenly;
}
.tiffin-items-wrapper > div{
    position: relative;
}
.tiffin-items-wrapper > div::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: transparent;
    border-right: 1px solid var(--border-two-color);
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(40%);
}
.tiffin-items-wrapper > div:last-child::after{
    display: none;
}
.tiffin-items-wrapper > div > p{
    color: black;
    font-family: var(--montserrat-font);
    font-size:  var(--tiffin-items-fs);
    line-height: 2.4;
}


/* media queries */
/* mobile - 0px to 768px */ 
@media screen and (max-width: 768px) {

    /* variables */
    :root{
        /* font sizes */
        --tiffins-section-heading-fs: 10vw;
        --tiffin-name-fs: 6vw;
        --tiffin-items-fs: 4.2vw;
    }
    
    /* styling individual sections */
    /* menu section */
    .menu-section > .wrapper-leaf{
        width: 30%;
        top: 4%;
        right: -14%;
    }
    .menu-section > .box-description{
        width: 100%;
        padding-bottom: 50px;
    }

    /* tiffins section */
    .tiffins-section > .wrapper-leaf:nth-child(1){
        width: 35%;
        top: 1%;
    }
    .tiffins-section > .wrapper-leaf:nth-child(2){
        width: 25%;
        left: -11%;
    }
    .tiffins-section > .tiffin-container{
        margin-top: 60px;
        margin-left: 6%;
        padding: 30px;
    }
    .tiffin-container:nth-child(4) > .tiffin-image{
        width: 40%;
        transform: translate(-25%, -60%);
    }
    .tiffin-container:nth-child(5) > .tiffin-image{
        width: 45%;
        transform: translate(-20%, -50%);
    }
    .tiffin-name{
        letter-spacing: 3px;
        padding-bottom: 0px;
    }
    .tiffin-items-wrapper{
        flex-direction: column;
    }
    .tiffin-items-wrapper > div{
        padding-top: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid var(--border-two-color);
    }
    .tiffin-items-wrapper > div:last-child{
        padding-bottom: 0px;
        border-bottom: none;
    }
    .tiffin-items-wrapper > div::after{
        display: none;
    }
    .tiffin-items-wrapper > div > p{
        text-align: center;
        line-height: 2.2;
    }
    
}