.hero {
  height: 100vh;
  padding-top: 80px;
  background: linear-gradient(
      45deg,
      rgba(11, 26, 57, 0.8) 0%,
      rgba(11, 26, 57, 0.4) 50%,
      rgba(255, 255, 255, 0.1) 100%
    ),
    url("../images/dehors.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero-logo {
  margin-bottom: 2rem;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.hero-logo img {
  height: 160px;
  width: auto;
  filter: brightness(0) saturate(100%) invert(100%);
  transition: filter 0.3s ease;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 26, 57, 0.545);
}
