/* Custom Styles untuk Palangi Servis */

/* Background dan Smooth Scroll */
html {
    scroll-behavior: smooth;
    background-color: #581c87;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #450a0a; /* Tailwind red-950 */
    color: #ffffff;
    overflow-x: hidden;
}

/* Transisi halus untuk card spesialisasi & varian */
.varian-card {
    transition: all 0.3s ease-in-out;
}

.varian-card:hover {
    transform: translateY(-5px);
    border-color: #fb7185; /* Tailwind rose-400 */
    box-shadow: 0 15px 30px -10px rgba(225, 29, 72, 0.3);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #450a0a;
}

::-webkit-scrollbar-thumb {
    background: #7f1d1d;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #991b1b;
}