:root {
	--c1: #ffffff20;
	--c2: #A9E2FF;
	--c3: #A9E2FF;
	--c4: #b50000;
	--c5: #1f0504;
	--nero: white;
}


/* 

MAIN PAGE

*/

@font-face {
  font-family: Living;
  src: url(../fonts/Living-Hell.ttf);
}

html {
	scroll-behavior:smooth;
	background-color: var(--c5);
	background-image: radial-gradient(at right, var(--c4), var(--c5));
	font-size: medium;
    font-family: Arial, Helvetica, sans-serif;
	color: var(--nero);
}

body {
	margin: 0px;
	border: 0px;
	padding: 0px;
            justify-content: center;
            
}

.container {
	width: 100%;
	height: 100%;
	display: flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	align-items: center;
	justify-content: center;
	margin: auto;
}

/*! Full-screen */
.header {
	width: 100%;
	min-height: 100vh;
	display: flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	align-items: center;
	justify-content: center; 
	margin: auto;
	z-index: 100;
	background-image: url("../images/clock80.png");
	background-position: center bottom;
	#background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: 30%;

}




.clock-container {
	width: 100%;
	#background-color: black;
	#overflow: hidden;
    display: inline-block;
	#flex-wrap: nowrap;
	white-space: nowrap;
    justify-content: center;
    align-items: center;
}

.clock {
	#transform: scale(25%); 
	#width: 100%;
	#height: auto;
}


data {
	display:none;
}


	
	/* maiuscole */
	
.cap {
  font-family: Living;
  font-size: 130%;
}


.red {
  color: red;
}
	
.button {
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 8px;
}

.white {
  background-color: #ffff;
  color: var(--c4);
  border: 2px solid var(--c4);
}

.trans {
  color: #ffff;
  border: 2px solid #ffff;
}


.products {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
}

.product {
    background-color: #222;
    color: white;
    padding: 20px;
    border-radius: 10px;
}







        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            max-width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0px;
			/* Navbar trasparente */
            /* background-color: rgba(34, 34, 34, 0.8); */
            background-color: rgba(0, 0, 0, 0.1); /* Navbar più scura */
            color: white;
            transition: all 0.4s ease-in-out;
			z-index: 200;
        }

        .navbar.small {
			/*
            padding: 8px 15px;
			*/
            padding: 0px;
            background-color: rgba(0, 0, 0, 0.5); /* Navbar più scura */
        }

        .navbar.small .logo img {
            width: 20px;
            height: 10px;
        }

        .logo a {
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
        }
		
		.logo img {
            width: 80px;
            height: 40px;
			vertical-align: middle;
            transition: all 0.3s ease;
        }


        .logo a:hover {
            opacity: 0.8; /* Effetto al passaggio del mouse */
        }


        .menu {
            list-style: none;
            display: flex;
            gap: 0px;
			flex-wrap: wrap; /* Permette di adattarsi su schermi più piccoli */
        }

        .menu a {
            text-decoration: none;
            color: white;
            font-size: 16px;
            transition: color 0.3s ease-in-out;
            padding: 18px;
        }

        .menu a:hover {
			/*
            color: #A9E2FF; /* Cambia colore al passaggio del mouse */
			*/
            opacity: 0; /* Effetto al passaggio del mouse */
			background-color: #000;
      }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: white;
            cursor: pointer;
			position: fixed; /* Cambia position in fixed per mantenerlo visibile */
			right: 10px; /* Lo spostiamo più dentro rispetto al bordo */
			top: 15px; /* Lo abbassiamo leggermente */
			z-index: 9999; /* Assicuriamo che stia sopra gli altri elementi */
        }




































/*
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #222;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

.menu li {
    display: inline;
}

.menu a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.menu-toggle {
    display: block;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

 .menu.show {
	display: flex;
}

*/

#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

#cookie-banner button {
    background-color: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
}



















.faq-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    align-items: flex-start;
}

.faq-title {
    font-size: 24px;
    font-weight: bold;
    color: red;
}


.faq {
    width: 80%;
    /*margin: auto;*/
    border-left: 5px solid red;
	padding-left: 20px;
}

.faq-item {
    /* background-color: #ccc;*/
    /* padding: 15px;*/
    border-radius: 5px;
    margin-bottom: 10px;
}

.arrow {
    transition: transform 0.3s ease;
	display: inline-block;
}

.faq-question {
    width: 100%;
    text-align: left;
    /* background-color: #ff0000;*/
    background-color: #ff000000;
    color: white;
    border: none;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

.faq-answer {
    display: none;
    padding: 10px;
    /*background-color: #f1f1f1;*/
    border-left: 3px solid #ff0000;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
	# opacity: 1;
	white-space: normal;
	word-wrap: normal;
	text-align: left;
}





























.product-card {
    width: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    padding: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
    background-size: cover; /* L'immagine copre tutto il contenitore adattandosi */
    background-repeat: no-repeat;
    background-position: center;
}

.product-title {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.product-list {
    list-style: none;
    padding: 0;
}

.product-list li {
    font-size: 16px;
    margin: 5px 0;
}

.product-footer {
    background-color: red;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}

.price-info {
    text-align: left;
}

.price {
    font-size: 20px;
    font-weight: bold;
}

.description {
    font-size: 12px;
}

.book-button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
}


.sidebar {
	border-style:solid;
	border-radius:40px;
	border-color:black;
	background: black;
	width:4%;
	position: fixed;
	right:0;
	top:30%;
	z-index: 200;
}

.sidebutton {
	fill: red;
}


.footer {
	background: black;
	padding: 40px;
}


.map{
	width: 100%;
	height: 300px;
	background-color: black;
	overflow: hidden;
	position: relative;
}


.panContainer2{
	overflow-x: hidden;
}


.panContainer{
	width: 100%;
	aspect-ratio: 4 / 1; 
	background-color: black;
	overflow: hidden;
	position: relative;
}

.panObject{
	position: absolute;
	left: -450px;
	opacity: .4;
	text-align: center;
	animation: panSlide linear infinite;
	#animation: panSlide ease-in infinite;
	animation-fill-mode: forwards;


}

@keyframes panSlide {
	from {
		position: absolute; 
		left: 0px;
		#transform: translateX(-100%);
		transform: rotate(0deg);
	} 
	to {
		position: absolute; 
		left: 150%;
		transform: rotate(360deg);
	}
}





@media screen and (max-width: 500px) {
    .products {
        flex-direction: column;
        align-items: center;
    }

	.hlogo img {
		max-width: 100%;
		height: auto;
	}


    .faq-container {
        flex-direction: column;
        align-items: center;
    }

	.header {
		background-size: 100%;
	}


   .menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 60px;
		right: 0;
		background-color: #222;
		width: 150px;
		text-align: center;
	}

	.menu li {
		padding: 10px;
	}

	.menu-toggle {
		display: block;
	}

	.menu.show {
		display: flex;
	}
}


