.hero {
  width: 100%;
  height: 1200px;
  background-image: url('../../img/hero.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.hero-logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.08;
  max-width: 900px;
  letter-spacing: -0.8px;
}

.hero p {
  font-size: 22px;
  max-width: 700px;
  margin-top: 28px;
  letter-spacing: -0.2px;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-btn {
  background: linear-gradient(180deg, rgb(51,52,53) 0%, rgb(41,42,43) 100%);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 16px;
  transition: 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.hero-btn:hover {
  background: linear-gradient(180deg, rgb(61,62,63) 0%, rgb(51,52,53) 100%);
}

html {
    scroll-behavior: smooth;
}
