:root{
    --text-oil-green: #587562;
    --text-logo: #6B4015;
    --background-light: #D2AB66;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Sfondo trasparente menu */
.food h3, .food span{
    background-color: #f5f5f5 !important;
    font-family: "Chivo", sans-serif;
}
.food p{
    font-family: "Chivo", sans-serif;
}

/* Slider */
.slider-container li {
    border: 2px solid #e50000;
    border-radius: 5px;
    cursor: pointer;
}

/* Slide home menu */
.banner-head-image{
    background: url(/retable/img/mood-slide.webp);
    background-repeat: no-repeat;
    /* background-position: center; */
    background-position: bottom;
    background-size: cover;
    width: 100%;
    height: 180px;
    position: relative;
    margin-top: 70px;
}
.overlay-dark{
    background-color: #11111199;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9;
}
.banner-head-image .title{
    position: relative;
    z-index: 9;
    margin-bottom: 0;
    font-size: 1.5rem;
}
.color-green{
    color: var(--text-oil-green);
}

/* Card */
.card {
    cursor: pointer;
    border: 1px solid #4a2d0c;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(215, 215, 215, 1);
    -moz-box-shadow: 0px 0px 5px 0px rgba(215,215,215,1);
    box-shadow: 0px 0px 5px 0px rgba(215, 215, 215, 1);
    /* background: #f5f5f5; */
    background-color:  #4a2d0c;
    border-radius: 1px;
}

/* Active */
.card-body.active,
.card-guest p.active,
.card-high-chair p.active,
.day.active {
    background: #e50000;
    color: #fff;
    border-radius: 5px;
}

/* Layout */
.min-width-200 {
    min-width: 200px;
}
.mt-100 {
    margin-top: 100px;
}
.mb-100 {
    margin-bottom: 100px;
}

.my-100 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.boo-header {
    z-index: 999;
}

/* Form */
.form-control::placeholder {
    color: #d7d7d7;
}

input.form-control,
.input-group-text,
.custom-select,
.btn-outline-secondary {
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #ccc;
}

.form-control:hover,
.form-control:focus,
.form-control:active,
.custom-select:focus {
    box-shadow: unset;
    border-color: unset;
}

.form-check-input:checked {
    background-color: green;
    border-color: green;
}

/* Header */
.boo-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: .5rem 0;
    background: #4a2d0c;
}

/* Footer */
footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}

#step1 {
    animation-duration: 5s;
    animation-name: slide-down;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.offcanvas {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.carousel-indicators [data-bs-target] {
    background-color: #000;
}

.btn-template{
    background-color: var(--text-oil-green);
    border-color: var(--text-oil-green);
    color: #fff;
}
.btn-template:hover{
    background-color: #455f4e;
    color: #fff;
}

/* .menu-card{
    width: 265px;
} */
.menu-card .card-title {
    /* color: var(--text-logo); */
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
    font-family: "Chivo", sans-serif;
    font-style: italic;
}
.menu-card .card-body{
    /* background-color: #D2AB66; */
    padding: .5rem;
}

.menu-card h5{
    margin-bottom: 0;
}

h1{
    font-family: "Chivo", sans-serif;
}

.row-gap-3{
    row-gap: 1rem;
}
.ratio_4-3{
    aspect-ratio: 4/3;
    object-fit: cover;
}

.back-to-page{
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    background-color: #4a2d0c;
    border-radius: 5px;
    padding: .25rem .5rem;
}
.back-to-page a{
    text-decoration: none;
    color: #fff;
    
}
.action-link-container{
    min-width: 60px;
    text-align: right;
}

.img-header{
    /* width: 100%; */
    height: 55px;
    object-fit: cover;
}
.btn-group-reltive{
    position: relative;
    right: 10px; 
}

@media screen and (min-width:767px){
    /* Slide home menu */
    .banner-head-image{
        height: 500px;
        background-position: top;
    }
    .banner-head-image .title{
        font-size: 4rem;
    }   

    .menu-card{
        width: auto;
    }
}