/* Fuentes de letra */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

@font-face {
    font-family: "Altair";
    src: url("../font/altair-bold.ttf") format("truetype");
}

@font-face {
    font-family: "Olivie";
    src: url("../font/OlivieSans-Regular.ttf") format("truetype");
}

/* Reseteo */

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

*::selection {
    background-color: #000;
    color: #fff;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

:root {
    --amarillo: #FFD300;
    --anaranjado: #E6A203;
}

/* Empiezo de codigo */

body {
    font-family: 'Poppins', sans-serif;
    background: rgb(255,211,0);
    background: linear-gradient(45deg, rgba(255,211,0,1) 0%, rgba(230,162,3,1) 50%, rgba(255,211,0,1) 100%);
}

.display-none {
    display: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    z-index: 1;
}

.container-logo {
    display: flex;
    align-items: center;
}

.container-logo > img {
    width: 80px;
}

.container-logo > h1 {
    text-transform: uppercase;
    color: var(--amarillo);
    font-family: "Altair", sans-serif;
}


.ul-menu {
    display: flex;
    width: 460px;
    justify-content: space-between;
}

.ul-menu a {
    color: var(--amarillo);
    padding: 15px 5px;
    font-weight: 500;
    transition: all .2s ease-in-out;
}

.ul-menu a:hover {
    color: #000;
    background: rgb(255,211,0);
    background: linear-gradient(180deg, rgba(255,211,0,1) 0%, rgba(230,162,3,1) 100%);
}

.boton-menu-abrir {
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.boton-menu-abrir > span {
    width: 100%;
    height: 2px;
    background-color: var(--amarillo);
}

.section-inicio {
    height: 100vh;
    background: #000 url(../img/hamburguesa-inicio2.jpg) no-repeat scroll center;
    background-size: cover;
    position: relative;
}

.container-text-inicio {
    text-transform: uppercase;
    font-family: "Olivie", sans-serif;
    position: absolute;
    top: 45%;
    left: 40px;
}

.container-text-inicio > h1 {
    font-size: 50px;
    color: var(--amarillo);
    text-shadow: 2px 2px 0px black;
    letter-spacing: 2px;
}

.container-text-inicio > h3 {
    color: #fff;
    text-shadow: 1px 1px 0px var(--amarillo),
                 2px 2px 0px #000;
    letter-spacing: 1px;
}

.bi-arrow-down {
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    font-size: 50px;
    color: var(--amarillo);
    transition: all .2s ease-in-out;
}

.bi-arrow-down:hover {
    bottom: 10px;
}

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

.container-section1 {
    padding: 60px 0;
    font-family: "Olivie";
    text-align: center;
}

.titulo1 {
    font-size: 30px;
    font-family: "Olivie";
    text-transform: uppercase;
}

.container-section > p {
    color: #fff;
    font-size: 20px;
}

.fotos-section {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.fotos-section > img {
    width: 280px;
    border-radius: 20px;
}

.cosas-nuevas-section1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cosas-nuevas-section1 > li {
    padding: 10px;
}

.section2 {
    background-color: #fff;
}

.container-section2 {
    padding: 60px 0;
    text-align: center;
}

.container-section2 > h3 {
    color: var(--amarillo);
}

.container-section2 > p {
    color: #000;
}

.precio {
    text-transform: uppercase;
    font-family: "Olivie";
    font-size: 24px;
    margin-top: 10px;
    letter-spacing: 2px;
    color: var(--anaranjado);
}

.container-section3 {
    text-align: center;
    padding: 60px 0;
}

.iframe {
    width: 100%;
    height: 650px;
    margin-top: 20px;
}

.footer {
    background-color: rgb(28, 28, 28);
}

.container-footer {
    padding: 10px 0 10px;
    text-align: center;
}

.redes {
    margin: 0 auto;
}

.redes i {
    color: var(--amarillo);
    margin: 0 10px;
    font-size: 35px;
    transition: all .2s ease-in-out;
}

.redes i:hover {
    color: var(--anaranjado);
}

.container-footer > a {
    color: var(--amarillo);
    transition: all .2s ease-in-out;
}

.container-footer > a:hover {
    color: var(--anaranjado);
}

hr {
    border-color: rgb(99, 99, 99);
}

.copy {
    color: rgb(99, 99, 99);
}

.nav-deslizable {
    position: fixed;
    z-index: 2;
    width: 100%;
    height: 100vh;
    background: rgb(255,211,0);
    background: linear-gradient(45deg, rgba(255,211,0,1) 0%, rgba(230,162,3,1) 50%, rgba(255,211,0,1) 100%);
    transform: translateX(100vw);
    transition: transform .4s ease-in-out;
}

.nav-deslizable.active {
    transform: translateX(50px);
}

.ul-menu-deslizable {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

.boton-menu-cerrar {
    cursor: pointer;
    position: absolute;
    top: 20px;
    left: 20px;
    height: 30px;
    width: 35px;
}

.boton-menu-cerrar > span {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    background-color: #000;
}

.boton-menu-cerrar > span:nth-child(1) {
    transform: rotate(45deg);
}

.boton-menu-cerrar > span:nth-child(2) {
    transform: rotate(-45deg);
}

.item-menu {
    font-size: 30px;
    color: black;
    letter-spacing: 1px;
    transition: all .25s ease-in-out;
}

.item-menu:hover {
    font-weight: 700;
}

 /* Galeria */

.container-grid {
    padding-top: 100px;
    padding-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
 }

 .container-image :nth-child(1) {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.video {
    grid-row: span 2;
}

.container-locales {
    padding-top: 100px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.ubicaciones {
    padding-right: 160px;
}

.ubicacion {
    margin: 13px 0;
}

.ubicacion i {
    margin-right: 10px;
}

.ubicacion > h3 {
    margin-bottom: 4px;
    color: #fff;
    text-shadow: 2px 2px 0px var(--anaranjado),
                 3px 3px 0px #000;
}

.ubicacion > p > a {
    color: #000;
    letter-spacing: 1px;
}

.ubicacion > p > a:hover {
    font-weight: 500;
}

.iframe-container {
    width: 50%;
}

.iframe-container iframe {
    width: 100%;
}

.container-nosotros {
    padding-top: 100px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.container-img-nosotros {
    width: 50%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 2px 2px 10px 1px rgb(0, 0, 0);
}

.container-img-nosotros > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-texto-nosotros {
    width: 50%;
}

.container-texto-nosotros > h1 {
    text-align: center;
    text-transform: uppercase;
    font-family: "Olivie";
    color: #fff;
    text-shadow: 2px 2px 0px black;
    margin-bottom: 10px;
}

.container-texto-nosotros > p {
    font-size: 16px;
    color: black;
}

.container-contacto {
    padding-top: 100px;
    padding-bottom: 20px;
    width: 753px;
    margin: 0 auto;
}

.container-contacto > h1, 
.container-contacto > p {
    text-align: center;
}

.container-contacto > h1 {
    text-transform: uppercase;
    font-family: "Olivie";
    color: #fff;
    text-shadow: 2px 2px 0px black;
    margin-bottom: 10px;
}

.correo {
    color: #000;
    font-weight: 700;
}

.correo:hover {
    text-decoration: underline;
}

.form-contacto > p > label {
    display: block;
    margin: 10px 0 4px;
}

.form-contacto > p > :nth-child(2) {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    padding: 4px 8px;
    resize: none;
    border-radius: 4px;
    border: 1px solid black;
}

.form-contacto > p > :nth-child(2)::placeholder {
    font-family: 'Poppins', sans-serif;
}

.form-contacto > p > :nth-child(2):focus {
    outline: none;
    border: 1px solid black;
    box-shadow: 0 0 20px 2px rgba(0, 0, 0, 0.596);
}

.form-contacto > p > textarea {
    height: 100px;
}

.boton-enviar {
    cursor: pointer;
    margin: 6px 0;
    width: 80px;
    height: 30px;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: 4px;
    background-color: #fff;
    border: 1px solid black;
    transition: all .2s ease-in-out;
}

.boton-enviar:hover {
    box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.552);
}

.container-img-contacto > img {
    display: block;
    width: 70%;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .container-section {
        width: 97%;
    }
}

@media (max-width: 768px) {
    .header {
        padding-left: 5px;
    }
    .nav {
        display: none;
    }
    .boton-menu-abrir {
        display: flex;
    }
    .container-text-inicio {
        left: 5px;
    }
    .container-text-inicio > h1 {
        font-size: 40px;
    }
    .container-text-inicio > h3 {
        font-size: 16px;
    }
    .container-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .container-locales {
        flex-direction: column;
    }
    .iframe-container {
        width: 90%;
    }
    .ubicaciones {
        padding-right: 0;
        order: -1;
    }
    .container-nosotros {
        flex-direction: column;
    }
    .container-texto-nosotros {
        width: 100%;
    }
    .container-img-nosotros {
        width: 100%;
    }
    .container-contacto {
        width: 95%;
    }
}

@media (max-width: 575px) {
    .container-text-inicio > h1 {
        font-size: 30px;
    }
    .container-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
}

@media (max-width: 300px) {
    .fotos-section1 > img {
        width: 95%;
    }
}