:root {
	--font1: "Poppins";
	--font2: "Playfair Display";
	--font3: "DM Sans";
  }
  
  body,
  div,
  a,
  p,
  input,
  button,
  h1,
  h2,
  h3,
  h4,
  h5,
  li,
  textarea {
	font-family: var(--font3);
  }
  
  .container {
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
  }
  
  .header {
	/* position: fixed;
	right: 0;
	top: 0; */
	width: 100%;
	padding: 0px 60px;
	/* z-index: 2; */
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  img.logo {
	/* float: left; */
	width: 150px;
	height: auto;
	margin: 0 0 0 0;
	/* position: absolute;
	left: 50%;
	transform: translateX(-50%); */
  }
  
  .image-area {
	/* position: fixed;
	left: 0;
	top: 0; */
	width: 50%;
	height: 100%;
	/* z-index: 5; */
	background: url(../images/bg.png) no-repeat center;
	background-size: cover;
  }
  .main {
	margin: 0;
	  width: 50%;
	  height: 100%;
	  padding: 0 60px;
	  z-index: 5;
	  display: flex;
	  flex-direction: column;
	  justify-content: space-evenly;
  }
  .main h2 {
	text-align: center;
	color: #000;
	font-size: 24px;
	font-weight: normal;
	text-transform: uppercase;
	margin: 0 0 30px 0;
  }
  .main h3 {
	text-align: center;
	color: #000;
	font-size: 60px;
	line-height: 110%;
	font-weight: bold;
	text-transform: capitalize;
	margin: 0 0 20px 0;
  }
  
  .menu-container {
	display: grid;
	grid-template-columns: repeat(2, 150px);
	grid-gap: 20px;
  
	justify-content: center;
	align-content: center;
  
	margin-bottom: 5%;
  }
  
  .menu-item {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	border: 2px solid #ccc;
	border-radius: 10px;
	width: 150px;
	height: 150px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.2s, box-shadow 0.2s;
	cursor: pointer;
  }
  
  .menu-item:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  .menu-item img {
	width: 60px;
	height: 60px;
	margin-bottom: 10px;
  }
  
  .menu-item p {
	margin: 0;
	font-size: 1rem;
	font-weight: bold;
	color: #333;
  }
  
  footer {
	/* position: fixed;
	right: 0;
	bottom: 0; */
	width: 100%;
	padding: 0px 60px;
	/* z-index: 6; */
	display: flex;
	align-items: center;
	justify-content: space-between;
  }
  footer .version {
	float: left;
	text-align: left;
	color: #000;
	font-size: 15px;
  }
  
  /* Stile del pulsante */
  .cta-button {
	background: none;
	border: none;
	color: #000000;
	font-size: 16px;
	cursor: pointer;
	padding: 10px 0;
	display: flex;
	align-items: center;
	gap: 8px;
  }
  
  .cta-button i {
	font-size: 18px;
	color: #f4b400; /* Giallo Google */
  }
  
  .cta-button:hover {
	color: #0056b3;
  }
  
  .cta-button:hover i {
	color: #e6a700; /* Giallo leggermente più scuro per effetto hover */
  }
  
  /* Stile della modale */
  .modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	overflow: auto;
  }
  
  .modal-content {
	background: #fff;
	margin: 4% auto;
	padding: 20px;
	border-radius: 8px;
	width: 80%;
	max-height: 640px;
	max-width: 700px;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
	text-align: left;
	overflow: auto;
  }
  
  /* Stile del pulsante di chiusura */
  .close-modal {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
  }
  
  .close-modal:hover {
	color: #333;
  }
  
  /* Stile del contenuto */
  .modal-content h3 {
	font-size: 22px;
	color: #333;
  }
  
  .modal-content h4 {
	font-size: 18px;
	margin-top: 15px;
	color: #444;
  }
  
  .modal-content p,
  .modal-content ul {
	font-size: 16px;
	line-height: 1.6;
	color: #555;
  }
  
  .modal-content ul {
	list-style-type: disc;
	padding-left: 20px;
  }
  
  .modal-content ul ul {
	list-style-type: circle;
  }
  
  @media screen and (max-height: 700px) {
	img.logo {
	  
	  width: 90px;
  
	}
  }