.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .parallax {
    background-attachment: scroll;
  }
}

.gradient-overlay {
  background: linear-gradient(
    to left,
    rgba(26, 77, 46, 0.9) 0%,
    rgba(26, 77, 46, 0.7) 100%
  );
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.unit-card:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.text-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2.5rem;
  border-radius: 0.75rem;
  width: 100%;
  max-width: 600px;
}

.logo-header {
  background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 768px) {
  .text-overlay {
    padding: 1.75rem;
  }
}

.notification {
  position: fixed;
  top: 20px;
  right: 50%;
  transform: translateX(50%);
  background-color: rgba(26, 77, 46, 0.9);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  animation: fadeInOut 4s ease-in-out forwards;
  display: none;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateX(50%) translateY(-20px);
  }
  20% {
    opacity: 1;
    transform: translateX(50%) translateY(0);
  }
  80% {
    opacity: 1;
    transform: translateX(50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(50%) translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  25% {
    opacity: 0; /* Fades in during first 1s (25% of 4s) */
  }
  50%,
  75% {
    opacity: 1; /* Holds full opacity from 2s to 3s (1s duration) */
  }
  100% {
    opacity: 0; /* Fades out last 1s */
  }
}

.new-pulse {
  animation: pulse 3s ease-in-out infinite !important;
}

/* Forms */
