/* Warna Tema */
:root {
    --primary-color: #198754; /* Bootstrap Success Green */
    --secondary-color: #343a40; /* Bootstrap Dark */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Card Styling */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Hero Section */
.hero-section {
   /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1588292549494-8420e8a4a7c6?q=80&w=2070&auto=format&fit=crop');*/
   background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/con2.jpg');
   background-size: cover;
   background-position: center;
   color: white;
   padding: 100px 0;
   text-align: center;
}

.hero-section h1 {
    font-weight: 700;
}

/* Price Tag */
.harga {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Badge Status */
.badge {
    font-size: 0.9em;
}

.shadow-card{
 box-shadow: 5px 5px 10px 2px rgba(0, 0, 0, 0.3);
}

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: transform 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white; /* Pastikan ikon tetap putih saat hover */
}

/* Animasi pulse untuk menarik perhatian */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}
