
/* ESTILOS GLOBALES */

* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100dvh;
    font-family: 'Poppins', sans-serif;
    color: white;
    position: relative;
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url("../img/local.png") center/cover;
    z-index: -1;
}



/*-----------------------------------------*/


/* ESTILOS PÁGINA */

/* Contenedor principal */
.contenedor {
    max-width: 100%;
    width: 1200px;
    padding: 25px;
}

/* Logo */
.contenedor .header img {
    width: 20vw;
    max-width: 150px;
    min-width: 80px;
}

/* Títulos */
.contenedor .header h1 {
    font-size: 3.5rem;
    font-weight: 500;
    font-style: italic;
    margin-top: 15px;
}

.contenedor .header h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* Botón de la carta */
.contenedor .main .btn-carta {
    background-color: #650B1E;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    margin: 1rem 0 2rem 0;
    padding: 15px 80px;
    border-radius: 50px;
    display: inline-block;
}

.contenedor .main .btn-carta:hover {
    background-color: #ef5222;
    color: rgb(255, 251, 246);
}

/* Horario y datos */
.contenedor .footer .datos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.contenedor .footer .datos .horario {
    font-size: 1.4rem;
    font-weight: 600;
}

.contenedor .footer .datos .nota,
.contenedor .footer .datos span {
    font-size: 1.2rem;
    opacity: 0.85;
    font-weight: 400;
}

.contenedor .footer .datos .links {
    color: #ff6347;
    font-weight: bold;
    text-decoration: underline;
    text-transform: uppercase;
}

/* Espaciado entre secciones */
.contenedor .main {
    margin-bottom: 25px;
}


/*-----------------------------------------*/


/* RESPONSIVE */

/* Responsive Tablet */
@media (max-width: 820px) {

    .contenedor .header h1 {
        font-size: 3rem;
    }

    .contenedor .header h2 {
        font-size: 1.4rem;
    }

    .contenedor .footer .datos .horario {
        font-size: 1.2rem;
    }
    
    .contenedor .footer .datos .nota,
    .contenedor .footer .datos span {
        font-size: 1.1rem;
    }
}

/* Responsive Móvil */
@media (max-width: 500px) {

    .contenedor .header img {
        width: 25vw;
        max-width: 120px;
    }

    .contenedor .header h1 {
        font-size: 2.8rem;
    }

    .contenedor .header h2 {
        font-size: 1.2rem;
    }

    .contenedor .main .btn-carta {
        font-size: 1rem;
        padding: 15px 70px;
    }

    .contenedor .footer .datos .nota,
    .contenedor .footer .datos span {
        font-size: 1rem;
    }
}

/* Responsive Móvil */
@media (max-width: 410px) {
    .contenedor .header img {
        width: 28vw;
        max-width: 120px;
    }

    .contenedor .header h1 {
        font-size: 2.8rem;
    }

    .contenedor .header h2 {
        font-size: 1.2rem;
    }

    .contenedor .main .btn-carta {
        font-size: 1rem;
        padding: 15px 70px;
    }

    .contenedor .footer .datos .horario {
        font-size: 1.1rem;
    }

    .contenedor .footer .datos .nota,
    .contenedor .footer .datos span {
        font-size: 1rem;
    }
}