/* Fuente base */
body {
    background-color: #F8F7F3;
    font-family: 'Merriweather', serif;
    background-position: center;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Navbar y branding */
#logo {
    width: 50px;
    height: auto;
    margin-right: 30px;
}

#menu {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #F8F7F3;
}

a.nav-link {
    margin: 0 20px;
    font-family: 'Quicksand', sans-serif;
}

a.nav-link:hover {
    color: #b42822;
    text-decoration: underline;
    font-weight: bold;
    display: flex;
}

#boton_inicio {
    color: #b42822;
    border: #b42822 solid 1px;
    margin: 0 10px 0 20px;
    transition: 0.3s ease-in-out;
    font-family: 'Quicksand', sans-serif;
}

#boton_inicio:hover {
    background-color: #b42822;
    color: whitesmoke;
}

/* Íconos del menú */
#FAQ, #contacto, #tienda, #nosotros {
    display: none;
}

#menu-faq, #menu-tienda, #menu-nosotros, #menu-contacto {
    display: flex;
}

#menu-faq:hover #FAQ,
#menu-contacto:hover #contacto,
#menu-nosotros:hover #nosotros,
#menu-tienda:hover #tienda {
    display: flex;
    width: 40px;
    height: auto;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 15px;
    width: 100%;
    font-size: small;
    font-family: 'Quicksand', sans-serif;
}

#text-footer {
    margin-bottom: 0px;
}

/* Main contenedor */
#main {
    background-color: #f8f7f3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    flex: 1;
}

p, h1, h2, h3, h4, h5, .btn, nav, footer {
    font-family: 'Quicksand', sans-serif;
    text-align: center;
}

/* Contenedor principal */
#main-caja {
    max-width: 700px;
    width: 100%;
    background-color: white;
    border-radius: 20px;
    border: #b42822 2px solid;
    padding: 20px;
    min-width: 400px;
}

/* Imagen */
#img1, #imagen-caja {
    max-width: 500px;
    height: 100%;
    margin-right: 120px;
    margin-top: 20px;
}

/* Formulario */
#formulario {
    margin: 0px;
}

#caja-texto-1 {
    margin-top: 10px;
    text-align: center;
}

/* Botón de envío */
#enviar {
    background: #b42822;
    color: #F8F7F3;
}

#enviar:hover {
    background-color: #F8F7F3;
    border: #b42822 2px solid;
    color: #b42822;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    #main {
        padding: 20px 10px;
        flex-direction: column;
    }

    #main-caja {
        padding: 20px 15px;
    }

    #img1 {
        margin: 20px auto 20px auto;
        max-height: 250px;
    }

    .navbar .container {
        flex-wrap: wrap;
    }

    #logo {
        margin-bottom: 10px;
    }

    #imagen-caja {
        margin: 0 auto;
        text-align: center;
    }
}
