/* Materiali 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: 3rem;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.2;
  color: #333;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

/* Services Section */
.services-section {
  background-color: #c4a5a5;
  padding: 6rem 5%;
}

.services-container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-container h2 {
  font-size: 3.5rem;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.service-item {
  text-align: center;
}

.service-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.service-item p {
  font-size: 1.1rem;
  line-height: 1.8;
}
