/* Global font tweaks */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

/* Custom brand color override example */
.btn-primary {
  background-color: #FF5A5F;
  border-color: #FF5A5F;
}
.btn-primary:hover{
    background-color: #ff3a3F;
    border-color: #FF3A3F;
}
.navbar-brand {
  letter-spacing: -0.03em;
}
.card{
    border-color: #FF5A5F;
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
  filter: invert(1);
}