@charset "UTF-8";

/*Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    border: none;
    list-style: none;
    text-decoration: none;
}

body {
    width: 100vw;
    height: 100vh;
    font-family: 'Roboto', sans-serif;  
    overflow-x: hidden;
    background-color: rgba(0, 0, 0, 0.966);
    color: white;
}

/* Menu */
header {
    width: 100vw;
    height: 80px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.966);
}

.logo-pizza {
    display: flex;
    align-items: center;
    width: 70px;
    height: auto;
    cursor: pointer;
}

.logo-pizza  p {
    color: white;
    font-size: 15px;
}

.logo-pizza  img {
    width: 100%;
    height: 100%;
}

nav .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 600px;
}

header .menu li a {
    padding: 30px 10px 20px 10px;
    color: white;
    font-size: 18px;
    text-transform: uppercase;
}

header .menu li a:hover {
    background-color: #3333;
    color: rgb(201, 175, 27);
    border-bottom: 4px solid rgb(201, 175, 27);
    transition: 0.3s all;
}


/* Section1 */
.section1 {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgb(29,29,29,0.6), rgb(29,29,29,0.7)), url(../image/fundopizza.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: 70px;
}

.section1 .conteudo-principal {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: center;
}

.section1 .conteudo-principal h1 {
    font-family: "Pacifico", cursive;
    color: rgb(201, 175, 27);
    font-size: 40px;
    text-transform: uppercase;
}

.section1 .conteudo-principal h2 {
    color: rgb(146, 146, 146);
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.section1 .botoes {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.botoes button {
    width: 220px;
    height: 50px;
    border-radius: 15px;
    background-color: rgb(201, 175, 27);  
    color: black;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    margin-top: 30px;
}

.botoes button:hover {
    background-color: rgba(0, 0, 0, 0);
    color: rgb(201, 175, 27);
    border: 1px solid rgb(201, 175, 27);
    transition: all 0.5s;
}

/* Sobre nós */
.section2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(29,29,29,0.6);
    padding-bottom: 40px;
}

.sobre-nos {
    display: flex;
    justify-content: space-between;
}

.texto-sobrenos {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

.texto-sobrenos h1 {
    margin-top: 10px;
    margin-bottom: 40px;
    font-size: 35px;
    font-family: 'robote';
}

.texto-sobrenos p {
    text-align: center;
    font-size: 16px;
    width: 600px;
}


.section2  img {
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255, 255, 255, 0.514);
    box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.596);
    margin-top: 50px;
    margin-left: 100px;
}

/* Cardápio */
.cardapio {
    width: 100vw;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(12, 12, 12, 0.7);
}

.cardapio h1 {
    margin-top: 10px;
    font-size: 35px;
    color: rgb(230, 228, 228);
    text-transform: uppercase;
}

.itens-cardapio {
    width: 90%;
    margin-top: 25px;
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 350px) );
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.itens-cardapio img {
    width: 100%;
    height: 200px;
}

.itens-cardapio .info {
    background-color: rgb(202, 200, 200);
    border: none;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    color: black;
}

.itens-cardapio .info h2 {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 14px;
    text-decoration: underline;
}

.itens-cardapio .info h4 {
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 150px 150px;
    margin-left: 60px;
    text-transform: uppercase;
}

.itens-cardapio .info h4 span {
    font-size: 17px;
    margin-left: 18px;
    text-decoration: underline;
    color: #585858;
}

.itens-cardapio div {
    background-color: #5e5252;
    box-shadow: 0px 0px 4px 1px rgba(0, 0, 0, 0.596);
}

.itens-cardapio .info .pedir {
    width: 200px;
    height: 35px;
    margin-top: 10px;
    border-radius: 8px;
    background-color: rgb(218, 189, 29);  
    color: black;
    text-transform: uppercase;
    cursor: pointer;
}




/* Contatos */
.contatos {
    background-color: rgba(17, 16, 16, 0.884);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    color: white;
    padding-bottom: 40px;
}

.contatos  h1 {
    font-size: 35px;
    margin-bottom: 30px;
    margin-top: 10px;
}

.redes {
    width: 650px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 17px;
}

.redes i {
    margin-right: 5px;
}
.contatos div {
    cursor: pointer;
}

.redes div:hover {
    color: rgb(201, 175, 27);
}

.redes div a {
    color: white
}

.redes div a:hover {
    color: rgb(201, 175, 27);
}

footer {
    background-color: rgba(0, 0, 0, 0.938);
    height: 30px;
    padding-top: 5px;
    text-align: center;
}

