@import url('https://fonts.googleapis.com/css2?family=Amarna:ital,wght@0,100..700;1,100..700&family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Roboto+Slab:wght@100..900&display=swap');

/* Cabecera */
h1.header{
    text-align: center;
    color: aliceblue;
    background-image: url(../img/header.jpg);
    padding: 30px;
    margin: 0px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Cuerpo */
body {
    margin: 0;
    background: #f6b77a;
    font-family:'Amarna', sans-serif;
    color: #3b2c1f;
}

/* Navegación */
nav {
    background: #f4924e;
    padding: 22px 0;
    text-align: center;
    letter-spacing: 6px;
    font-weight: 700;
}

nav a {
    text-decoration: none;
    color: #1b1b1b;
    margin: 0 22px;
    font-size: 19px;
    transition: color 0.2s ease;
}

nav a:hover {
    color: #fff;
}

/* Contenido */
.contenedor {
    width: 75%;
    margin: 0 auto;
    padding-top: 40px;
}

section h2 {
    text-align: center;
}

/* Redes */
.redes {
    width: 150px;
    background: #f6b77a;
    border: 2px solid #fc5406;
    padding: 14px;
    position: fixed;
    right: 30px;
    top: 140px;
    text-align: center;
    margin-top: 60px;
}

.icono {
    width: 50px;
    height: 50px;
    background-color: #c78a50;
    margin: 6px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.icono img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.iconos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* Contacto */
.contacto {
    background: #ffd6a4;
    border: 2px solid #b4693a;
    padding: 28px;
    border-radius: 14px;
    width: 65%;
    margin: 0 auto;
}

.contacto form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contacto input,
.contacto textarea {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #b4693a;
    border-radius: 6px;
    background: #ffecd5;
}

.contacto button {
    background: #f4924e;
    border: 2px solid #b4693a;
    padding: 12px;
    font-size: 19px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.contacto button:hover {
    background: #e78341;
}

/* Columnas */
.contenedor-principal{
    max-width: 1400px;
    margin: 30px auto;
}

.contenedor-columnas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

.columna {
    padding: 15px;
}

.item {
    padding: 10px;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
    text-align: center;
    border-bottom: 2px solid #d16015;
}

.item:last-child {
    margin-bottom: 0;
}

/* Historia */
.contenedor-historia{
    margin-left: 350px ;
}

.imagenes img {
    display: block;
    width: 70%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    margin-bottom: 15px;
}

.video2{
    padding-left: 800px;
    padding-right: 800px;
    margin-bottom: 30px;
}

.historia1{
    text-align: center;
}

/* Pie de página */
footer {
    height: 50px;
    width: 80%;
    background-color:#f4924e;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Enlaces */
.enlace-museo {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* Listas */
ul{
    color: rgb(2, 182, 2);
    margin: 0;
}

ol{
    color: black;
}
