@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #fffaee;
    font-family: "EB Garamond", serif;
}

/* ======== REUSABLE CSS ======== */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section__title {
    text-align: center;
    border-top: .3em dotted #F5BD26;
    border-bottom: .3em dotted #F5BD26;
    padding: 1em 0;
    margin-top: 1em;
}

/* ======== NAVBAR ======== */

header .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 2em;
}

header img {
    width: 60%;
}

header img:hover {
    scale: 1.1;
    transition: ease-out .1s;
}

.navbar ol {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    gap: 1.8em;
}

.navbar ol li {
    font-size: 1.2em;
}

.navbar ol li:hover {
    scale: 1.1;
}

.navbar ol li a {
    text-decoration: none;
    color: black;
}

/* ======== index.html ======== */

.index-section {
    text-align: center;
    margin-top: 5em;
}

.index-section__destaque img {
    border-top: 3px solid #F5BD26;
    border-bottom: 3px solid #F5BD26;
    margin-bottom: 3em;
    width: 80%;
}

.index-section__cards {
    text-align: center;
}

.index-section__cards img {
    margin: 1em;
}

.index-section__title {
    text-align: center;
    font-size: 2em;
    font-style: italic;
}

.index-section__separator {
    border: 2px solid #F5BD26;
}

.index-section__paragraph {
    width: 40em;
    margin: 2em auto;
}

footer {
    text-align: center;
    padding: 2em 0;
    background-color: #fff;
    margin-top: 5em;
}

/* ======== cardapio.html ======== */
table {
    border-collapse: collapse;
    margin-top: 3em;
}

table thead tr {
    background-color: #F5BD26;
    text-align: left;
}

table th, table td {
    padding: 1em 2em;
}

table tbody tr:nth-child(even) {
    background-color: #fff;
}

table tbody tr:last-child {
    border-bottom: 2px solid #F5BD26;
}

table tbody tr td:nth-child(3) {
    font-weight: bold;
}



/* ======== chefe.html ======== */

article figure {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3em;
}

article figure img {
    border: .5em solid #F5BD26;
    border-radius: 1em;
    width: 30%;
}

article figure figcaption {
    font-weight: bold;
}

article figure p {
    text-align: center;
    width: 50%;
    margin-top: 1em;
}

.chefe-section__body figure figcaption {
    font-size: 1.4em;
}

.chefe-section__body p {
    font-size: 1.4em;
}

/* ======== contato.html ======== */
.contato-section__body {
    background-color: #F9F1DC;
    padding: 1.5em 3em;
    margin-top: 3em;
}

.contato-section__body article {
    display: flex;
    flex-direction: column; 
}