/* ------------------------------------------------------------
   css della pagina della storia della sezione
------------------------------------------------------------ */
/* ------------------------------------------------------------
   HERO STORICO
------------------------------------------------------------ */

.history-hero{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    text-align:center;
}


/* Scritta superiore */
.history-hero .history-hero-presentation{
    margin:0 0 15px;

    color:#f3ead3;

    font-family:Georgia, "Times New Roman", serif;
    font-size:1.15rem;
    font-style:italic;
    font-weight:400;

    letter-spacing:.4px;
}


/* Titolo principale */
.history-hero h2{
    margin:0;

    color:#d6a437;

    font-family:Georgia, "Times New Roman", serif;
    font-size:3rem;
    font-weight:600;

    letter-spacing:.5px;
}


/* Decorazione sotto il titolo */
.history-hero-decoration{
    display:flex;
    align-items:center;
    justify-content:center;

    width:330px;
    max-width:80%;

    margin-top:25px;
}


/* Linee */
.history-hero-decoration span{
    flex:1;
    height:1px;

    background:#d6a437;
}


/* Rombo centrale */
.history-hero-decoration i{
    margin:0 14px;

    color:#d6a437;

    font-size:.75rem;
    font-style:normal;
}
/* CONTENITORE STORICO */
.history-page{
    position:relative;
    max-width:1150px;
    margin:60px auto;
    padding:65px 75px;
    background:#f3ead3;
    border:1px solid #cbbd99;
    border-radius:4px;
    box-shadow:
        0 8px 25px rgba(0,0,0,.18),
        inset 0 0 45px rgba(111,82,40,.08);
    color:#3d3428;
}
/* Leggero effetto carta */
.history-page::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(
            90deg,
            rgba(120,90,45,.035),
            transparent 15%,
            transparent 85%,
            rgba(120,90,45,.035)
        );
    border-radius:4px;
}
/* INTESTAZIONE */
.history-header{
    position:relative;
    z-index:1;
    max-width:850px;
    margin:0 auto 55px;
    text-align:center;
}
.history-header h1{
    margin-bottom:20px;
    color:#a8874f;
    font-family:Georgia, "Times New Roman", serif;
    font-size:2.4rem;
    font-weight:600;
}
.history-introduction{
    color:#655746;
    font-family:Georgia, "Times New Roman", serif;
    font-size:1.15rem;
    font-style:italic;
    line-height:1.9;
}
/* Piccolo ornamento sotto l'introduzione */
.history-header::after{
    content:"";
    display:block;
    width:100px;
    height:2px;
    margin:30px auto 0;
    background:#a8874f;
}
/* CAPITOLI */
.history-section{
    position:relative;
    z-index:1;
    margin:0 auto;
}
.history-section h2{
    margin-bottom:25px;
    color:#493a28;
    font-family:Georgia, "Times New Roman", serif;
    font-size:1.9rem;
    font-weight:600;
}
/* TESTO */
.history-content{
    color:#3d3428;
    font-family:Georgia, "Times New Roman", serif;
    font-size:1.08rem;
    line-height:1.95;
}
.history-content p{
    margin-bottom:22px;
    text-align:justify;
}
/* IMMAGINI STORICHE */
.history-image{
    float:left;
    width:38%;
    max-width:380px;
    margin:8px 30px 22px 0;
    padding:10px 10px 14px;
    background:#f8f3e7;
    border:1px solid #c9b992;
    box-shadow:0 4px 12px rgba(0,0,0,.18);
    transform:rotate(-1deg);
}
/* Variante immagine a destra */
.history-image-right{
    float:right;
    margin:8px 0 22px 30px;
    transform:rotate(1deg);
}
.history-image img{
    width:100%;
    height:auto;
    display:block;
    filter:sepia(10%) contrast(96%);
}
.history-image-current{
    width:35%;
    max-width:350px;
    margin-top:5px;
    transform:rotate(1deg);
}
/* Didascalia */
.history-image figcaption{
    margin-top:10px;
    color:#6b5b47;
    font-family:Georgia, "Times New Roman", serif;
    font-size:.85rem;
    font-style:italic;
    line-height:1.5;
    text-align:center;
}
/* SEPARATORI TRA PERIODI STORICI */
.history-divider{
    position:relative;
    z-index:1;
    clear:both;
    width:70%;
    height:1px;
    margin:55px auto;
    background:#b7a47b;
}
/* Ornamento centrale */
.history-divider::after{
    content:"◆";
    position:absolute;
    top:50%;
    left:50%;
    padding:0 14px;
    background:#f3ead3;
    color:#8b6c3c;
    font-size:.75rem;
    transform:translate(-50%, -50%);
}
/* PULIZIA FLOAT */
.history-section::after{
    content:"";
    display:block;
    clear:both;
}