.hero {
  background-color: #e0dbd5;
  padding: 4rem 2rem;
}
.hero .hero-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
}
.hero .hero-text {
  flex: 1 1 50%;
}
.hero .hero-text h1 {
  font-size: 2rem;
  color: #141312;
  margin-bottom: 1rem;
}
.hero .hero-text p {
  font-size: 1.1rem;
  color: #3d3a37;
  margin-bottom: 2rem;
}
.hero .hero-text .cta-group {
  display: flex;
  gap: 1rem;
}
.hero .hero-image {
  flex: 1 1 40%;
  text-align: center;
}
.hero .hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero .hero-content .hero-text .cta-group {
    flex-direction: column;
    align-items: center;
  }
  .hero .hero-content .hero-image {
    margin-top: 2rem;
  }
}
.btn {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.btn.cta-1 {
  background-color: #7a756f;
  color: white;
}
.btn.cta-1:hover {
  background-color: #66615c;
}
.btn.cta-2 {
  background-color: #dbd5ce;
  color: #282725;
  border: 1px solid #514e4a;
}
.btn.cta-2:hover {
  background-color: #d6cfc7;
}

.hero-2 {
  background-color: #dbd5ce;
  padding: 4rem 2rem;
  text-align: center;
}
.hero-2 .hero-illustration {
  max-width: 400px;
  margin: 0 auto 2rem;
}
.hero-2 h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #282725;
  margin-bottom: 2rem;
}

.hero-3 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  opacity: 0;
}
.hero-3 .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero-3 .overlay {
  position: absolute;
  inset: 0;
  background: rgba(231, 223, 213, 0.6);
  z-index: 1;
}
.hero-3 .hero-3-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
}
.hero-3 h1 {
  font-size: 5.5rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
}
.hero-3 .cta-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-3 .cta-buttons a {
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s;
}
@media (max-width: 600px) {
  .hero-3 {
    padding: 1.5rem;
  }
  .hero-3 .hero-3-content {
    gap: 1.5rem;
  }
  .hero-3 h1 {
    font-size: 3.5rem;
  }
  .hero-3 .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 400px) {
  .hero-3 h1 {
    font-size: 2.5rem;
  }
}

.hero-4 {
  position: relative;
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.hero-4 .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero-4 .overlay {
  position: absolute;
  inset: 0;
  background: rgba(231, 223, 213, 0.6);
  z-index: 1;
}
.hero-4 .hero-4-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: #141312;
}
.hero-4 .hero-4-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .hero-4 .hero-4-content h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 500px) {
  .hero-4 .hero-4-content h1 {
    font-size: 2rem;
  }
}/*# sourceMappingURL=hero.css.map */