@import url('https://fonts.googleapis.com/css2?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');

*{
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;;
}
.separador-30{
    width: 100%;
    height: 30px;
}

#hero h1{
    font-size: 100px;
    font-weight: 100;
}
#hero h2{
    font-size: 30px;
    font-weight: 200;
}
#hero{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: linear-gradient(rgba(152, 153, 154, 0.82), rgba(152, 155, 157, 0.82)),url("/img/hero-image.png");
}
.hero-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.carta-text{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.carta-text p{
    font-size: 18px;
    font-weight: 200;
}
.carta-text h2{
    font-size: 35px;
    font-weight: 200;
}
.col{
    display: flex;
    justify-content: top;
    align-items: top;
    gap: 70px;
    height: auto;   
}
.pizza-card{
    max-width: 270px;
    padding: 0.5rem;
    display: flex;
    flex-flow: column;
    justify-content: top;
    align-items: center;
    margin-top: 30px;
    position: relative;
}
.pizza-name{
    font-weight: 300;
    font-size: 25px;
    color: rgb(202, 49, 49);
}
.pizza-desc{
    margin: 30px 0;
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.pizza-price h4{
    font-size: 25px;
    font-weight: 200!important;
    position:absolute;
    bottom: 0;
    left: 7px;
}
.pizza-img{
    width: 230px;
    height: 230px;
    display: flex;
    align-items: center ;
    justify-content: center;
}
.pizza-img img{
    width: 100%;
}
.bandera{
    display: flex;
    border: solid 0.2px;
}
.ban{
    border: solid 5px;
}
.verde{
    border-color: green;
    width: 30px;
}
.blanco{
    border-color: white;
    width: 25px;
}
.rojo{
    border-color: red;
    width: 30px;
}
#ubicacion{
    padding: 3rem;
    background-color:rgba(211, 211, 211, 0.219);
}
.contenedores-ubicacion{
    display: flex;
    justify-content: space-between;
}
.texto-ubicacion{
    padding: 2rem 0;
}
.texto-ubicacion h2{
    font-size: 30px;
    font-weight: 200!important;
}
.mapa{
    width: 500px;
}
.contacto{
    width: 500px;
}
.info{
    font-weight: 200;
    font-size: 27px;
}
.info-imp{
    color: #adaaaa;
}
.direccion{
    margin-top: 20px;
}
.reservas{
    padding: 2rem 0;
}
.pide{
    border: solid 0.5px black;
    border-radius: 7px;
    padding: 0.7rem;
    text-decoration: none;
    color: black;
}
.redes{
    margin-top: 30px;
}
#footer{
    background-color: rgb(33, 33, 33);
    width: 100%;
    padding: 1rem 0;
}
.copy{
    color: white;
    display: flex;
    justify-content: center;
}
.cols{
    color: white;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20;
}
.col3{
    padding: 1rem;
    max-width: 400px;
    margin-bottom: 20px;
}
.link a{
    color: white;
    text-decoration: none;
    margin: 20px 0;
}
/*MODAL*/
.modal{
    display:none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: white;
    padding: 1.5rem;
    border-radius: 9px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.644);
    z-index: 1001;
}
.modal-content{
    display: flex;
    flex-flow: column;
    gap: 10px;
}
.modal-header{
    position: relative;
}
.modal-text{
    font-size: 30px;
}
.button-modal{
    padding: 6px 10px;
    border: none;
    border-radius: 5px;
    background-color: rgb(202, 49, 49);
    color: white;
    position: absolute;
    right: 0;
    cursor: pointer;
}
.modal-footer{
    display: flex;
    justify-content: center;
    padding: 1rem;
}
.llamar{
    border: solid 1px;
    padding: 0.6rem;
    border-radius: 7px;
    text-decoration: none;
    background-color: rgb(202, 49, 49);
    color: white;
}
.llamar:hover{
    background-color: rgb(152, 36, 36);
}
/*MODAL*/

@media (max-width: 480px){
    #hero h1{
        font-size: 50px;
        font-weight: 100;
    }
    #hero h2{
        font-size: 30px;
        font-weight: 200;
    }
    .col{
        flex-direction: column;
    }
    .contenedores-ubicacion{
        display: flex;
        flex-flow: column;
    }
    .mapa{
        width: 100%;
    }
    .contacto{
        width: 100%;
    }
    .cols{
        color: white;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20;
    }
    .modal{
        max-width: 300px;
    }
}