@charset="utf-8";

/*fuente importada de google fonts */

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

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

html {
    height: -webkit-fill-available;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    font-family: "poppins", sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

ul li {
    list-style: none;
}

a {
    text-decoration: none;
    color: rgb(124,0,0);
}

/* inicio barra nav */

header {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: rgb(124,0,0);
}

.barra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    margin: 0 auto;
    padding: 1em;
}

#isotipo img {
    width: 4em;
    margin-right: 1em;
}

#logotipo img {
    width: 12em;
}

.barra nav a {
    color: white;
    padding: .5em 1em;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
} 

.barra li:hover {
    background-color: rgba(124,0,0,0.6);
}

header nav ul {
    background-color: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 100%;
    width: 50%;
    height: 100vh;
    padding-top: 6em;
    transition: all .6s ease;
    z-index: 9990;
}

header nav ul li {
    font-size: 1.3em;
    padding: .2em .4em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

header nav ul li .material-icons {
    margin: .2em;
    font-size: 22px;
    line-height: 1;
    display: inline-block;
}

.visible {
    left: 50%;
    transition: all .3s ease;
}

#llamamenu {
    color: rgb(124,0,0);
    cursor: pointer;
    height: 2.5em;
    width: 2.5em;
    display: flex;
    position: relative;
    z-index: 9999;
    cursor: pointer;
    margin-left: 2.4em;
}

#llamamenu i {
    padding: 0;
    margin: auto;
}

/* fin barra nav */

#titulo {
    background-color: #7F7D76;
    padding: 10px;
    margin: 10px;
}

#titulo h1 {
    font-size: 22pt;
    color: white;
    font-weight: 600;
    margin-left: .3em;
}

#titulo h6 {
    font-size: 10pt;
    color: white;
    font-weight: 200;
    margin-left: .7em;
}

/* inicio migajas */

.volver {
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 10px;
    margin-bottom: .5em;
    margin-top: .5em;
}

.volver a {
    color: rgb(124,0,0);
    font-size: 10pt;
    font-weight: 400;
    margin-right: .2em;
    margin-left: .2em;
}

.volver .material-icons {
    color: rgb(124,0,0);
    font-size: 12pt;
}

.seccion {
    color: rgb(124,0,0);
    font-size: 10pt;
    font-weight: 600;
}

/* fin migajas */

h3 {
    font-size: 15pt;
    color: rgb(124,0,0);
    font-weight: 500;
}

.info {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
}

.info ul {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.info li {
    display: flex;
    flex-direction: column;
    font-size: 12pt;
    font-weight: 400;
}

h4 {
    font-size: 9pt;
    padding-bottom: 5px;
    color: white;
}

.mapa {
    display: flex;
    flex-direction: column;
}

.mapa a {
    display: flex;
    flex-direction: column;
    color: white;
    font-size: 8pt;
}

.mapa a:hover {
    color: black;
}
    
#icono {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#icono span {
    font-size: 15pt;
    margin-right: .3em;
}

#icono_lugar span {
    font-size: 15pt;
}

/* Formulario de contacto */

#caja_contacto {
    padding: 2em;
    width: 100%;
    display: flex;
    justify-content: center;
}

.contacto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-radius: 6px;
    padding: 45px 45px 20px;
    background-color: rgb(0,0,20,0.5);
}

.contacto label {
    display: block;
    font-weight: bold;
    color: white;
    padding-left: 0.7em;
}

.boton {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacto div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 15px; 
}

.contacto input[type='text'], .contacto textarea {
    padding: 7px 6px;
    width: auto; 
    border: 1px solid #CED5D7;
    resize: none; 
    box-shadow:0 0 0 3px gray;
    margin: 5px 0;
    border-radius: 20px;
}

.contacto input[type='text']:focus, .contacto textarea:focus{
    outline: none;
    box-shadow:0 0 0 3px #dde9ec;
}

.contacto input[type='submit'] {
    background-color: rgb(124,0,0,0.8);
    color: white;
    border: 1px solid #CED5D7;
    padding: 8px 16px;
    font-weight: bold;
    text-shadow: 1px 1px 0px black;
    border-radius: 20px;
    width: 130px;
    margin-top: 1em;
    margin-left: 0.5em;
}

.contacto input[type='submit']:hover{
    background: #edfcff;
    background: -moz-linear-gradient(top, white 0%, white 100%);
    background: -webkit-linear-gradient(top, white 0%, white 100%);
}
.contacto input[type='submit']:active{
    background: #cfe6ef;
    background: -moz-linear-gradient(top, #cfe6ef 0%, #edfcff 100%);
    background: -webkit-linear-gradient(top, #cfe6ef 0%,#edfcff 100%);
}

/* Fin contacto */

iframe {
    width: 100%;
}

/* Tambien te puede interesar */

#interes {
    padding: 2em;
}

#secciones {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#interes h4 {
    color: #7F7D76;
    border-style: solid;
    border-color: #7F7D76;
    border-width: 2px;
    border-top-style: none;
    border-left-style: none;
    border-right: none;
    width: 100%;
    margin-bottom: .5em;
    font-size: 15pt;
}

#secciones ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding-top: .1em;
    padding-bottom: .2em;
    width: 100%;
}

#secciones li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: .1em;
    margin-left: .1em;
    width: 50%;
    height: 2.2em;
    font-size: 10pt;
    color: white;
    cursor: pointer;
    border-top-right-radius: 3em;
    border-bottom-right-radius: 3em;
}

#secciones a {
    color: white;
    cursor: pointer;
}

#secciones .historia {
    background-color: rgb(124,0,0,0.8);
}

#secciones .reserva {
    background-color: rgb(0,0,20,0.5);
}

#secciones .cuenta {
    background-color: rgb(0,0,20,0.5);
}

#secciones .horarios {
    background-color: rgb(124,0,0,0.8);
}

footer {
    background-color: rgb(124,0,0);
    color: white;
    font-size: .6em;
    padding: 10px;  
    text-align: center;
}

footer a {
     text-decoration: none;
    color: beige;   
}

/* inicio mediaqueries */

@media screen and (min-width: 700px){
    #llamamenu {
        display: none;
}
    header nav ul {
        display: flex;
        flex-wrap: wrap;
        background: none;
        position: relative;
        height: auto;
        width: 100%;
        left: auto;
        padding-top: 0;
}
    .visible {
        left: 0;
}
    header nav ul li {
        font-size: .8em;
}
    .barra nav a {
        padding: .5em .2em;
} 
    #isotipo {
        display: none;
}
    #logotipo img {
        width: 10em;
}
     .contacto {
        width: 60%;
}
}

@media screen and (min-width: 800px)
{
    header nav ul li {
        font-size: .95em;
}
    .barra nav a {
        padding: .5em .2em;
} 
    #logotipo img {
        width: 11em;
}
     .contacto {
        width: 60%;
}
}

@media only screen and (min-width: 1000px)
{
    #secciones {
    flex-direction: row;
}
    #secciones .cuenta {
    background-color: rgb(124,0,0,0.8);
}

    #secciones .horarios {
    background-color: rgb(0,0,20,0.5);
}
    h2 {
    margin-left: 1.5em;
}
    header nav ul li {
        font-size: 1em;
}
    .barra nav a {
        padding: .5em .2em;
} 
    #logotipo img {
        width: 13em;
}
     .contacto {
    width: 60%;
}
}

@media screen and (min-width: 1200px)
{
    header nav ul li {
        font-size: 1em;
}
    .barra nav a {
        padding: .5em .2em;
} 
    #logotipo img {
        width: 13em;
}
     .contacto {
        width: 60%;
}
}
