/* ===============================
   GLOBAL PUBLIC STYLE
================================= */

body {
    font-family: "Poppins", sans-serif;
    background: #f8f9fc;
    color: #212529;
    margin: 0;
    padding: 0;
}

/* Section */
section {
    padding: 70px 0;
}

/* Title */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #3d105f;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 40px;
}

/* Card */
.card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.08);
}

/* Button Umum */
.btn-primary {
    background: #5e1992;
    border: none;
    border-radius: 10px;
    padding: 10px 22px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #3d105f;
}

/* Footer */
footer {
    background: #3d105f;
    color: white;
    padding: 30px 0;
}

footer a {
    color: #e8d6f4;
    text-decoration: none;
}

footer a:hover {
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    section {
        padding: 50px 0;
    }
}
/* FIX HORIZONTAL SCROLL BUG */
html,
body {
    overflow-x: hidden;
}

#heroSlider {
    overflow: hidden;
}

.carousel-item {
    overflow: hidden;
}
