*,
*::after,
*::before {
  box-sizing: border-box;
}
* {
  scroll-behavior: smooth;
}
.droneeau {
  border-radius: 50px;
  width: 200px;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  max-width: 1024px;
  margin: 60px auto 0 auto;
  padding: 20px;
  color: white;
  background: linear-gradient(180deg, #051114, #04556b);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: rgba(10, 10, 10, 0.4);
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 131, 238, 0.4);
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
}

.titre {
  text-align: center;
  margin: 60px 0;
}

.bloc {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px 0;
}

.video {
  border-radius: 50px;
}
.bloc.reverse {
  flex-direction: row-reverse;
}

.texte {
  max-width: 500px;
}

.bloc img {
  width: 300px;
  border-radius: 20px;
  cursor: pointer;
  transition: transform 0.3s;
}

.bloc img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgb(255, 178, 13);
}

.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 20px;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  cursor: pointer;
}

form {
  width: 50%;
  padding: 60px;
  margin: 80px auto;
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 40px;
}

form h1 {
  text-align: center;
  margin-bottom: 40px;
}

.field {
  margin-bottom: 30px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

input,
textarea {
  width: 100%;
  padding: 18px;
  border-radius: 15px;
  border: none;
  font-size: 1rem;
}

textarea {
  min-height: 140px;
}

button {
  width: 100%;
  padding: 18px;
  border-radius: 30px;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  box-shadow: 0 0 20px rgba(94, 255, 0, 0.4);
}

.titre em span {
  display: inline-block;
  font-size: 3rem;
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
  position: relative;
}

.titre em span.hovered {
  transform: rotate(var(--rotate)) scale(var(--scale)) translateX(var(--x))
    translateY(var(--y));
  color: var(--color);
  text-shadow: 0 0 10px var(--color), 0 0 20px var(--color);
}

.mentions {
  width: 70%;
  padding: 60px;
  margin: 80px auto;
  margin-top: 80px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 40px;
}
