body {
    background-color: #0b0a2a;
    color: aliceblue;
    padding: 15px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

strong {
    font-weight: bold;
    color: goldenrod;
}

a {
    color: goldenrod;
    text-decoration: underline;
    text-decoration-style: dotted;    
}

/* Limita la dimensione massima dell'html per schermi grandi a 1000px centrato */
html {
    max-width: 1000px;
    margin: 0 auto;
}

/* Su schermi piccoli, riduci il padding e la dimensione del carattere */
@media (max-width: 600px) {
    body {
        padding: 10px;
        font-size: 0.9em;
    }
}

/* Titolo */

#info-box {
    color: aliceblue;
    padding: 5px 20px 5px 10px;
    margin: 0px;
    border-radius: 10px;
}

#info-box strong {
    /* text-transform: uppercase; */
}

#info-box ul {
    list-style-type: none;
    padding: 0;
}

/* Immagini all'interno di un testo, allineate a destra se c'è spazio */

img.right {
    display: block;
    margin: 10px auto;
    max-width: 100%;
    max-height: 300px;
    border-style: solid;
    border-width: 2px;
    border-color: aliceblue;
}

/* Container links */
#links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
    margin-top: 20px;
}

/* Pulsanti */
#links a {
    display: block;
    background-color: goldenrod;
    color: aliceblue;
    padding: 10px 12px;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    transition: transform 0.2s, background-color 0.3s;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    height: calc(100% - 20px); 
}

/* Effetto hover */
#links a:hover {
    background-color: darkorange;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

/* Sezione sinossi */

#sinossi {
    margin-top: 20px;
    padding: 10px;
}

#sinossi h2 {
    margin: 0;
    margin-bottom: 25px;
    padding: 10px;
    border-bottom: 5px solid goldenrod;
}

#sinossi p {
    text-align: justify;
    line-height: 1.5;
    padding-left: 5px;
    padding-right: 5px;
}

 /* Sezione note di regia */

#note-regia {
    margin-top: 20px;
    padding: 10px;
}

#note-regia h2 {
    margin: 0;
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 5px solid goldenrod;
}

#note-regia p {
    text-align: justify;
    line-height: 1.5;
    padding-left: 10px;
    padding-right: 10px;
}


/* Sezione cast */

#cast {
    margin-top: 20px;
    padding: 10px;
}

#cast h2 {
    margin: 0;
    margin-bottom: 25px;
    padding: 10px;
    border-bottom: 5px solid goldenrod;
}

.actor {
    display: flex;
    margin-bottom: 20px;
}

.actor img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.actor .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.actor .info h3 {
    margin: 0;
}

.actor .info p {
    margin: 0;
}

/* Sezione team artistico: contiene elenco con ruolo + nome + link di approfondimento + immagine */

#team-artistico {
    margin-top: 20px;
    padding: 10px;
}

#team-artistico h2 {
    margin: 0;
    margin-bottom: 25px;
    padding: 10px;
    border-bottom: 5px solid goldenrod;
}

.artist {
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
}

.artist img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.artist .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.artist .info h3 {
    margin: 0;
}

.artist .info p {
    margin: 0;
}

.artist .info a {
    color: goldenrod;
    text-decoration: none;
}

.artist .info a:hover {
    text-decoration: underline;
}

.artist .bio {
    margin-top: 10px;
}

/* Sezione contributor */

#contributor-list {
    margin-top: 20px;
    padding: 10px;
}

#contributor-list .role {
    font-weight: bold;
    color: goldenrod;
    text-transform: uppercase;
    margin-bottom: 5px;
}

#contributor-list .contributor-name {
    margin-bottom: 10px;
    display: block;
}

#contributor-list .contributor-details {
    margin-top: -10px;
    margin-bottom: 10px;
    display: block;
    font-size: smaller;
}

#contributor-list ul {
    list-style-type: none;
    padding-left: 0;
}

#contributor-list li {
    margin-bottom: 8px;
}

/* Sezione altri contributor */

#other-contributors {
    padding: 10px;
}

#other-contributors h2 {
    margin: 0;
    margin-bottom: 25px;
    padding: 10px;
    border-bottom: 5px solid goldenrod;
}

