/* Global Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  text-align: center;
  margin: 0;
  padding: 20px;
}

/* Home Page Styles */
.home-title {
  font-size: 48px;
  color: red;
  font-weight: bold;
  margin-bottom: 20px;
}

.versetto {
  font-size: 24px;
  color: #333;
  margin: 20px 0;
  line-height: 1.5;
}

.regolamento-link {
  font-size: 18px;
  color: blue;
  text-decoration: underline;
}

.baule-link {
  margin-top: 30px;
}

.baule-link img {
  max-width: 100%;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.baule-link img:hover {
  transform: scale(1.1);
}

.augurio {
  font-size: 20px;
  color: #8B0000;
  margin-top: 30px;
}

/* Regolamento in iscrizione.php */
.regolamento {
  text-align: left;
  max-width: 600px;
  margin: 20px auto;
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Winners (Partecipanti) Styles */
.winners {
  margin-top: 30px;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.winners ul {
  list-style-type: none;
  padding: 0;
}

.winners li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.winners li:last-child {
  border-bottom: none;
}

/* Primo partecipante in stile fiorentino del 1500 */
.primo-partecipante {
  font-family: 'IM Fell English', serif;
  font-size: 36px;
  color: red;
  font-weight: bold;
}

/* Altri partecipanti */
.altri-partecipanti {
  font-size: 18px;
  color: black;
}

/* Form Styles */
form {
  margin: 20px auto;
  padding: 15px;
  background-color: #fff;
  width: 300px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

input[type="text"],
input[type="email"] {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 3px;
}

input[type="submit"] {
  background-color: #8B0000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #A52A2A;
}

.message {
  font-weight: bold;
  margin-top: 10px;
}

.error {
  color: red;
}

.success {
  color: green;
}

/* Brevo form (iscrizione) */
.brevo-form {
  margin-top: 40px;
}
