body {
	margin: 0;
	padding: 0;
	background-size: cover;
	background-position: center;
	height: 100vh;
	font-family: 'Garamond', serif
}

header {
	position: absolute;
	top: 30px;
	width: 100%;
	height: 120px;
	background-color: rgba(240, 240, 240, 0.8);
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	box-sizing: border-box;
}

.home {
    margin: 0;
	padding: 0;
	background-image: url('https://www.ilovemove.it/Venice2.jpg');
	background-size: cover;
	background-position: center;
	height: 105vh;
	font-family: Garamond, serif;
}

nav {
    display: block;
  }
  
  .menu-icon {
    display: none;
  }


.logo {
	width: 80px;
	height: 80px;
	padding: 10px;
}

nav ul.menu {
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

nav ul.menu li {
	margin: 0 10px;
}

nav ul.menu li a {
	display: inline-block;
	text-decoration: none;
	color: #000;
	padding: 5px 10px;
	font-size: 20px; /* 16px (default) + 4px = 20px */
	font-weight: bold;
}

nav ul.menu li a:hover {
	background-color: #fff;
	color: #333;
}

.language-selector {
	margin-left: -30px;
}

.language-selector {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.language-selector a {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.language-selector a img {
    height: 24px;
    width: auto;
}

/* Custom select styles for language selector */
.language-selector select {
	position: relative;
	padding: 5px;
	background: transparent;
	border: none;
	outline: none;
	color: #000;
	font-size: 20px;
	font-weight: bold;
	cursor: pointer;
	font-family: Garamond, serif;
	padding-left: 20px;
}

.language-selector select::-ms-expand {
	display: none;
}

.language-selector select option {
	padding: 5px;
	background-color: #fff;
}

.feel-alive {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Lucida Calligraphy", serif;
  font-size: 48px;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
}

.button {
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  color: #000;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  font-family: Garamond, serif;
  font-weight: bold;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.button:hover {
  background-color: #fff;
  color: #333;
}

.move-with-us {
	background-color: #F3E5AB;
	padding: 20px;
}

.move-with-us h2 {
	font-size: 32px;
	text-align: center;
	margin-bottom: 40px;
}

.blog-posts {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.blog-post {
	width: 30%;
	margin-bottom: 40px;
	text-align: center;
}

.blog-post img {
	width: 100%;
	height: auto;
}

.blog-post h3 {
	font-size: 24px;
	margin-top: 15px;
	margin-bottom: 10px;
	text-align: center;
}

.blog-post p {
	font-size: 16px;
	padding-bottom: 10px;
}

.read-more {
	color: #fff; /* Cambiato da #000 a #fff */
	font-weight: bold;
	text-decoration: none;
	background-color: #000; /* Aggiunto sfondo nero */
	padding: 8px 16px; /* Aggiunto padding intorno al testo */
	border-radius: 4px; /* Aggiunto bordo arrotondato */
	display: inline-block; /* Aggiunto per mantenere il layout del pulsante */
}

.read-more:hover {
	color: #fff;
	background-color: #333; /* Cambiato da #333 a #fff */
}

.last-minute {
	background-color: #EEE7C3;
	padding: 20px;
}

.last-minute h2 {
	font-size: 32px;
	text-align: center;
	margin-bottom: 40px;
	padding-top: 10px;
}

.last-minute-offers {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 20px;
}

.offer {
	width: 30%;
	margin-bottom: 40px;
	text-align: center;
}

.offer img {
	width: 100%;
	height: auto;
}

.offer h3 {
	font-size: 24px;
	margin-top: 15px;
	margin-bottom: 10px;
}

.offer p {
	font-size: 16px;
	margin-bottom: 20px;
}

.book-now-button {
	display: inline-block;
	padding: 8px 16px;
	background-color: #000;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.3s ease-in-out;
}

.book-now-button:hover {
	background-color: #fff;
	color: #333;
}

.testimonianze {
	background-color: #F0EAD6;
	padding: 20px;
	
}

.testimonianze h2 {
	text-align: center;
	font-size: 32px;
	margin-bottom: 60px;
}

.testimonianza-img-desktop {
	display:block;
}

.testimonianza-img-mobile {
	display:none;
}

.slideshow-container {
  position: relative;
  margin: 0 auto;
  width: 80%;
  max-width: 800px;
  height: 450px;
}

.mySlides {
	display: none;
}

.mySlides:first-child {
	display: block;
}

.mySlides img  {
	width: 100%;
	height: 100%;
	object-fit: cover;
	margin-top: 20px;
}

.prev,
.next {
	position: absolute;
	top: calc(50% - 30px);
	transform: translateY(-50%);
	padding: 16px;
	color: #000;
	font-size: 20px;
	font-weight: bold;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
}

.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
	background-color: rgba(255, 255, 255, 0.8);
	color: #000;
}

.caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 10px;
	font-size: 16px;
	text-align: center;
}

.about-us {
	background-color: #F4F1E9;
	padding: 50px 0;
}

.about-us-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
}

.about-us-container h2 {
	flex-basis: 100%;
	text-align: center;
	font-size: 32px;
	margin-top: 0;
	margin-bottom: 50px;
}

.about-us-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.about-us-image {
	flex-basis: 50%;
	max-width: 500px;
	margin-right: 50px;
}

.about-us-image img {
	width: 375x;
	height: 375px;
}

.about-us-text {
	flex-basis: 50%;
	max-width: 500px;
	margin-top: 0;
}

.about-us-text p {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 20px;
}

.contacts {
  background-color: #fffff0;
  padding: 50px 0;
}

.contacts h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  padding-top: 20px;
}

.contacts-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}