#other-contributors .role {
    font-weight: bold;
    color: goldenrod;
    text-transform: uppercase;
    margin-bottom: 5px;
}

#other-contributors .contributor-name {
    margin-bottom: 10px;
    display: block;
}

#other-contributors .contributor-details {
    margin-top: -10px;
    margin-bottom: 10px;
    display: block;
    font-size: smaller;
}

#other-contributors ul {
    list-style-type: none;
    padding-left: 0;
}

#other-contributors li {
    margin-bottom: 8px;
}


/* Sezione coro: elenco dei coristi (solo nome), suddivisi per sezione. Mostrato come elenco non ordinato, senza punto, sue due colonne se ci sta */

#coro {
    margin-top: 20px;
    padding: 10px;
}

#coro h2 {
    margin: 0;
    margin-bottom: 25px;
    padding: 10px;
    border-bottom: 5px solid goldenrod;
}

.section {
    margin-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.section h3 {
    margin: 0;
    margin-bottom: 10px;
    border-bottom: 2px dotted goldenrod;
}

.section ul {
    list-style-type: none;
    padding: 0;
}

.section ul li {
    margin-right: 10px;
}

/* Sezione brani musicali */
/* Per ogni brano: titolo, autore, interprete, anno, didascalia, nota/quote */

/* Esempio HTML con tutte queste informazioni /*
/* strutturati in una card/div fatti bene */

#brani-musicali {
    margin-top: 20px;
    padding: 10px;
}

#brani-musicali h2 {
    margin: 0;
    margin-bottom: 25px;
    padding: 10px;
    border-bottom: 5px solid goldenrod;
}

.song {
    margin-bottom: 20px;
}

.song h3 {
    /* Titolo */
    font-size: 1.5em;
    margin: 0;
    margin-bottom: 10px;
    border-bottom: 2px dotted goldenrod;
    text-transform: uppercase;
}

.song .performer {
    /* Interprete */
    font-size: smaller;
}

.song .author {
    /* Autore, interprete, anno */
    margin-bottom: 10px;
    /* Interprete */
    font-weight: bold;
    /* Maiuscolo */
    text-transform: uppercase;
}

.song .caption {
    /* Didascalia */
    margin-bottom: 10px;
}

.song .quote {
    /* Set a style for the quote, e.g. italic, padded, a little larger, grayed out */
    margin-top: 40px;
    margin-bottom: 20px;
    font-style: italic;
    padding-left: 30px;
    padding-right: 30px;
    color: #ccc;
    display: block;
}

#il-viaggio {
    margin-top: 20px;
    padding: 10px;
}

#il-viaggio h2 {
    margin: 0;
    margin-bottom: 25px;
    padding: 10px;
    border-bottom: 5px solid goldenrod;
}

#il-viaggio p {
    text-align: justify;
    line-height: 1.5;
}

/* Pulsante "Torna all'inizio" */
#scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 5px;
    background-color: goldenrod;
    border-color: #0b0a2a;
    border-width: 5px;
    border-radius: 5px;
    border-style: solid;
}

#scroll-to-top a {
    text-decoration: none;
    color: aliceblue;
}

/* Mostra di più */
button.show-more {
    /* Stile simile al link, con sottolineatura a puntini, allineato */
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: goldenrod;
    color: goldenrod;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

button.right {
    float: right;
}

/* Lyrics */

#lyrics {
    margin-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
}

.lyrics-title {
    background-color: goldenrod;
    color: aliceblue;
    padding: 10px;
    margin: 0;
}

.lyrics-content {
    margin-top: 20px;
    padding: 10px;
    white-space: pre-wrap;
    font-family: monospace;
    font-size: 1.0em;
}

.lyrics-changelanguage {
    float: right;
    text-align: center;

    /* Stile simile al link, con sottolineatura a puntini */
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: goldenrod;
    color: goldenrod;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

/* Box informazioni prossimo appuntamento */
#next-event {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-bottom: 1px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: aliceblue;
    color: #0b0a2a;
    border-radius: 10px;
}

#next-event h2 {
    text-transform: uppercase;
}

#next-event p {
    text-align: justify;
    line-height: 1;
}