* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}
header {
  background: #4a7c59;
  color: white;
  padding: 1.5rem 1rem;
  text-align: center;
}
header h1 {
  font-size: 1.8rem;
}
main {
  padding: 1.5rem;
}
section {
  margin-bottom: 2rem;
}
h2 {
  color: #4a7c59;
  margin-bottom: 1rem;
}
ul {
  padding-left: 1.5rem;
  margin: 1rem 0;
}
p, li {
  margin: 0.5rem 0;
}
.gallery-placeholder {
  background: #e9ecef;
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 2rem;
  color: #666;
}

/* Galleria lightbox */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Pulsanti */
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 2rem 0;
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  color: white;
  font-weight: bold;
  border-radius: 6px;
  text-align: center;
  min-width: 200px;
}
.phone, .whatsapp { background: #25d366; }
.booking { background: #003580; }
.maps { background: #4285f4; }
.btn:hover {
  opacity: 0.9;
  text-decoration: underline;
}

/* Recensioni */
.review-platform, .guest-quotes {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}
blockquote {
  font-style: italic;
  margin: 1rem 0;
  padding-left: 1rem;
  border-left: 4px solid #4a7c59;
  color: #555;
}

/* Form di contatto */
.contact-form {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}
.contact-form label {
  display: block;
  margin-top: 0.8rem;
  font-weight: bold;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Social link */
.social {
  color: #4a7c59;
  font-weight: bold;
  text-decoration: none;
}
.social:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
footer a {
  color: #bbd;
  margin: 0 10px;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Torna su */
#back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4a7c59;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 99;
}
#back-to-top:hover {
  background: #3b6547;
}

/* Mobile */
@media (max-width: 600px) {
  .btn {
    min-width: auto;
    width: 100%;
  }
}