@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,300&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

.bg-custom-red {
    background-color: #FF0000;
    color: #000000;
}

.text-custom-red {
    color: #FF0000;
}

.btn-custom-red {
    background-color: #FF0000;
    color: #ffffff;
    padding: 15px 25px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    outline: none;
    border: none;
    border-radius: 30px;
}

.btn-custom-red:hover {
    background-color: #D70000;
    color: #E0E0E0;
}

#scrollTopBtn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background-color: #FF0000; /* merah */
    color: white;
    cursor: pointer;
    padding: 12px 20px;
    border-radius: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: opacity 0.1s ease;
}

#scrollTopBtn:hover {
    background-color: #D70000; 
}

.animate-float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
