@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #ffcb45;
    --secondary-color: #1d1d1d;
    --tertiary-color: #6e1f18;
    --quaternary-color: #d3950e;
    --quinary-color: #444;
}
*{
    font-family: "Poppins", serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    
    background-color: #fff9ea;
}

section {
    padding: 28px;
}

.btn-default {
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffcb45;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 600px;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color .3s ease;
}

.btn-default:hover {
    background-color: #f8d477;
}

.social-media-buttons {
    display: flex;
    gap: 18px;
}

.social-media-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 40px;
    background-color: #fff;
    font-size: 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    color: #1d1d1d;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0.1);
    transition: box-shadow .3s ease;
}

.social-media-buttons a:hover {
    box-shadow: 0px 0px 9px 4px rgba(0, 0, 0.1);

}


.section-title {
    color: #ffcb45;
}

.section-subtitle {
    font-size: 2.1875rem;
}
#testimonials {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 50px 20px;
    background-color: #f8f8f8;
    gap: 20px;
}

.testimonial {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1400px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial img {
    width: 580px; /* Tamanho reduzido para manter o design limpo */
    height: 580px;
    border-radius: 10px;
    object-fit: cover;
}

.testimonial_content {
    padding-left: 30px;
}

.testimonial_title {
    font-size: 60px;
    color: #6e1f18; /* Azul escuro, mantendo a identidade visual */
    font-weight: bold;
}

.testimonial_subtitle {
    font-size: 23px;
    color: #d3950e;
    
}

.tmonial_p {
    font-size: 20px;
    color: #444;
    line-height: 1.6;
    margin-top: 10px;
    
}

.btn {
    background-color: #6e1f18;
    color: white;
    padding: 15px 28px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 20px;
    
}

.btn:hover {
    background-color: #aa1306;
    ;
}

/* Responsividade */
@media (max-width: 768px) {
    #testimonials {
        flex-direction: column;
    }

    .testimonial {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .testimonial img {
        width: 200px;
        height: 200px;
    }

    .testimonial_content {
        padding-left: 0;
        margin-top: 20px;
    }

    .testimonial_title {
        font-size: 22px;
    }

    .testimonial_subtitle {
        font-size: 16px;
    }

    .testimonial_text {
        font-size: 14px;
    }

    .btn {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .testimonial {
        padding: 15px;
    }

    .testimonial_title {
        font-size: 20px;
    }

    .testimonial_subtitle {
        font-size: 14px;
    }

    .testimonial_text {
        font-size: 13px;
    }

    .btn {
        padding: 10px 18px;
        font-size: 15px;
    }

    .testimonial img {
        width: 200px;
        height: 200px;
    }
}




/* Ajuste do tamanho da fonte do menu mobile */
@media (max-width: 768px) {
    #menu {
        font-size: 18px; /* Aumentei um pouco a fonte */
    }
    #menu li {
        padding: 12px 0; /* Ajuste no espaçamento entre os itens */
    }
    #menu a {
        font-size: 20px; /* Aumentei a fonte dos links do menu */
    }
}
#menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#dishes {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 32px;
}

.dish {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 25%px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 0px 12px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.dish-heart {
    position: absolute;
    background-color: #e9a209;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.563rem;
    color: #fff9ea;
    width: 70px;
    height: 70px;
    right: -10px;
    top: -10px;
    border-radius: 0px 37.5px 0px 42.5px;
}

.dish-description {
    color: #434343;
    align-items: center;
}

.dish-rate i {
    color: #e9a209;
}

.dish-price {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width: 1170px) {
    #dishes {
        flex-wrap: column;
        justify-content: center;
    }

    .dish {
        width: calc(50%-12px);
    }
    
}

@media screen and (max-width: 600px) {
    .dish {
        width: 100%;

    }

    #menu .section-subtitle {
        text-align: center;
    }
}

#home {
    display: flex;
    min-height: calc(100vh-91px);
    position: relative;
}

#cta {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 5%;
}

#cta h1 {
    font-size: 3rem;
    color: #1d1d1d;
}

