/* Root Variables */
:root {
  --primary-color: #2b394a;
  --secondary-color: #c5d0dd;
  --accent-color: #fda5a4;
  --text-color: #333;
  --green-1: #14692d;
  --red-1: #8c0000;
  --white-translucent: rgba(255, 255, 255, 0.9);
}

/* General Styles */
body {
  * {
    box-sizing: border-box;
  }
  font-family: "Cormorant Garamond", serif;
  margin: 0;
  padding: 0;
  background-color: var(--secondary-color);
  color: var(--text-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background-color: var(--primary-color);
  padding: 15px 0;
  text-align: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.sottotitle {
  display: block;
  font-size: 18px;
  color: var(--secondary-color);
}

/* Hero Section */
.hero3 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: var(--primary-color);
  flex-wrap: wrap;
}

.hero3 .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.form-container,
.image-container {
  width: 100%;
  max-width: 500px;
}

.form-container {
  background: var(--white-translucent);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

h2 {
  text-align: center;
  color: var(--primary-color);
}

/* Form Styling */
.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

input,
textarea,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--secondary-color);
  border-radius: 6px;
  font-size: 16px;
}

button {
  width: 100%;
  background: var(--green-1);
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: var(--accent-color);
}

#formMessage {
  margin-top: 15px;
  text-align: center;
  font-size: 16px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px 0;
  background-color: var(--primary-color);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero3 {
    height: auto;
    padding: 50px 0;
  }

  .hero3 .container {
    flex-direction: column;
  }

  .form-container,
  .image-container {
    width: 90%;
    max-width: 100%;
  }

  .image-container img {
    max-height: 400px;
  }
}
.svgstl {
  color: var(--red-1);
}

.center {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--red-1);
  color: white;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  margin-top: 20px;
  cursor: pointer;
  margin-bottom: 20px;
}

.flatpickr-input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--secondary-color);
  border-radius: 6px;
  font-size: 16px;
  font-family: "Cormorant Garamond", serif;
  cursor: pointer;
  background-color: white;
}

.flatpickr-calendar {
  font-family: "Cormorant Garamond", serif;
}

.honeypot-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