.contact-info:not(:last-child) {
  margin-right: 100px;
}

.contact-icon {
  flex-basis: 60px;
  font-size: 36px;
  margin-right: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px
}

.contact-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 10px;
  font-size: 18px;
  margin-left: 5px;
}


.contact-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
  white-space: nowrap;
  margin-left: 10px;
  text-decoration: none;
  font-weight: bold;
  align-items: center;
}

.map-container {
  margin-top: 30px;
  text-align: center;
}

.map-container {
  margin-top: 30px;
  text-align: center;
}

.map-container iframe {
  width: 900px;
  height: 450px;
  border: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}


footer {
	background-color: #333333;
	color: #fff;
	padding: 20px;
	text-align: center;
	font-family: Garamond, serif;
	font-size: 17px;
	font-weight: bold;
}

footer p {
	margin: 0;
	padding: 5px 0;
}

footer a {
	color: #fff;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

.social-icons {
  float: right;
  margin-right: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  margin-top: -110px;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #444444;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

.back-to-top i {
  font-size: 24px;
  transform: rotate(-360deg);
}

@media (max-width: 992px) {
	
 header {
position: absolute;
top: 30px;
width: 100%;
height: 120px;
background-color: rgba(240, 240, 240, 0.8);
z-index: 1;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
box-sizing: border-box;
}

.menu-icon a {
  text-decoration: none;
  color: black;
  font-size: 24px;
}

.menu-toggle button {
margin-left: -10px;
color: black;
}

nav {
    display: none;
  }
  
  .menu-icon {
    display: block;
  }

  .logo {
margin: 0 auto;
align-items: center;
left: 50%;
right: 50%;
margin-right: 135px;
	
  }
 
  .language-selector {
    margin: 0;
  }

  .language-selector a {
    margin: 0;
  }

  .language-selector select {
    font-size: 16px;
    padding-left: 10px;
  }
  
  .home {
	margin: 0;
	padding: 0;
	background-image: url('https://www.ilovemove.it/home.jpg');
	background-size: cover;
	background-position: center;
	height: 95vh;
	width: 100%;
}

  .feel-alive {
   margin-top: -40px;
  left: 50%;
  font-family: "Garamond", serif;
  font-style: italic;
  font-size: 42px;
  }

  .button {
    font-size: 16px;
    padding: 8px 16px;
    bottom: 10px;
	
  }

  .blog-post {
    width: 100%;
  }

  .offer {
    width: 100%;
  }
  
  .testimonianza-img-desktop {
	display:none;
}

.testimonianza-img-mobile {
	display:block;
}

  .slideshow-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 250px;
}

.mySlides {
	display: none;
}

.mySlides:first-child {
	display: block;

}

.mySlides img {
	width: 80%;
	height: 80%;
	object-fit: cover;
	margin-left: 38px;
	margin-top: 10px;
}

.prev,
.next {
	position: absolute;
	top: calc(50% - 30px);
	transform: translateY(-50%);
	padding: 16px;
	color: #000;
	font-size: 20px;
	font-weight: bold;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
}

.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
	background-color: rgba(255, 255, 255, 0.8);
	color: #000;
}

.caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	color: #fff;
	padding: 10px;
	font-size: 16px;
	text-align: center;
}


  .about-us-image {
    right: 50%;
	left: 50%;
    max-width: 80%;
    flex-basis: 100%;
	margin-bottom: 10px;
  }

  .about-us-text {
    max-width: 80%;
    flex-basis: 100%;
	right: 50%;
	left: 50%;
	text-align: justify;
  }
  
  .contacts {
  padding: 20px;
  
}
  
  .contacts-container {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center; /* Aggiunta della proprietà per centrare i contatti */
}

