﻿.restaurant-footer {
    padding-top: 25px;
    margin-top: 25px;
    background-color: rgb(241, 241, 241);
}


.restaurant-link {
    background-color: #e10a10;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 50px 50px 0 0;
    font-size: 9px;
}

    .restaurant-link > a {
        font-weight: bold;
        padding: 5px;
        border-radius: 10px;
        display: inline-block;
    }

        .restaurant-link > a:hover {
            background-color: #af0000;
        }

.restaurant-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
}

    .restaurant-container > .restaurant-box:nth-child(2) {
        display: none;
    }

.restaurant-box {
    width: 90%;
    margin: 10px auto 20px auto;
    max-width: 500px;
}

    .restaurant-box > h1 {
        font-size: 14px;
        text-align: center;
        border-bottom: 1px solid #e10a10;
        padding-bottom: 10px;
    }

.restaurant-items {
    width: 92%;
    margin: 10px auto;
}

    .restaurant-items > h3 {
        font-size: 11px;
        text-align: center;
        margin: 10px auto;
        font-weight: normal;
    }

.restaurant-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
}

    .restaurant-contact > a {
        display: block;
        height: 100%;
        padding: 5px;
        border-radius: 10px;
        width: 60%;
        text-align: left;
    }

        .restaurant-contact > a:hover {
            color: white;
            background-color: gray;
        }

.restaurant-social {
    display: flex;
    width: 200px;
    margin: 60px auto auto auto;
    justify-content: space-around;
}

    .restaurant-social > a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: #00485b;
    }

        .restaurant-social > a:hover {
            background-color: #e10a10;
        }

        .restaurant-social > a > svg {
            color: white;
            font-size: 18px;
        }

/* **************************** */

@media screen and (min-width: 480px) {
    .restaurant-link {
        font-size: 10px;
    }

    .restaurant-items > h3 {
        font-size: 12px;
    }

    .restaurant-contact {
        font-size: 12px;
    }
}

@media screen and (min-width: 768px) {
    .restaurant-link {
        font-size: 11px;
    }

    .restaurant-box > h1 {
        font-size: 16px;
        border-bottom: 2px solid #e10a10;
    }

    .restaurant-items > h3 {
        font-size: 13px;
        margin: 20px auto;
    }

    .restaurant-contact {
        font-size: 13px;
    }

    .restaurant-box {
        width: 45%;
    }

    .restaurant-items {
        margin: 20px auto;
    }
}

@media screen and (min-width: 1200px) {
    .restaurant-link {
        font-size: 12px;
    }

    .restaurant-box > h1 {
        font-size: 18px;
    }

    .restaurant-items > h3 {
        font-size: 14px;
    }

    .restaurant-contact {
        font-size: 14px;
    }

    .restaurant-box {
        width: 31%;
    }

    .restaurant-container > .restaurant-box:nth-child(2) {
        display: block;
    }

    .restaurant-service {
        font-size: 14px;
        margin: 3px auto;
        padding: 5px 5px 5px 0;
        display: block;
        text-align: center;
    }

        .restaurant-service:hover {
            color: white;
            background-color: gray;
            border-radius: 10px;
        }
}
