* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  scroll-behavior: smooth;
}
body {
  padding-top: 40px;
}
.row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.title {
  font-size: 55px;
  color: #ddc8a3;
}

.intro {
  display: flex;
  padding-left: 250px;
  width: 100%;
  max-width: 950px;
  flex-direction: column;
  gap: 20px;
  color: #ffffff;
  box-sizing: border-box;
}

.intro-title {
  font-size: 42px;
  font-weight: 500;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.introText {
  width: 600px;
  max-width: 90%;
}

.intro-desc {
  font-size: 16px;
  margin: 0;
  line-height: 1.5;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.intro-buttons {
  display: flex;
  gap: 15px;
}

.background {
  margin-top: 50px;
  background-image:
    linear-gradient(rgba(97, 96, 96, 0.5), rgba(50, 49, 49, 0.5)),
    url("bar.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100vw;
  max-width: 100%;
  display: flex;
  align-items: center;
}
img {
  border-radius: 15px;
}

.start {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

nav {
  display: flex;
  align-items: center;
  gap: 65px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  padding: 15px 0;
}

nav a {
  font-size: 13px;
  color: black;
  text-decoration: none;
}

@media (max-width: 768px) {
  nav {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  nav a::before {
    content: "•";
    margin-right: 8px;
    color: #c2964b;
  }
}

#select {
  background-color: #ddc8a3;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 3px;
}

#button1 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: rgb(70, 68, 68);
  padding: 10px;
  border: none;
  background-color: #f5e0bc;
  cursor: pointer;
}

#button1:hover {
  background-color: #ecc98d;
}

#button2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: #f5e0bc;
  padding: 10px;
  border: 1px solid #f5e0bc;
  background-color: transparent;
  cursor: pointer;

  background-image: linear-gradient(to left, transparent 50%, #ecc98d 50%);
  background-size: 200% 100%;
  background-position: right bottom;

  transition:
    background-position 0.4s ease-out,
    color 0.3s ease-out;
}

#button2:hover {
  background-position: left bottom;
  color: #ffffff;
  transform: scale(1.02);
  border: none;
}

#button3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: white;
  padding: 10px;
  background-color: #68583a;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#button3:hover {
  background-color: #56472c;
  transform: scale(1.02);
}

.button4 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: black;
  padding: 8px;
  background-color: #c2964b;
  border: none;
  width: 55%;
  cursor: pointer;
}
.titleSez {
  display: flex;
  margin-top: 40px;
  color: #ddc8a3;
  font-size: 38px;
}

#button1,
#button2,
#button3 {
  width: 220px;
}

.end {
  background-color: #2f2f2f;
  color: white;
  display: flex;
  flex-direction: column; /* Dispone la riga info e la riga crediti una sotto l'altra */
  padding: 40px 60px;
  box-sizing: border-box;
  border-top: 2px solid #c2964b;
  gap: 40px;
}

/* Riga Superiore: Mappa e Info affiancate */
.footer-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid #444444; /* Linea sottile di separazione interna */
}

.footer-map {
  flex: 1;
  max-width: 550px; /* Riprende la larghezza massima originale che avevi impostato */
  width: 100%;
}

.footer-right-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* Riga Inferiore: Il tuo stile originale */
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-left,
.footer-center,
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-center {
  align-items: center;
}

.footer-right {
  text-align: right;
}

.footer-logo {
  width: 70px;
  height: auto;
  border-radius: 0; /* Evita il border-radius generico di 15px sui loghi */
}

.footer-title {
  font-size: 35px;
  color: #ddc8a3;
}

.product .descProduct {
  color: dimgrey;
}

.chisiamo .descProduct {
  color: dimgrey;
}

.come .descProduct {
  color: dimgrey;
}

.end .descProduct {
  color: #ffffff;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  font-size: 14px;
}

.footer-links a,
.footer-links button {
  color: #d4b47c;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #ffffff;
}

.separator {
  color: rgba(255, 255, 255, 0.4);
}

.recensioni {
  background: #fafafa;
  padding: 90px 40px;
  text-align: center;
}

.reviews-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 50px 0;
}

.review {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 15px;
  padding: 30px;
  width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.25s;
}

.review:hover {
  transform: translateY(-6px);
}

.stars {
  color: #d4a017;
  font-size: 22px;
  margin-bottom: 15px;
}

.review p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.author {
  font-weight: bold;
  color: #333;
}

#googleReviews {
  padding: 15px 35px;
  border: none;
  border-radius: 40px;
  background: #b8860b;
  color: white;
  font-size: 16px;
}

#googleReviews:hover {
  background: #9d7208;
}
@media (max-width: 768px) {
  body {
    padding-top: 20px;
    overflow-x: hidden;
  }

  .end {
    padding: 30px 20px;
    gap: 30px;
  }

  .footer-links {
    justify-content: center;
    gap: 7px;
    font-size: 13px;
  }

  /* Incolonna la mappa e le info */
  .footer-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
    padding-bottom: 25px;
  }

  /* Incolonna i crediti */
  .footer-bottom-row {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-left,
  .footer-center,
  .footer-right,
  .footer-right-info {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .footer-right-info .social-container {
    justify-content: center !important;
  }

  .title {
    font-size: 34px;
    text-align: center;
  }

  .row {
    flex-direction: column;
    gap: 10px;
  }

  .start {
    padding: 15px;
  }

  nav {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }

  nav a {
    font-size: 16px;
  }

  .background {
    width: 100%;
    min-height: 100svh;
    height: auto;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .intro {
    width: 100%;
    min-width: 0;
    padding: 70px 20px;
    box-sizing: border-box;

    align-items: center;
    text-align: center;
  }

  .intro-title {
    width: 100%;
    max-width: 100%;
    font-size: 32px;
    line-height: 1.2;
    overflow-wrap: break-word;
  }

  .introText {
    width: 100%;
    max-width: 500px;
  }

  .intro-desc {
    width: 100%;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
  }

  .intro-buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .titleSez {
    justify-content: center;
    text-align: center;
    font-size: 30px;
  }

  #button1,
  #button2,
  #button3 {
    width: 220px;
    max-width: 90%;
  }

  .button4 {
    width: 100%;
  }
}
