label.md-nav__title, div.md-header__topic {display:none;}

.md-footer-meta__inner, .md-copyright, .md-copyright__highlight{
	justify-content: center;
	text-align: center;
}

@font-face {
  font-family: 'Baskervville';
  src: url('../assets/fonts/Baskervville-Regular.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Baskervville';
  src: url('../assets/fonts/Baskervville-Italic.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}

body {
  font-family: 'Baskervville', 'Times New Roman', Times, serif;
}

.md-typeset figure {
  display: inline;
  float: right;
  width: 100%;
  text-align: center;
  font-style: italic;
  font-size: smaller;
  text-indent: 0;
  background-color: #7462bc;
  border-radius: 5px;
  margin: 0.5em;
  padding: 0.5em;
}

figure img {
	width: 100%;
}

img.mezza {
	width: 100%;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centra righe incomplete */
  gap: 0.1em;
  align-items: stretch;
}

.gallery figure {
  float: none;
  width: 180px; /* larghezza costante */
  flex: 0 0 auto; /* impedisce l'allungamento */
  margin: 0;
}


@media screen and (min-width: 500px) {
.md-typeset figure {
  width: 48%;
}

img.mezza {
	width: 48%;
	float: right;
	padding: 15px;
}

.gallery {
  gap: 0.5em;
}

.gallery figure {
  width: 220px; /* larghezza costante */
}
}
 /* per homepage */
        .intro {
            text-align: center;
            /*font-size: 1.1rem;*/
			margin-top: 0rem;
            margin-bottom: 2rem;
            /*max-width: 800px;*/
            margin-left: auto;
            margin-right: auto;
        }

        .event-announcement {
            text-align: center;
            /*font-size: 1rem;*/
            /*font-weight: bold;*/
            /*color: #3315B0;*/
            margin-bottom: 3rem;
            padding: 10px;
            /*background-color:orange;*/
            border-radius: 8px;
			border: 1px solid orange;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
		
		.event-announcement:empty {
			border: none;
			margin-bottom: 0rem;
        }
		
		/* Container delle immagini */
        .images-container {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: 4rem;
            margin-top: 2rem;
        }

        /* Immagine principale */
        .main-image-container {
            flex-shrink: 0;
        }

        .main-image {
            width: 400px;
            height: 400px;
            border-radius: 50;
            clip-path: circle(50% at center);
            object-fit: cover;
            transition: transform 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .main-image:hover {
            transform: scale(1.05);
        }

        /* Container delle 4 immagini secondarie */
        .secondary-images-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            width:400px; /* per distanza fra colonne tutte uguali usare: calc(400px + 4rem)*/
            gap: 15px; /* per distanza fra colonne tutte uguali usare: 15px 4rem */
			/*height: 400px;*/
        }

        .secondary-image {
            width: 100%;
            height: 100%;
            border-radius: 50%;
			clip-path: circle(50% at center);
            object-fit: cover;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .secondary-image:hover {
            transform: scale(1.1);
        }

        /* Link styling */
        a {
            text-decoration: none;
            display: inline-block;
        }

        /* Media query per tablet */
        @media (max-width: 900px) {
			.intro {
				margin-top: -1rem;
			}
			
            .images-container {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
			
		    .event-announcement:empty {
                display: none;
                margin-top: -1rem;
                padding: 0;
            }
			
            .main-image {
                width: 320px;
                height: 320px;
            }

            .secondary-images-container {
                width: 320px;
                /*height: 320px;*/
                gap: 12px;
            }

            .presentation-text {
                font-size: 1rem;
            }
        }

        /* Media query per mobile */
        @media (max-width: 480px) {
        .intro {
			margin-top: -1.5rem;
        }
		
        /* Nascondi l'annuncio se vuoto */
		    .event-announcement:empty {
                display: none;
                margin: 0;
                padding: 0;
            }

            .main-image {
                width: 280px;
                height: 280px;
            }

            .secondary-images-container {
                width: 280px;
                /*height: 280px;*/
                gap: 10px;
            }

            .presentation-text {
                font-size: 0.95rem;
                margin-bottom: 1.5rem;
            }

            .event-announcement {
                font-size: 0.9rem;
                margin-bottom: 2rem;
            }

            .images-container {
                gap: 1.5rem;
            }
        }

        /* Preload delle immagini critiche */
        .preload-image {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
        }

