@font-face {
    font-family: 'Lato';
    src: url(/fonts/Lato-Regular.ttf);
}

* {
    font-family: "Lato-Regular", sans-serif;
    font-weight: 500;
}

.colorLight {
    color:#F0F0F0;
}

.colorMedium {
    color:#5C5C5C;
}

.colorDark {
    color:#343434;
}

.logo {
    font-weight: bold;
    font-size: 1.1rem;
}

.logo, nav{
    letter-spacing: 0.1rem;
}

.bar {
    display: flex;
    justify-content: space-around;
    padding:1rem;
    margin: 0 4rem;
}

nav {
    display: flex;
    gap:2rem;
}

nav a {
    font-size: 0.6rem;
}

.hero {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-image: url(/images/home-bg.jpg);
    background-size: cover;
    background-position: 0% 12%;
    height: 50rem;
    color: white;
    gap: 0.5rem;
}

.hero h1 {
    letter-spacing: 0.3rem;
    font-size: 1rem;
}

.hero p {
    font-size: 1.5rem;;
}

.hero a {
    border: 2px solid;
    padding: 0.8rem 2.5rem;
    font-size: 0.9rem;
    margin-top: 2rem;
    letter-spacing: 0.1rem;
    font-size: 0.8rem;
}

.title {
    display: flex;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
    margin: 4rem;
    color: #343434;
    text-decoration: underline;
    text-decoration-color: #5C5C5C;
    text-underline-offset: 1rem;   
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery {
    display: flex;
    gap: 1.2rem;
    max-width: 50%;
}

.box {
    display: flex;
    flex-direction: column;
}

.rightGallery {
    
}

.leftGallery, .middle, .rightGallery {
    width: 33%;
}

.box img {
    margin-bottom: 0.5rem;
}

.box p {
    margin-bottom: 0.2rem;
}

.box > p:first-of-type {
    font-weight: bold;
}

.box > p:last-of-type {
    font-size: smaller;
     margin-bottom: 1rem;
}
.menu {
    display: flex;;
}

.dish {
    margin-bottom: 2rem;;
}
.dish > p:first-of-type {
    font-weight: bold;
    margin-bottom: 0.3rem;
}

.dish > p:first-of-type span {
    font-weight: normal;
    color: #5C5C5C;
}
.dish > p:last-of-type {
    font-size: smaller;
}

.bottom {
    background-color: #F0F0F0;
    margin-top: 4rem;
    width: 100%;
}

.menu {
    display: flex;
    justify-content: center;
    gap:15rem; 
    margin-bottom: 10rem;
}

.contact {
    display: flex;
    justify-content: center;
    margin-top: -2rem;
}

.contact input::placeholder, .contact textarea::placeholder {
    color: #5C5C5C;
    font-size: 0.8rem;
    padding-left: 0.5rem;
   
}

.contact input, .contact textarea {
    border: none;
}

.contact1 input {
    width: 20rem;
    margin-bottom:1rem;
}

.contact1 {
    display: flex;
    justify-content: space-between;
    height: 3.5rem; 
}

.contact2 textarea {
    width: 42rem;
    height: 8rem;
    margin-bottom:1rem;
    padding-top: 0.4rem;
}

.reservation {
    display: flex;
    justify-content: center;
    color: #5C5C5C; 
}

.reservation button {
    border-color: #5C5C5C;
    border-radius: 0.4rem;
    padding: 0.7rem 7rem;
    margin-bottom: 6rem;
    color: #5C5C5C;
    letter-spacing: 0.05rem;
    font-size: 0.9rem;
}

footer {
    background-color: #343434;
    padding: 5rem;
    color: #F0F0F0;
    text-align: center;
}

footer > p:first-of-type {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

footer > p:last-of-type {
    font-size: smaller;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: lowercase;
}

.smaller {
    font-size: smaller;
}

.larger {
    font-size: larger;
}

.bolder {
    font-weight: bolder;
}

.lighter {
    font-weight: lighter;
}

