/* nav style start */
.nav
{
    padding: 2rem 0 ;
}

.nav-icon,
.nav-close,
.nav-bgOverlay
{
    display: none;
}

.nav-wrapper
{
    display: flex;
    justify-content: space-between;
}

.nav-list li
{
    display: inline-block;
    margin: 0 1rem; 
}

.nav-list .nav-link
{
    font-size: 1.8rem;
    font-family: 'Poppins';
    color: var(--black-2);
    padding: 0.5rem;
}

.nav-list li:hover .nav-link
{
    color: var(--green-1);
}

/* design for big screen */
@media only screen and (max-width:768px)
{
    .nav{
        position: relative;
    }

    .nav-icon
    {
        display: block;
    }
    .nav-icon svg,
    .nav-close svg
    {
        pointer-events: none;
        height: 30px;
        width: 30px;
    }
    .nav-close
    {
        display: block;
        position: absolute;
        color: var(--black-1);
        right: 1rem;
        top: 1rem;
        cursor: pointer;
    }
    .nav-list
    {
        z-index: 1000;
        position: absolute;
        left: 100%;
        top: 0;
        height: 100vh;
        width: 80%;
        background: var(--lightGreen-1);
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 2rem;
        transform: translate(0%);
        overflow: hidden;
        transition: 0.3s ease-in transform;
    }
    .nav-list.show
    {
        transform: translate(-100%);
    }
    .nav-list li
    {
        display: block;
        text-align: right;
        margin-bottom: 2rem;
    }
    .nav-list a 
    {
        font-size: 1.6rem;
    }
    .nav-bgOverlay
    {
        position:absolute;
        left: 0;
        top: 0;
        z-index: 1000;
        height: 100vh;
        width: 100%;
        background: rgba(18, 24, 14, 0.808);
        display: none;
    }
    .nav-bgOverlay.active
    {
        display: block;
    }

}
/* nav style end */




/* global button style start */
.btn
{
    color: var(--green-1);
    font-family:  'Poppins' ;
    font-weight: 500;
    border-radius: 8px;
    font-size: 1.4rem;
    padding: 1.2rem 2rem;
}
.primary-btn
{
    color: var(--white-1);
    background: var(--green-1);
}
/* design for big screen */
@media only screen and (min-width:768px)
{
    .btn{
        padding: 1.3rem 2rem;
        font-size: 2rem;
    }
}
/* global button style end */




/* footer style start  */

