/* Custom Styles & Utilities for Santoso Teknik */

/* Smooth scrolling override */
html.scroll-smooth {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Offset for sticky header */
}

/* Base custom font */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Patterns */
.bg-dotted-pattern {
    background-image: radial-gradient(#f97316 2px, transparent 2px);
    background-size: 20px 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Lightbox customizations */
.glightbox-clean .gslide-title {
    color: #fff !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
}

.glightbox-clean .gslide-desc {
    color: #e2e8f0 !important;
    font-family: 'Inter', sans-serif !important;
}

/* Focus styles for accessibility */
a:focus, button:focus, input:focus, textarea:focus {
    outline: 2px solid #eab308;
    outline-offset: 2px;
}
