:root {
    /* COLORS */
    --bg: #16100b;
    --bg-dark: #0a0604;
    --bg-light: #2b1d14;
    --bg-normal: #1d140f;

    --primary: #c96a2b;
    --primary-dark: #7a3d17;

    --text: #fff6e8;
    --text-muted: #d6bea0;

    --shadow: rgba(201, 106, 43, 0.35);
    --shadow-strong: rgba(214, 170, 90, 0.40);

    /* FONTS */
    --font-title: 'Cinzel', serif;
    --font-body: 'EB Garamond', serif;

    /* BANNER */
    --banner-bg-top: rgba(22, 16, 11, 0.42);
    --banner-bg-bottom: rgba(10, 6, 4, 0.92);

    --banner-overlay: rgba(201, 106, 43, 0.20);
    --banner-overlay-soft: rgba(214, 170, 90, 0.10);

    --banner-shadow: rgba(120, 60, 20, 0.55);
    --banner-shadow-dark: rgba(0, 0, 0, 0.92);

    --banner-image: url("../../Canti/XXVI/res/images/HomeXXVI.jpg");
}

body
{
    padding-top: 30px;
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    align-items: center;
}

h1
{
    text-align:center;
    color: var(--common-primary);
    font-family: var(--font-title);
    text-shadow: 0 0 10px var(--shadow-strong);
}

.titolo-paragrafo
{
    margin-top: 0px;
    color: var(--common-primary);
}

.testo
{
    margin: 50px;
    background-color: var(--bg-normal);
    border: 2px solid var(--primary);
    padding:35px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    font-size: large;
    box-shadow: 0 0 18px var(--shadow);
}

img
{
    border-radius: 15px;
    border:  2px solid var(--shadow);
    width: auto;
    max-width: 25%;
    height: 100%;
    box-shadow: 0 0 15px var(--shadow);
}

section:nth-child(even) .testo{
    flex-direction: row-reverse;
}

/*banner per le parole evidenziate nel testo*/
.tooltip-word .tooltip-box 
{
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);

    background: var(--bg-light);
    color: var(--text);

    border: 1px solid var(--common-primary);

    padding: 10px 14px;
    border-radius: 8px;

    width: 220px;

    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;

    z-index: 100;
    pointer-events: none;
    white-space: normal;

    box-shadow: 0 0 12px var(--shadow);
}

.tooltip-word:hover .tooltip-box 
{
     display: block;
}

.tooltip-word 
{
    color: var(--common-primary);

    border-bottom: 1px dotted currentColor;
    cursor: help;
    position: relative;
    display: inline;
} 


/*parte per il testo e parafrasi del canto*/
aside 
{
    float: right;
    width: 50%;
}

.parafrasi 
{
    position: absolute;
    top: 25%;
    right: 0;
    width: 45%;
}

.testoCanto
{
    background-color: var(--bg-normal);
    border: 2px solid var(--primary);
    margin: 30px;
    padding:50px;
    border-radius: 15px;
}