/* FLYING PLANE WITH CLOUDS */

#paper-planes {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-image: radial-gradient(circle at 50% 100%, #A12339 0, black 100%);
}

#paper-planes::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, transparent 0, transparent 75%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 0;
}

#paper-planes .cloud,
#paper-planes .plane {
  visibility: hidden;
}

#paper-planes .cloud {
  position: absolute;
}

#paper-planes .plane {
  position: absolute;
  left: 100px;
  height: 100px;
  width: 100px;
  transform: translateY(100px);
}

#paper-planes .plane-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 2rem;
}

.plane-button a {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  color: white;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  transition: border-color 0.1s ease, transform 0.2s ease;
  backdrop-filter: blur(4px);
  z-index: 0;
  min-width: 275px;
  text-align: center;
}

.plane-button a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: rgba(0, 0, 0, 0.6); /* hover background color */
  z-index: -1;
  transition: height 0.1s ease;
  border-radius: 8px 8px 0 0;
}

.plane-button a:hover::before {
  height: 100%;
}

.plane-button a:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.plane-button {
  gap: 1rem;
}

#paper-planes .cloud--eyeless--filled {
  fill: rgba(255, 255, 255, 0.1);
}

.cloud {
    position: absolute;
    right: -320px;
}

/* FLYING PLANE WITH CLOUDS END */