/* Contatti Page Styles */

/* Info Section */
.info-section {
  background-color: #d5e5e5;
  padding: 0;
  margin-top: var(--header-height);
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: stretch;
}

.info-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  gap: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.info-content h2 {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.info-content p {
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.8;
}

.info-image {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - var(--header-height));
  object-fit: cover;
}

/* Contact Form Section */
.contact-form-section {
  background-color: #c4a5a5;
  padding: 6rem 5%;
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-container h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.contact-form-container p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}