#cta span {
    color: #6e1f18;
}
#cta .description {
    font-size: 1.1rem;
}
#cta_buttons {
    display: flex;
    gap: 24px;
}
#cta_buttons a {
    text-decoration: none;
    color: #1d1d1d;
}
#phone_button {
    display: flex;
    gap: 8px;
    align-items: center;
    background-color: #ffff;
    padding: 8px 14px;
    font-weight: 500;
    box-shadow: 0px 0px 12px 4px rgb(0,0,0,0.1);
    border-radius: 12px;
}
#phone_button button {
    box-shadow: none;
}


#banner {
    display: flex;
    align-items: start;
    justify-content: end;
    width: 70%;
    z-index: 2;
}

#banner img {
    height: 100%;
    width: fit-content;
}

.shape{
    background-color: #ffe8b4;
    width: 50%;
    height: 100%;
    position: absolute;
    border-radius: 40% 30% 0% 20%;
    top: 0;
    right: 0;
    z-index: 1;
}  

@media screen and (max-width: 1170px) {
    #home {
       min-height:  100%;
       padding-top: 0;
    }

    #banner,
    #banner img,
    #home .shape{
        display: none;
    }

    #cta {
        width: 100%;
        text-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 450px) {
    #phone_button button {
        display: none;
    }
}


header {
    width: 100%;
    background-color: #fff9ea;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1px 8%;
}

#nav_list {
    display: flex;
    list-style: none;
    gap: 20px;
}
/*acrescentado agora*/
#mobile_nav_list {
    list-style: none; /* Remove as bolinhas da lista */
    padding: 0;
}

#mobile_menu .btn-default {
    margin-top: 20px; /* Ajuste o valor conforme necessário */
}

#mobile_nav_list i {
    font-size: 18px; /* Ajusta o tamanho */
    color: #FFA500; /* Laranja, mas pode mudar conforme sua paleta */
    margin-right: 8px; /* Dá um espaço entre o ícone e o texto */
}
#mobile_nav_list a {
    text-decoration: none; /* Remove as linhas dos links */
    font-family: 'Poppins', sans-serif; /* Substitua por sua fonte original */
    color: black; /* Define a cor preta */
    font-size: 16px; /* Ajuste conforme necessário */
    font-weight: bold; /* Opcional para destacar */
}
#mobile_nav_list i {
    margin-right: 8px; /* Espaço entre o ícone e o texto */
    vertical-align: middle; /* Alinha com o texto */
}
/* Efeito do ponto amarelo no menu */
.menu-item {
    position: relative;
}

.menu-item::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background-color: yellow;
    border-radius: 50%;
    transform: translateX(-50%);
    transition: left 0.3s ease-in-out;
}

.menu-item.active::after {
    left: 50%;
}

/* Animação suave do menu mobile */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
    transform: translateX(0);
}


/*acrescentado agora*/


#nav_list .nav-items a {
    text-decoration: none;
    font-weight: bold;
    color: #333;
}

.btn-default {
    background-color: #f4a900;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#mobile_btn {
    display: none;
}

main {
    padding-top: 100px; /* Ajusta o espaço para que o conteúdo não fique escondido atrás do menu fixo */
}



.nav-items a {
    text-decoration: none;
    color: #1d1d1dad;
    font-weight: 600;
}


.nav-items.active a {
    color: #1d1d1d;
    border-bottom: 3px solid #ffe100;
}

/* Estilos do menu mobile */
#mobile_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Quando o menu estiver ativo */
#mobile_menu.active {
    display: flex;
}

/* Estilo do botão de fechar */
#close_menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsividade: Ocultar menu normal e exibir botão mobile */
@media screen and (max-width: 1170px) {
    #nav_list,
    #navbar .btn-default {
        display: none;
    }

    #mobile_btn {
        display: block;
        border: none;
        background-color: transparent;
        font-size: 1.5em;
        cursor: pointer;
    }
}
footer {
    background-color: #ffe8b4;
}

#footer-items{
    display: flex;
    justify-content: space-between;
    padding: 0px 8% 24px 8%;
    align-items: center;
}

#copy {
    color: #1d1d1d;
    font-size: 500;
}

@media screen and (max-width: 600px) {
    #footer-items {
        flex-direction: column;
        gap: 24px;
    }
}
