body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    overflow-x: hidden;
}

* {
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
    padding: 0;
}

p {
    margin: 0;
}

.d-md {
    display: none;
}

.t-center {
    text-align: center;
}

@media (min-width: 768px) {
    .d-md-none{
        display: none;
    }

    .d-md {
        display: block;
    }
}


.block__body {
    position: relative;
}


.block__nav a {
    text-decoration: none;
    color: white;
}

.block__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
    color: white;
    transition: all .3s;
}

.block__nav.dark {
    background-color: rgb(24, 24, 24);
}

.block__nav .wrapper {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}


.block__nav .block__title {
    display: flex;
    display: flex;
    align-items: center;
    font-family: 'Architects Daughter', cursive;
}

.block__nav .block__title .block__title_logo {
    width: 50px;
}

.block__nav .block__title .block__title_title {
    display: none;
}

.block__nav .block__list {
    display: flex;
    align-items: center;
}

.block__nav .block__list .block__list_item {
    margin-left: 8px;
}

.block__header {
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    position: relative;
}

.block__header .block__header_imgholder {
    position: absolute;
    background-image: url('..//assets/bg-home.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
    width: 100%;
    height: 100%;
}

.grey_fade {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
    transition: all .3s;
}

.grey_fade.strong {
    background-color: rgba(0, 0, 0, 0.5);
}

.block__header_text {
    font-size: 12pt;
    color: white;
    text-align: center;
}

.block__header_text br {
    display: none;
}

.block__header_button {
    display: flex;
    flex-flow: row wrap;
    display: flex;
    justify-content: center;
    border: 3px white solid;
    margin-top: 20px;
    text-decoration: none;
    transition: all .3s;
}

.block__header_button.small {
    width: 60%;
    margin: 0 auto;
}

@media screen and (min-width: 1024px) {
    .block__header_text {
        font-size: 20pt;
    }
    
    .block__header_button {
        margin-top: 25px !important;
    }

    .block__header_button p{
        font-size: 16pt !important;
    }
}

@media screen and (min-width: 768px) {
    .block__header_button.small {
        width: 25%;
    }
}

@media screen and (min-width: 1024px) {
    .block__header_button.small {
        width: 25%;
        margin-top: 0 !important;
        margin-bottom: 30px !important;
    }
}

.block__header_button:hover {
    background-color: white;
}

.block__header_button p {
    font-size: 11pt;
    padding: 10px;
    transition: all .3s;
    color: white;
}

.block__header_button p:hover {
    color: black;
}

@media (min-width: 768px) {
    .block__nav .block__title .block__title_logo {
        width: 75px;
    }

    .block__nav .block__title .block__title_title {
        display: block;
        margin-left: 12px;
        font-size: 16pt;
    }

    .block__nav .block__list .block__list_item {
        margin-left: 15px;
        font-size: 14pt;
    }

    .block__header_text br {
        display: block;
    }
}

.block__plats {
    text-align: center;
    background-color: #212121;
    color: white;
    padding-bottom: 25px;
}

.block__plats .wrapper {
    width: 90%;
    margin: 0 auto;
}

.title {
    color: #F6BE6A;
    font-size: 14pt;
    padding-top: 20px;
    font-family: 'Architects Daughter', cursive;
}

.block__plats .wrapper .block__plats_text {
    font-size: 10pt;
    padding-top: 15px;
    padding-bottom: 20px;
}

.name {
    text-align: left;
    color: #F6BE6A;
    padding-bottom: 20px;
    font-family: 'Architects Daughter', cursive;
}

.item {
    height: 280px;
    position: relative;
    z-index: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.item:hover .grey_fade {
    background-color: rgba(0, 0, 0, 0);
}

.item:hover .item__text {
    display: none;
}

.item:hover .item__price {
    display: none;
}

.item:hover .item__spicy {
    display: none;
}

.item__spicy {
    margin-top: 8px;
}

.item .item__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.item__price {
    margin-top: 8px !important;
}

@media screen and (min-width: 768px) {
    .block__plats .inner {
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: space-between;
    }

    .item {
        flex-basis: 48%;
    }
}

@media screen and (min-width: 1024px) {

    .block__plats {
        font-size: 16pt;
    }

    .title  {
        font-size: 18pt;
    }

    .block__plats .wrapper .block__plats_text  {
        font-size: 14pt;
    }

    .block__plats .inner::after {
        content: "";
        flex-basis: 32%;
    }

    .item {
        flex-basis: 32%;
        height: 350px;
        font-size: 16pt;
    }
}

.block__horaires {
    width: 100%;
    color: white;
    padding-bottom: 20px;
    position: relative;
}

.horaires__img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.block__horaires .block__horaires_list {
    margin: 0 auto;
    width: 90%;
    padding-top: 20px;
}

@media screen and (min-width: 768px) {
    .block__horaires .block__horaires_list {
        width: 50%;
    }
}

.block__horaires .block__horaires_item {
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

@media screen and (min-width: 1024px) {
    .block__title_title {
        font-size: 24pt !important;
    }
}

.block__contact {
    background-color: #212121;
    color: white;
    padding-bottom: 30px;
}

.block__contact .block__contact_list {
    margin: 0 auto;
    width: 90%;
    padding-top: 20px;
}

.block__contact .block__contact_item {
    display: flex;
    flex-flow: row wrap;
    align-content: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 10pt;
}

@media screen and (min-width: 768px) {
    .block__contact .block__contact_list {
        width: 50%;
    }

    .block__contact .block__contact_item {
        font-size: 15pt;
    }
}