
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 1.5rem;

  width: 100%;
  background-image: url("../assets/images/background3.png");
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.9)
  );
  z-index: 1;
}


.hero-content {
  position: relative;
  z-index: 2;

  max-width: 1400px;
  margin: 0;

  padding-left: 6rem;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}



.hero h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.05;
  text-transform: uppercase;

  text-align: left;
  margin: 0;
  text-shadow: 0 10px 40px rgba(0,0,0,0.8);
}


.hero p {
  margin-top: 2rem;
  max-width: 520px;
  color: var(--muted);
  font-size: 1.05rem;

  text-align: left;
}



.projects {
  max-width: 1400px;
  margin: auto;
  padding: 6rem 1.5rem;
  display: grid;
  gap: 5rem;
}

@media (min-width: 900px) {
  .projects {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer {
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--muted);
}
