/*
 * style-home.css
 * File ini berisi custom styles untuk halaman public.
 *
 * Pastikan file ini di-load di base_layout.php:
 * <link href="assets/theme/public/css/style-home.css" rel="stylesheet" type="text/css"/>
 */
/* =============================================
   BUTTON: Link Pembayaran
   Digunakan di courses.php & detail.php
   class="btn btn-link-bayar"
   ============================================= */

.btn.btn-link-bayar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(45deg, #3ebeca 0%, #2d9fb0 100%) !important;
  border: 1px solid #3ebeca !important;
  border-radius: 8px !important;
  color: #FFFFFF !important;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease-in-out, filter 0.2s ease-in-out;
}

.btn.btn-link-bayar:hover {
  background: linear-gradient(135deg, #4464e6 0%, #2d9fb0 100%) !important;
  border-color: #2d9fb0 !important;
  color: #ffffff !important;
  filter: brightness(1.05);
}