
/* About */

.about-text{
    margin-bottom: 20px;
    width: 95%;
    text-align: justify;
}

.about-image{
    width: 50%;
}

.about-image img{
    width: 100%;
    height: 95%;
    margin-top: 1.1rem;
}


/* Menu */

.menu{
    color: #fff;
}

.menu ul{
    justify-content: center;
    list-style-type: none;
    margin-top: 20px;
}

.menu ul li{
    width: 140px;
    text-align: center;
}

.menu li a {
    padding: 15px 13px;
    font-size: 2.2rem;
    transition: color .4s;
    position: relative;
    margin: 0 15px;
}

.menu li a:hover{
    color: #FFC515;
}

.products{
    width: 100%;
    height: 70%;
    margin: 40px auto;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: end;
    row-gap: 40px;
}

.product {
    width: 75%;
    padding: 15px;
    position: relative;
    border: 3px dashed transparent;
    transition: all .3s ease-in-out;
}

.product.selected {
    border-radius: 12px;
    animation: pulse .6s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 rgba(255, 197, 21, 0.5); }
    100% { box-shadow: 0 0 25px rgba(255, 197, 21, 0.8); }
}

.product:not(.no-drag) {
    cursor: pointer;
}

.no-drag {
    cursor: auto !important;
}

.product .col img{
    width: 105px;
    height: 105px;
    border-radius: 50%;
    margin-right: 20px;
}

.product .food-information{
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.product .food-name{
    font-size: 2.5rem;
    font-family: 'Zilla Slab', serif;
    margin-bottom: 20px;
}

.product .food-price{
    font-size: 1.8rem;
    font-family: 'Roboto', serif;
}


/* Gallery */

.images{
    width: 100%;
    margin-top: 40px;
    display: grid;
    justify-content: center;
    grid-template-columns: auto auto auto;
}

.images .image{
    padding: 5px;
    margin-bottom: 15px;
}

.image .border {
    width: 370px;
    height: 320px;
    border: 2px solid #ffc515;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
}

.image .border::before, .border::after {
    position: absolute;
    background: #fff;
    z-index: -1;
    transition: .8s;
    content: '';
}

.image .border::before {
    width: 200px;
    height: 370px;
}

.image .border::after {
  width: 370px;
  height: 200px;
}

.image .border:hover::before {
  width: 0px;
  background: #fff;
}

.image .border:hover::after {
  height: 0px;
  background: #fff;
}

.image .border:hover {
  background: #fff;
}

.image img{
    width: 350px;
    height: 300px;
}


@media screen and (max-width: 1200px) {
    .product {
        width: 85%;
    }
}


@media screen and (max-width: 992px) {
    .product {
        width: 95%;
    }
}


@media screen and (max-width: 880px) {
    .products {
        grid-template-columns: repeat(1, 1fr);
        width: 70%;
        justify-items: center;
    }

    .product {
        width: 80%;
    }
}


@media screen and (max-width: 768px) {
    .products {
        width: 90%;
    }
}


@media screen and (max-width: 600px) {
    .product {
        width: 85%;
    }
}


@media screen and (max-width: 480px) {
    .product {
        width: 90%;
        font-size: 12px;
    }

    .products {
        width: 100%;
    }

    .product .col img {
        width: 95px;
        height: 95px;
    }

    .product .food-name { 
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .product .food-price { 
        font-size: 1.7rem;
    }
}


@media screen and (max-width: 360px) {
    .product {
        width: 95%;
        padding: 5px;
    }
}
