* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: url("hero.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.55));
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: fadeUp 1.2s ease-out both;
}

.logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 7rem;
}

.logo {
  height: 52px;
  width: auto;
}

.logo-dilus {
  margin-top: 30px;
}

.logo-vitfit {
  height: 80px;
  transform: translateX(-14px);
}

.divider {
  width: 0px;
  height: 44px;
  background: rgba(255, 255, 255, 0.5);
}

h1 {
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tagline {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.2pt;
  color: #fff;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .logo {
    height: 40px;
  }
  .logo-vitfit {
    height: 60px;
  }
  .divider {
    display: none;
  }
  .logos {
    gap: 1.5rem;
  }
}
