/* Chi Siamo Page Styles */

/* Hero Section */
.hero {
  margin-top: var(--header-height);
  background-color: #d5e5e5;
  padding: 0;
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: stretch;
}

.hero-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  gap: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - var(--header-height));
  object-fit: cover;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #333;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #333;
}

/* Values Section */
.values-section {
  background-color: #c4a5a5;
  padding: 0;
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: stretch;
}

.values-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  gap: 0;
}

.values-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem;
  text-align: center;
  position: relative;
  z-index: 10;
}

.values-content h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #666;
}

.values-content h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.values-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  max-width: 600px;
}

.values-image {
  width: 100%;
  height: 100%;
  max-height: calc(100vh - var(--header-height));
  object-fit: cover;
}
