/* @import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap');

html, body {
    font-family: 'BIZ UDPGothic', sans-serif;
} */

.language-select {
    display: flex;
    gap: 5px;
}

.language-select a {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    border: 2px solid;
    border-color: #fff;
    width: 34px;
    height: 24px;
    padding: 2px;
}

.language-select a:hover {
    border-color: rgba(206, 18, 18, 0.2);
}

.language-select a.selected {
    border-color: #ce1212;
}

.language-select img {
    display: block;
    width: 100%;
    height: 100%;
}

.navbar .special-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9998;
}

.about-img {
    background: url("../images/home-about.jpg");
    background-size: cover;
    background-position: center;
}

@media (max-width: 1279px) { 
    .navbar {
        align-items: start;
        justify-content: start;
        flex-wrap: nowrap;
        flex-direction: column;
        background: rgba(255,255,255,0.9);
    }
    .navbar ul {
        position: relative;
        display: block;
        background: none;
        width: 100%;
    }
    .navbar .special-actions {
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        margin-top: 40px;
    }
    .header .btn-book-a-table {
        margin-left: 0;
    }
}