/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

 body.pages-home {
  margin: 0;
 }

body.pages-home .modal-backdrop {
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.9;
  background-color: #000;
}

body.pages-home .modal-backdrop.show {
  opacity: 0.9;
}

/* Floating "Order Now" Button - Bottom Right */
.pulse-link {
  position: fixed;
  top: 20px;
  right: 5%;
  background-color: rgb(255, 99, 71); /* Tomato Red (change to rgb(255, 140, 0) for Orange) */
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 28px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 99, 71, 0.8); /* Red glow */
  animation: pulse-animation 2s infinite, glow-effect 1.5s infinite alternate;
  transition: background-color 0.3s ease;
}

.pulse-link:hover {
  background-color: rgb(255, 69, 0); /* Darker shade of red for hover */
}

/* Pulse animation */
@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Glow effect (text and box shadow) */
@keyframes glow-effect {
  0% {
    box-shadow: 0 0 15px rgba(255, 99, 71, 0.8), 0 0 25px rgba(255, 99, 71, 0.8);
    text-shadow: 0 0 10px rgba(255, 99, 71, 0.8), 0 0 20px rgba(255, 99, 71, 0.8);
  }
  100% {
    box-shadow: 0 0 25px rgba(255, 99, 71, 1), 0 0 35px rgba(255, 99, 71, 1);
    text-shadow: 0 0 20px rgba(255, 99, 71, 1), 0 0 30px rgba(255, 99, 71, 1);
  }
}
