.strokewhite {
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: black;
}
.strokeblack {
    -webkit-text-fill-color: black;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: white;
}

#cookie-notification {
	position: fixed;
	bottom: 0;
    border-top: 2px solid gray;
	left: 0;
	width: 100%;
	padding: 20px 0;
	line-height: 24px;
	background-color: black;
	color: white;
	z-index: 999;
	-webkit-box-shadow: 0px -1px 4px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px -1px 4px 0px rgba(0,0,0,0.15);
	box-shadow: 0px -1px 4px 0px rgba(0,0,0,0.15);
	-webkit-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

#cookie-notification .container {
	padding: 50px;
	/*position: relative;*/
}

@media only screen and (min-width: 768px) {
      .bannermobile{ display: none;width: 100%;}
    }
     @media only screen and (max-width: 768px) {
      .banner{ display: none;}
    }







/* Assicura altezza piena su tutto il layout */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh; /* schermo intero */
    overflow: hidden;
}

/* Slide stackate in overlay */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* Immagine a schermo intero */
.slide img {
    width: 100%;
    /*height: 100%;*/
    object-fit: cover; /* Ritaglia per riempire interamente lo schermo */
    display: block;
}

/* Pulsanti sovrapposti all’immagine */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    padding: 12px;
    font-size: 28px;
    cursor: pointer;
    border: none;
    z-index: 5;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