.contact-info {
  flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
}

.contact-info:not(:last-child) {
  margin-right: 0;
}

.contact-icon {
  margin-right: 0;
  margin-top: 0;
}

.contact-text {
  padding-left: 0;
  margin-left: 0;
}

.contact-text h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.contacts h2 {
  font-size: 32px;
  margin-top: 30px;
}

.map-container iframe {
  display: none;
}


  footer {
	background-color: #333333;
	color: #fff;
	text-align: center;
	font-family: Garamond, serif;
	font-size: 14px;
	font-weight: bold;
	height: 180px;
}

footer p {
	margin: 0;
}

.social-icons {
  margin-top: 80px;
}

.social-icons a {
  display: inline-block;
  margin-bottom: 10px;
}

@media (max-width: 400px) {
	
 header {
position: absolute;
top: 30px;
width: 100%;
height: 100px;
background-color: rgba(240, 240, 240, 0.8);
z-index: 1;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
box-sizing: border-box;
}

.menu-icon a {
  text-decoration: none;
  color: black;
  font-size: 24px;
}

.menu-toggle button {
margin-left: -10px;
color: black;
}

  .logo {
margin: 0 auto;
align-items: center;
left: 50%;
right: 50%;
margin-right: 120x;
	
  }
  
  .home {
	margin: 0;
	padding: 0;
	background-image: url('https://www.ilovemove.it/home.jpg');
	background-size: cover;
	background-position: center;
	height: 90vh;
	width: 100%;
}

  .feel-alive {
   margin-top: -40px;
  left: 50%;
  font-family: "Garamond", serif;
  font-style: italic;
  font-size: 28px;
  }

  .button {
    font-size: 16px;
    padding: 8px 16px;
    bottom: 10px;
	
  }

  .blog-post {
    width: 100%;
  }

  .offer {
    width: 100%;
  }
  
  .slideshow-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 200px;
}

  
  .mySlides img {
	width: 75%;
	height: 75%;
	object-fit: cover;
	margin-left: 38px;
	margin-top: 20px;
}

  .about-us-image {
 display: none;
  }

  .about-us-text {
    max-width: 80%;
    flex-basis: 100%;
	right: 50%;
	left: 50%;
	text-align: justify;
  }
  
  .contacts {
  padding: 20px;
  
}
  
  .contacts-container {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center; /* Aggiunta della proprietà per centrare i contatti */
}

.contact-info {
  flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
}

.contact-info:not(:last-child) {
  margin-right: 0;
}

.contact-icon {
  margin-right: 0;
  margin-top: 0;
}

.contact-text {
  padding-left: 0;
  margin-left: 0;
}

.contact-text h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.contacts h2 {
  font-size: 32px;
  margin-top: 30px;
}

.map-container iframe {
  display: none;
}


  footer {
	background-color: #333333;
	color: #fff;
	text-align: center;
	font-family: Garamond, serif;
	font-size: 14px;
	font-weight: bold;
	height: 180px;
}

footer p {
	margin: 0;
}

.social-icons {
  max-width: 100%;
}

.social-icons a {
  display: inline-block;
  margin-right: 35px;
  width: 60px;
  height: 60px;
}
}