footer
{
    background: var(--lightGreen-1);
    padding-top: 5rem;
    padding-bottom: 2rem;
}
.footer-wrapper
{
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.footer-logo
{
    width: 150px;
    margin-bottom: 2rem;
}
.footer-desc
{
    font-size: 1.4rem;
    color: var(--black-2);
    margin-bottom: 2rem;
}
.footer-social-title
{
    font-size: 1.8rem;
    color: var(--black-1);
    margin-bottom: 1rem;
}
.footer-social li
{
    display: inline-block;
    margin-right: 0.5rem;
}
.footer-social a{
    padding: 0.5rem 0.8rem;
    background-color: var(--white-1);
    border: 1px solid var(--green-2);
    border-radius: 8px;
}
.footer-social svg{
    width: 20px;
    color: var(--black-2);
}
.footer-text-title
{
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--black-1);
    font-weight: 600;
}
.footer-text a
{
    font-size: 1.4rem;
    margin-bottom: .5rem;
    color: var(--black-2);
    font-family: Raleway;
    line-height: 1.4em;
}
#copyright
{
    padding: 1rem 0;

}
.copyright-text
{
    font-size: 1.4rem;
    text-align: center;
}
/* design for large screen */
@media only screen and (min-width:768px)
{
    footer 
    {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }
    .footer-wrapper
    {
        flex-direction: row;
    }
    .footer-col-1{
        flex: 4;
    }
    .footer-col-2,
    .footer-col-3,
    .footer-col-4
    {
        flex: 2;
    }
    .footer-desc
    {
        max-width: 300px;
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    .footer-social-title
    {
        font-size: 2rem;
        margin-bottom:1.5rem;
    }
    .footer-text-title
    {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .footer-text a
    {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .copyright-text
    {
        font-size: 1.6rem;
        text-align: left;
    }
}
/* footer style end */


/* store info style start */
.store-info-wrapper
{
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.store-info-item
{
    background-color: var(--lightGreen-1);
    padding: 20px 30px;
    text-align: center;
    border-radius: 12px;
    width: 150px;
}
.store-info-icon
{
    width: 30px;
    margin: 0 auto;
    margin-bottom: 1.5rem;
}
.store-info-title
{
    font-size: 1.4rem;
    font-family: 'Poppins';
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: (--black-1);
}
.store-info-text
{
    font-size: 1.4rem;
    font-family: 'Raleway';
    color: var(--black-2);
}

@media only screen and (min-width:768px)
{
    .store-info-wrapper
    {
        gap: 2rem;
    }
    .store-info-item
    {
        min-width: 200px;
        padding: 40px 0;
    }
    .store-info-icon
    {
        width: 47px;
        margin-bottom: 2.5rem;
    }
    .store-info-title
    {
        font-size: 1.8rem;
        margin-bottom: 1rem;

    }
    .footer-text
    {
        font-size: 1.6rem;
    }
    
}
/* store info style end */




/* top dish style start */
.dish-grid-title
{
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: var(--black-1);
}
.dish-grid-wrapper
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
    gap: 1rem;
}
.dish-grid-item
{
    display: flex;
    flex-direction: column;
    background-color: var(--lightGreen-1);
    padding: 0.5rem;
    gap: 0.5rem;
    border-radius: 8px;
}
.dish-grid-item-image
{
    flex: 4;
}
.dish-grid-item-info
{
    flex: 5;
}
.dish-grid-item-image img{
    object-fit: cover;
    border-radius: 12px;
}
.dish-grid-item-title
{
    font-size: 1.4rem;
    line-height: 1.3em;
    font-weight: 500;
    color: var(--black-1);
    margin-bottom: 0.5rem;
}
.dish-grid-item-price
{
    font-size: 1.4rem;
    color: var(--green-1);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.dish-grid-item-star
{
    max-height: 15px;
    width: max-content;
}

/* design for large device */
@media only screen and (min-width: 768px)
{
    .dish-grid-title
    {
        font-size: 2.4rem;
    }
    .dish-grid-wrapper
    {
        grid-template-columns: repeat(auto-fit, minmax(350px , 1fr));
        gap: 3rem;
    }
    .dish-grid-item
    {
        flex-direction: row;
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 12px;
    }
    .dish-grid-item-title
    {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }
    .dish-grid-item-price
    {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
}
/* top dish style end */




/* discount section style start */
.discount-wrapper
{
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--lightGreen-1) url(./images/discount-illustration.png) no-repeat bottom right / 100px;
}
.discount-image
{
    display: flex;
    gap: 1rem;
    width: 100%;
    margin-bottom: 2rem;
}
.discount-image-1
{
    flex: 2;
}
.discount-image-2
{
    flex: 3;
}
.discount-image img
{
    object-fit: cover;
    border-radius: 12px;
}
.discount-text
{
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--green-1);
    margin-bottom: 0.5rem;
}
.discount-title
{
    font-size: 1.8rem;
    color: var(--black-1);
    font-weight: 600;
    margin-bottom: 1rem;
}
.discount-price
{
    font-size: 1.4rem;
    font-weight: 600;
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}
.discount-old-price
{
    color: var(--black-2);
    text-decoration: line-through;
}
.discount-new-price
{
    color: var(--green-1);
}
.discount-star
{
    width: max-content;
    height: 15px;
    margin-bottom: 1rem;
}
/* design for large device */
@media only screen and (min-width:768px)
{
    .discount-wrapper
    {
        flex-direction: row;
        gap: 4rem;
        padding: 2rem;
        align-items: center;
        background-size: 150px;
        margin: 0 auto;
    }
    .discount-image
    {
        flex: 5;
        margin-bottom: 0;
        gap: 2rem;
    }
    .discount-image-1,
    .discount-image-2,
    .discount-image-3
    {
        flex: 1;   /* it will set width of images*/
        height: 350px;
    }
    .discount-info
    {
        flex: 3;
    }
    .discount-text
    {
        font-size: 2.4rem;
    }
    .discount-title
    {
        font-size: 3.6rem;
        margin-bottom: 1.5rem;
    }
    .discount-price
    {
        font-size: 2.4rem;
    }
    .discount-star
    {
        height: 20px;
        margin-bottom: 2rem;
    }


} 

@media only screen and (max-width:1000px)
{
    .discount-image-3
    {
        display: none;
    }
    .discount-wrapper
    {
        gap: 2rem;
    }

}
/* discount section style end */

/* event info section style start */
#event-info
{
    padding-top: 0;
}
.event-info-wrapper
{
    display: flex;
    flex-direction: column;
}
.event-info-item
{
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--lightGreen-1);
    margin-bottom: 1.5rem;
    border-radius: 12px;
}
.event-info-item-image
{
    border-radius: 12px;
    overflow: hidden;
    flex: 3;
}
.event-info-item-image img{
    object-fit: cover;
}
.event-info-item-info
{
    flex: 4;
}
.event-info-item-title
{
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--black-1);
}
.event-info-item-text
{
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: var(--black-2);
}
.event-info-right
{
    margin-top: 2rem;
}
.event-info-title
{
    font-size: 1.8rem;
    color: var(--black-1);
    margin-bottom: 1.6rem;
}
.event-info-text
{
    color: var(--black-2);
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin-bottom: 1rem;
}
/* design for large device */
@media only screen and (min-width:768px)
{
    .event-info-wrapper
    {
        flex-direction: row;
        gap: 2rem;
    }
    .event-info-right,
    .event-info-left
    {
        flex: 1;
    }
    .event-info-item
    {
        padding: 2rem;
        gap: 2rem;
        max-width: 500px;
        margin-bottom: 2rem;
    }
    .event-info-item-title
    {
        font-size: 1.8rem;
    }
    .event-info-item-text
    {
        font-size: 1.6rem;
        line-height: 2.5rem;
    }
    .event-info-title
    {
        font-size: 3.6rem;
    }
    .event-info-text 
    {
        max-width: 500px;
        font-size: 1.8rem;
        line-height: 2.6rem;
        margin-bottom: 2rem;
    }
}

/* event info section style end */




/* form style start */
#form
{
    padding: 5rem 0;
}
.form-title
{
    font-size: 1.8rem;
    color: var(--black-1);
    font-weight: 600;
}
.form-wrapper
{
    padding: 3rem 0;
}
.form-wrapper form
{
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.form-group label
{
    font-size: 1.6rem;
    font-family: 'Poppins';
    color: var(--black-2);
    font-weight: 500;
}
.form-group input,
.form-group textarea,
.form-group select
{
    width: 100%;
    border: none;
    background-color: var(--lightGreen-1);
    font-size: 1.4rem;
    font-family: 'Raleway';
    font-weight: 600;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 0.5rem;
    color: var(--black-2);
}
.form-group textarea
{
    resize: vertical;
}
.form-wrapper button[type=submit]
{
    width: max-content;
    border: none;
    padding: 1rem 4rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
}

@media only screen and (min-width: 768px)
{
    .form-title
    {
        font-size: 3.6rem;
    }
    .form-wrapper
    {
        padding: 5rem 0;
    }
    .form-wrapper form 
    {
        grid-template-columns: 1fr 1fr;

    }
    .full-scrn
    {
        grid-column: 1/3;
    }
    .form-group label
    {
        font-size: 1.8rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select 
    {
        font-size: 1.8rem;
        padding: 2rem;
        margin-top: 1.5rem;
    }

}
/* form stye end */