@charset "utf-8";
/* CSS Document */

/* menu principale */

/* RESET BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  background-color: #faf3e4;
  font-family: Montserrat;
  color: #77736F;
}

/* MENU */
.menu {
  background-color: #faf3e4;
}

.menu-principale {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  flex-wrap: wrap;
}

.menu-principale li {
  position: relative;
}

.menu-principale a {
  font-size: 22px;
  font-weight: 300;
  margin: 15px 50px;
  text-decoration: none;
  color: #77736F;
}

.menu-principale a:hover {
  color: #f9ca08;
}


/* SOTTOMENU */
.sottomenu {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  top: 100%;
  left: 0;
  min-width: 220px;
  list-style: none
}

.menu-principale li:hover .sottomenu {
  display: block;
}

.sottomenu li a {
  display: block;
  font-size: 15px;
  margin: 20px 20px;
  text-decoration: none
}


/*LOGO FRONT PAGE*/
.logofrontpage {
	justify-content: center;
    align-items: center;
	margin: 0px 
}

.logofrontpage img { align-content: center;
    max-width: 100%;
	display: block;
	margin: 0px }


/* MOTTO E FRASI */
.motto {
  text-align: center;
  margin: 20px 15%;
  font-size: 30px;
  line-height: 40px;
  margin-top: 150px
}

.motto-grande {
  font-size: 50px;
  font-weight: 300;
  margin-top: 20px;
}

.frase {
  text-align: center;
  margin: 100px 15%;
  font-size: 20px;
  line-height: 40px;
}

.certificati {
  text-align: center;
  margin: 100px 15%;
  font-size: 38px;
  line-height: 40px;
}


/* TITOLI */
h1, h2 {
  text-align: center;
  font-size: 38px;
  margin: 150px 0 30px;
  font-weight: 100px
}

h3, h4 {
  text-align: center;
  font-size: 30px;
  padding: 10px 0;
  font-weight: 100px;
  font-family: Montserrat
}

/* AZIENDE E REALIZZAZIONI */
.aziende,
.aziende2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 10%;
}

.aziende img,
.aziende2 img {
  padding: 15px 20px;
  max-width: 300px;
}

.realizzazioni {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 10%;
}

.realizzazioni img {
  padding: 15px 20px;
  width: 300px;
  height: 250px;
  object-fit: cover;
  transform: scale(1);
  transition: 0.3s ease-in-out;
}

/*immagine che si ingrandisce al passare*/
.realizzazioni:hover img   {
  transform: scale(1.03); /* Ingrandisce l'immagine del 20% al passaggio del mouse */
}


/*FOOTER*/

.site-footer {
  background-color: #f0d89b;
  margin-top: 150px;
  padding: 30px 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-datas {
  font-size: 14px;
  position: absolute
}

.footer-datas p,
.footer-datas a {
  margin: 8px auto;
  text-decoration: none;
  color: #333;
}

.footer-image {       
  flex: 1;
  text-align: center;
}

.footer-image img {
  max-width: 100px;
  text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {

  .menu-principale {
    flex-direction: column;
  }

  .menu-principale a {
    font-size: 18px;
    margin: 10px;
  }

  .motto, .certificati {
    font-size: 18px;
    line-height: 28px;
    margin: 30px 5%;
  }

.frase 	{
    font-size: 12px;
    line-height: 28px;
    margin: 30px 5%;
  }
	
  .motto-grande {
    font-size: 32px;
  }

  h1, h2 {
    font-size: 28px;
	font-family: Montserrat;
	font-weight: 100px
  }
	
 h3, h4 {
    font-size: 20px;
	font-family: Montserrat;
	font-weight: 100px
  }

  .aziende img,
  .aziende2 img, .realizzazioni img {
    max-width: 180px;
    padding: 10px;
  }

  .site-footer {
    text-align: center;
	flex-direction:row
  }
	
  .footer-datas {
    font-size: 10px;
	position: relative
  }

  .footer-image {
    margin-top: 10px;
	flex-direction: column;
    text-align: center
  }
}

/* fine */



 /* CONTATTI */
.contatti2 {
    align-content: center;
	display: block;
    justify-content: center;
    padding: 10px 10px;
    align-items: center;
    text-align: center }


.contatti2 p { font-size: 20px;
	font-family: Montserrat;
    color: #77736F; text-align: center;
    padding: 10px } /* spazio tra le frasi */

.contatti2 p a { text-decoration:none; color: #77736F }
.contatti2 p a:hover { color:#f9ca08 }

/* CONTATTI: scrivi un messaggio */

form h2 { font-size: 30px;
  font-family: Montserrat;
  margin-bottom: 50px }

form {
  font-size: 17px;
  font-family: Montserrat;
  color: #77736F;
  max-width: 400px;
  min-width: 300px;
  margin: 200px auto;
  padding-bottom: 2em;
  background-color: #f2f2f2; padding: 30px 30px
}

fieldset {
  border: none;
  padding: 2rem 0;
}

label {
  display: block;
  margin: 0.5rem 0;
}

input,
textarea {
  margin: 10px 0 0 0;
  width: 100%;
  min-height: 2em;
}
.inline {
  width: unset;
  margin: 0 0.5em 0 0;
  vertical-align: middle;
}

input[type="Submit"] {
  display: block;
  width: 60%;
  margin: 1em auto;
  height: 2em;
  font-size: 1.1rem;
  background-color: #77736F;
  border-color: white;
  min-width: 300px;
  color: white
}

input[type="file"] {
  padding: 1px 2px;
}




