﻿.landing-container {
 max-width: 900px;
 margin: 0 auto;
 padding: 30px 20px;
 font-family: Arial, Helvetica, sans-serif;
 color: #333;
 background-color: #fff;
 border-radius: 12px;
 box-shadow: 0px 6px 20px rgba(0,0,0,0.1);
}

 .landing-container h1 {
  color: #E60000;
  font-size: 34px;
  text-align: center;
  margin-bottom: 20px;
 }

 .landing-container h2 {
  color: #E60000;
  font-size: 24px;
  margin-top: 25px;
  margin-bottom: 15px;
  text-align: center;
 }

 .landing-container p, .landing-container ul {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
 }

 .landing-container ul {
  padding-left: 25px;
 }

.landing-form {
 background-color: #f9f9f9;
 padding: 25px;
 border-radius: 10px;
 border: 1px solid #ddd;
 box-shadow: 0px 3px 10px rgba(0,0,0,0.05);
}

 .landing-form input, .landing-form input[type="file"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
 }

 .landing-form button {
  background-color: #E60000;
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-size: 18px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  font-weight: bold;
 }

  .landing-form button:hover {
   background-color: #b80000;
  }

#lblMessage {
 font-size: 16px;
 margin-bottom: 15px;
 display: block;
 text-align: center;
}

.landing-negozio {
 text-align: center;
 font-size: 16px;
 margin-top: 25px;
 color: #333;
 font-weight: bold;
}

/* Responsive */
@media (max-width: 600px) {
 .landing-container {
  padding: 20px 10px;
 }

  .landing-container h1 {
   font-size: 28px;
  }

  .landing-container h2 {
   font-size: 20px;
  }
}



.btn-whatsapp, .btn-call {
 display: inline-block;
 padding: 12px 18px;
 font-size: 16px;
 border-radius: 6px;
 text-decoration: none;
 color: #fff;
 font-weight: bold;
 transition: 0.3s;
}

.btn-whatsapp {
 background-color: #25D366; /* verde WhatsApp */
}

 .btn-whatsapp:hover {
  background-color: #1da851;
 }

.btn-call {
 background-color: #E60000; /* rosso E.ON */
}

 .btn-call:hover {
  background-color: #b80000;
 }