/* Custom Styles for Automotive Remedies */

/* Smooth Scroll Offset for Fixed Header */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #2dd4bf;
}

/* Typography Adjustments */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
}

/* Subtle Glow Effects */
.text-glow {
    text-shadow: 0 0 20px rgba(45, 212, 191, 0.3);
}

/* Fade In Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Loader for images */
img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

img.loaded {
    opacity: 1;
}
