@font-face {
  font-family: 'UniversLTStd';
  src: url('/fonts/UniversLTStd.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

.hero {
  background-image: url('/images/hero2-scaled-1-1-1-1-1-1-1.jpeg');
  background-size: cover;
  background-position: center;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #050c21;
  color: #ffffff;
  text-align: center;
  font-family: 'UniversLTStd', 'Open Sans', Helvetica, Arial, sans-serif;
  padding: 60px 20px;
}

.hero-content h1 {
  font-weight: 300;
  font-size: 4em;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
  color: #ededed;
}

.btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 5px;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #6632ff;
  border: 2px solid #6632ff;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #4b23cc;
}

.btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/hero2-scaled-1-1-1-1-1-1-1.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: -1;
}
