:root {
    --primaryColor: #ede7d4;
    --secondaryColor: #3a2e2a;
    --tertiaryColor: #1d1815;
    --accent: #295843;
}

* {
    padding: 0;
    margin: 0;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
}

section {
    padding: 4rem 2rem;
    margin: 0 auto;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 80px;
    min-height: 80px;
    background-color: var(--secondaryColor);
}

#logoName {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul {
    display: none;
}
@media only screen and (min-width: 1024px) {
    nav ul {
        display: flex;
        justify-content: space-around;
        width: 60%;
        list-style-type: none;
    }

    nav li,
    nav li a {
        text-decoration: none;
        color: var(--primaryColor);
        font-weight: bold;
        font-size: 20px;
    }
}

nav h1,
nav h1 a {
    text-decoration: none;
    color: var(--primaryColor);
}

nav svg {
    width: 4rem;
    padding: 0.5rem;
    color: var(--primaryColor);
}

#hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--primaryColor);
    overflow: hidden;
    height: 30rem;
}

#hero :not(img) {
    z-index: 1;
}

#hero h1 {
    font-size: 2rem;
}
@media only screen and (min-width: 1024px) {
    #hero h1 {
        font-size: 4vw;
    }
}

#hero p {
    margin: 0.8rem;
    font-size: 1rem;
}
@media only screen and (min-width: 1024px) {
    #hero p {
        font-size: 1.5vw;
    }
}

#hero button {
    background-color: var(--accent);
    color: var(--primaryColor);
    font-weight: bold;
    padding: 1rem 5rem;
    border-radius: 10px;
    border: none;
}

#hero img {
    position: absolute;
    z-index: 0;
    object-fit: cover;
    height: 100%;
    width: 100%
}

#about-us {
    display: flex;
    flex-direction: column;
    background-color: var(--primaryColor);
    padding: 3rem 1rem;
    color: var(--secondaryColor);
}

#info {
    display: flex;
    flex-direction: column;
}
@media only screen and (min-width: 1024px) {
    #info {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
}

#about-us h2 {
    display: none;
}
@media only screen and (min-width: 1024px) {
    #about-us h2 {
        display: block;
        align-self: center;
        padding-bottom: 1rem;
        color: var(--secondaryColor);
    }
}

#about-top,
#about-bottom {
    display: flex;
}

#about-top {
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
@media only screen and (min-width: 1024px) {
    #about-top {
        margin: 0;
    }
}

#about-bottom {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
}

#about-top p {
    text-align: end;
    padding-left: 0.5rem;
}
@media only screen and (min-width: 1024px) {
    #about-top p {
        padding-right: 2.5rem;
    }
}

#about-bottom p {
    padding-right: 0.5rem;
}
@media only screen and (min-width: 1024px) {
    #about-bottom p {
        padding-left: 2.5rem;
    }
}

#about-top img,
#about-bottom img {
    min-width: 10em;
    height: 10em;
    border-radius: 50%;
    border: 8px solid var(--secondaryColor);
}

#menu {
    display: flex;
    flex-direction: column;
    background-color: var(--secondaryColor);
    color: var(--primaryColor);
    padding: 3rem 2rem 4rem 2rem;
}

#menu h2 {
    align-self: center;
    text-align: center;
    padding-bottom: 1rem;
}

.menu-item {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding: 1rem 0;
    border-bottom: 4px solid rgba(255, 255, 255, 0.2);
}

.menu-item img {
    border-radius: 50%;
    border: 8px solid var(--primaryColor);
    height: 6rem;
    width: 6rem;
}

.menu-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 2rem;
}

.menu-details p {
    margin-top: 0.5rem;
}

.right-menu .menu-details p,
.right-menu .menu-details h4 {
    text-align: left;
    padding-right: 1rem;
}

.bottom-item {
    border-bottom: none;
}

#menu button {
    margin-top: 1rem;
    background-color: var(--accent);
    color: var(--primaryColor);
    font-weight: bold;
    padding: 1rem 5rem;
    border-radius: 10px;
    border: none;
}

#reviews {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--primaryColor);
}

#reviews h2 {
    align-self: center;
    text-align: center;
    padding-bottom: 1rem;
    color: var(--secondaryColor);
}

#reviews article {
    border: 8px solid #dad2b7;
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 2px 2px 10px;
    color: var(--secondaryColor)
}

.stars {
    color: goldenrod;
    font-size: 20px;
    font-weight: bold;
}

#find-us {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--secondaryColor);
    color: var(--primaryColor);
}

#google-maps-embed {
    border: 8px solid #dad2b7;
    background-color: var(--primaryColor);
    border-radius: 20px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 2px 2px 10px black;
    color: var(--secondaryColor);
    text-align: center;
}

#opening-hours {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

#opening-hours h4 {
    padding-top: 1rem;
    height: 1rem;
}

table {
    margin: 1rem 0;
    height: 3rem;
    border-top: 4px solid rgba(255, 255, 255, 0.2);
}

td,
th {
    text-align: center;
    padding: 0.2rem 1rem;
}

tr {
    border-top: 4px solid rgba(255, 255, 255, 0.2);
}

#find-us ul {
    list-style-type: none;
}

#find-us button {
    margin-top: 1rem;
    background-color: var(--accent);
    color: var(--primaryColor);
    font-weight: bold;
    padding: 1rem 5rem;
    border-radius: 10px;
    border: none;
}

footer {
    display: flex;
    align-items: center;
    justify-content: start;
    max-height: 50px;
    min-height: 50px;
    background-color: var(--primaryColor);
}

footer p {
    text-decoration: none;
    color: var(--secondaryColor);
    padding-left: 1rem;
}