@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --background: black;
    --main: #163B34;
    --secondary: black;
    --text: #666;
}

a{
    margin-bottom: 5px;
    gap: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(./background.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

body {
    background-color: black;
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
    flex-direction: column;
    scroll-behavior: smooth;
}

#loading {
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    margin: auto 0;
}

#display {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.scrol{
    text-decoration: none;
}

#header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

#logo-resto {
    margin: 10px 0 10px 0 ;
    width: 180px;
    height: auto;
    border-radius: 15px;
}

#logo-powered{
    width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.title-part{
    color:white;
    font-size: 1.5em;
    text-align: center;
    margin: 0;
    width: 90%;
}

.section{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction:column ;

}

.dish-container {
    margin: 10px 0 10px 0 ;
    width: 95%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.dish-card {
    width: 95%;
    height: 120px;
    background: rgba(255, 255, 255, 0.085);
    backdrop-filter: blur(0px);
    border: solid 1px white;    
    border-radius: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.085);
    backdrop-filter: blur(0px);
    box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.5),     
    inset 0 1px 2px rgba(255,255,255,0.4); 
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}

.dish-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 15px;
}

.dish-info {
    position: relative;
    height: 100%;
    flex-grow: 1;
    margin: 7px;
    text-align: left;
}

.dish-title {
    font-weight: bold;
    margin: 0;
    font-size: 1.2em;
    color: white;
}

.dish-description {
    font-size: 0.8em;
    color: grey;
    margin: 0;
}

.dish-price {
    position: absolute;
    bottom: 0;
    height: 29px;
    font-size: 1.3em;
    color: white;
    margin: 0;
    bottom: 100;
}

.dish-info-line {
    flex-grow: 1;
    margin: 7px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.dish-card-line {
    width: 95%;
    background: rgba(255, 255, 255, 0.085);
    backdrop-filter: blur(0px);
    box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.5),     
    inset 0 1px 2px rgba(255,255,255,0.4);     
    border: solid 1px white;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.dish-title-line {
    font-weight: bold;
    margin: 0;
    font-size: 1.2em;
    color: white;
}

.dish-price-line {
    width: 108px;
    height: 30px;
    font-size: 1.3em;
    color: white;
    margin: 0;
}

.dish-card-bis {
    width: 95%;
    background: rgba(255, 255, 255, 0.085);
    backdrop-filter: blur(0px);
    box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.5),     
    inset 0 1px 2px rgba(255,255,255,0.4);   
    border: solid 1px white;
    border-radius: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
}
.dish-price-bis{
    font-size: 1.3em;
    color: white;
    margin: 0;
    bottom: 100;
}

.dish-description-bis {
    font-size: 0.8em;
    color: white;
    margin: 0;
}