header {
    text-align: center;
    height: 100vh;

    a.logo {
        position: relative;
        z-index: 1;
        display: inline-block;
        padding: 10px;

        img {
            /* padding: 10px; */
            max-width: 300px;
        }
    }

    nav {
        position: absolute;
        top: 80px;
        right: 20px;
        left: 20px;
        background-color: #FFFA;
        backdrop-filter: blur(5px);
        border-radius: 7px;
        /* padding: 10px; */
        box-sizing: border-box;
        box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.25);
        z-index: 1;

        a {
            display: inline-block;
            vertical-align: top;
            text-decoration: none;
            color: var(--red);
            font-weight: 600;
            font-family: 'Merriweather', Georgia, serif;
        }

        .book {
            color: #FFF;
            background-color: var(--red);
            padding: 8px 20px;
            margin: 0 10px;
            border-radius: 10px;
            text-transform: uppercase;
            font-size: 14px;
            position: relative;

            &::before,
            &::after {
                content: '';
                display: inline-block;
                width: 16px;
                height: 16px;
                background-color: var(--red);
                border-radius: 50%;
                position: absolute;
                top: 9px;
            }

            &::before {
                left: -7px;
            }

            &::after {
                right: -7px;
            }
        }
    }


    /* Social */
    .social {
        float: left;
        margin-top: -60px;
        white-space: nowrap;

        .phone,
        .icon {
            background-color: #FFFA;
            backdrop-filter: blur(5px);
            border-radius: 7px;
        }

        .phone {
            padding: 8px 15px 8px 30px;
            margin: 3px 10px 0 0;
            font-family: Helvetica, Roboto, Arial, sans-serif;
            font-size: 15px;

            background-image: url('/svg/contact/mobile.svg');
            background-size: 20px 20px;
            background-position: left 7px center;
            background-repeat: no-repeat;
        }

        .icon {
            padding: 7px;
            border-radius: 50%;
            width: 25px;
            height: 23px;
            margin: 0 3px;

            img {
                width: 20px;
                height: 20px;
            }
        }
    }

    .lng_order {
        float: right;
        margin-top: -60px;
        white-space: nowrap;

        a.lang {
            padding: 6px 5px;
            background-color: #FFFA;
            backdrop-filter: blur(5px);
            border-radius: 50%;
            width: 30px;
            height: 26px;
            text-align: center;
            line-height: 26px;
            font-family: Helvetica, Roboto, Arial, sans-serif;
            font-size: 14px;
        }

        a.order {
            background-color: #FFFA;
            backdrop-filter: blur(5px);
            border-radius: 7px;
            padding: 8px 15px;
            margin: 3px 0 0 10px;

            font-family: Helvetica, Roboto, Arial, sans-serif;
            font-size: 14px;
        }
    }

    .left {
        float: left;
        padding: 10px;

        > div {
            display: inline-block;
            vertical-align: top;
            margin-right: 10px;
        }
    }

    .right {
        float: right;
        padding: 10px;

        > div {
            display: inline-block;
            vertical-align: top;
            margin-left: 10px;
        }
    }

    a.menu {
        padding: 7px 10px;
    }
}

/* LANGUAGE */
header .lng {
    display: inline-block;
    vertical-align: top;

    width: 40px;
    height: 40px;

    /* color: #FFF; */
    text-align: center;
    line-height: 40px;
    font-family: sans-serif;
    font-size: 12px;
    letter-spacing: 0;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}

header .lng > div {
    position: absolute;
    z-index: 1;
    border-radius: 20px;
    width: 40px;
    min-height: 40px;
    background-color: #FFFA;
}

header .lng > div a {
    display: block;
    height: 0;
    overflow: hidden;
    opacity: 0;
    /* color: #FFF; */
    text-decoration: none;

    transition: height 0.5s ease, opacity 2s ease;
}

header .lng > div:hover a,
header .lng > div:focus-within a  {
    height: 40px;
    opacity: 1;
}
/* <<< */
