* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: white;
}

.menu {
    position: absolute;
    width: 100%;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.9);
    z-index: 2;
}

.menu a {
    color: black;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background: white;
    padding: 25px 35px;
    clip-path: polygon(0 0, 100% 0, 100% 65%, 50% 100%, 0 65%);
}

.logo img {
    width: 80px;
}

.banner {
    height: 100vh;
    background: url("https://preview.colorlib.com/theme/rooftop/img/header-bg.png") center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.text h1 {
    font-size: 70px;
    letter-spacing: 8px;
    font-family: 'Playfair Display', serif;
}

.text p {
    font-size: 13px;
    letter-spacing: 3px;
    color: #eee;
}

.menu-section {
    display: flex;
    justify-content: space-between;
    padding: 100px 80px;
    background: white;
    color: black;
}

.left-text {
    width: 45%;
}

.left-text h2 {
    font-size: 40px;
    letter-spacing: 4px;
}

.left-text p {
    margin: 20px 0;
    font-size: 14px;
    color: #555;
}

.left-text button {
    padding: 12px 20px;
    background: #d4c38b;
    border: none;
    cursor: pointer;
}

.right-menu {
    width: 45%;
    background: #f5e6c8;
    padding: 40px;
    color: black;
}

.right-menu h3 {
    margin: 20px 0;
    text-align: center;
    color: #000;
}

.item {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.title {
    font-weight: bold;
    color: #000;
}

.desc {
    font-size: 12px;
    color: #555;
    margin-top: 5px;
}

.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 250px 250px;
    gap: 25px;
    padding: 100px;
    background: white;
}

.img1 {
    grid-row: 1 / 3;
}

.img2 {
    grid-column: 2;
    grid-row: 2;
}

.img3 {
    grid-column: 2;
    grid-row: 1;
}

.img4 {
    display: none;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery img:hover {
    transform: scale(1.05);
}


.booking-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    background-color: #fff;
    min-height: 600px;
}


.form-wrapper {
    flex: 1;
    padding: 50px;
    background-color: #fdfdfd; 
}

.field-full {
    margin-bottom: 20px;
}

.field-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.field-half {
    flex: 1;
}

label {
    display: block;
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #888;
    margin-bottom: 8px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
    font-size: 14px;
    outline: none;
}

.btn-submit {
    background-color: #2c3e50;
    color: #fff;
    border: none;
    padding: 15px 45px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
}


.text-wrapper {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.text-wrapper h1 {
    font-family: "Times New Roman", serif;
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: 6px;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.text-wrapper p {
    font-family: Arial, sans-serif;
    color: #777;
    line-height: 1.8;
    font-size: 15px;
}


@media (max-width: 900px) {
    .booking-container {
        flex-direction: column-reverse;
    }
    .text-wrapper h1 {
        font-size: 36px;
    }
}


.chef-container {
    display: flex;
    max-width: 1100px;
    margin: 80px auto; 
    gap: 60px;
    align-items: center; 
    padding: 0 20px;
}

.chef-image-box {
    flex: 1;
}

.chef-image-box img {
    width: 100%;
    height: auto;
    display: block;
    
    box-shadow: 15px 15px 0px #f8f9fa; 
}

.chef-content {
    flex: 1;
}

.main-text {
    font-family: Arial, Helvetica, sans-serif;
    color: #777;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 40px;
    text-align: left;
}


.chef-quote {
    border-top: 1px solid #eeeeee;
    padding-top: 30px;
}

.chef-quote blockquote {
    font-family: "Times New Roman", Times, serif;
    font-style: italic;
    font-size: 28px;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.chef-quote cite {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #c19b76; 
    font-style: normal;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}


@media (max-width: 850px) {
    .chef-container {
        flex-direction: column;
        text-align: center;
        margin: 40px auto;
    }
    
    .chef-image-box img {
        box-shadow: none; 
    }
}

/**/

#sec06 { width: 60%;
    margin: auto;
}


#sec07 { padding-top: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.esquerda4 { display: inline-block;
    width: 49%;
    height: 700px;
    vertical-align: middle;
    padding-left: 50px;
}

.direita4 { display: inline-block;
    width: 49%;
    height: 700px;
    vertical-align:auto;
    padding-left: 50px;
}



#sec08 { width: auto;
    padding-left: 15%;
    padding-right: 15%;
    padding-top: 5%;
    background: #020b2d;
}


h2 {font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 2.7px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer {
    color: white;
    padding: 50px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-container div {
    width: 18%;
}

.footer h3 {
    margin-bottom: 15px;
}


.text-menu { text-align: left;
    display: inline-block;
    padding: 0 55px 30px 0;
    display: flex;
    justify-content: center;
    height: 100vh;
    flex-direction: column;
}

h3 { font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 2.7px;
    color: #000000;
    margin-bottom: 20px;
}

p.menu-item { font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: #010000;
    margin: 0 0 10px;
}

#legenda-menu { font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: #777777;
    margin: 0 0 50px;
    line-height: 2.0;
}

li { font-family: "Roboto", sans-serif;
    font-size: 15px;
    color: #000000;
    margin: 0 0 35px;
}

h1 { font-family: "Playfair Display", serif;
    font-size: 48px; 
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 0 20px;
}

.btn-menu { display: inline-block;
    padding: 12px 25px;
    background-color: #b59b6a;
    color: white;
    text-decoration: none;
    width: fit-content;
}

.single-menu { text-align: center;
    display: inline-block;
    padding: 100px 0;
    width: 90%;
    height: 200px;
    margin-bottom: 50px;
} 


#sec03 { width: 60%;
    margin: auto;
    padding: 280px 0 0 0;
}

.img01 { display: inline-block;
    position: relative;
    top: -340px;
    left: 50px;
}

.img02 { display: inline-block;
    position: relative;
    top: -210px;
    left: 90px;
}

.img03 { display: inline-block;
    position: relative;
    top: -355px;
    left: 150px;
}

.img04 { display: inline-block;
    position: relative;
    top: -185px;
    left: 188px;
}

.img05 { display: inline-block;
    position: relative;
    top: -150px;
    left: -85px;
}

.img01:hover img{
    filter:brightness(60%);
    transform: scale(1.07);
    overflow: hidden;
}

.img02:hover img{
    filter:brightness(60%);
    transform: scale(1.07);
    overflow: hidden;
}

.img03:hover img{
    filter:brightness(60%);
    transform: scale(1.07);
    overflow: hidden;
}

.img04:hover img{
    filter:brightness(60%);
    transform: scale(1.07);
    overflow: hidden;
}


/* PÁGINA MENU */

#sec09 { width: 60%;
    margin: auto;
}

.esquerda5 { display: inline-block;
    width: 49%;
    height: 800px;
    background-color: white;
    vertical-align: middle;
    padding-left: 100px;
    padding-top: 50px;
    line-height: 1.6;
}

.direita5 { display: inline-block;
    width: 49%;
    height: 900px;
    background-color: white;
    vertical-align: middle;
    padding-left: 130px;
    padding-top: 180px;
}


#sec010 {width: 60%;
    margin: auto;
    padding-bottom: 120px;
}

#sec011 { width: 60%;
    margin: auto;
}

.esquerda6 { display: inline-block;
    width: 49%;
    height: 800px;
    background-color: white;
    vertical-align: middle;
    padding-left: 70px;
    padding-top: 200px;
    line-height: 1.6;
}

.direita6 { display: inline-block;
    width: 49%;
    height: 900px;
    background-color: white;
    vertical-align: middle;
    padding-left: 90px;
    padding-top: 270px;
}

#sec012 {width: 60%;
    margin: auto;
    padding-top: 120px;
    padding-bottom: 120px;
}


#sec013 { width: 60%;
    margin: auto;
    padding-top: 500px;
}
