/* Custom Styles for Hybrid Car Services */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1A1A1A;
}
::-webkit-scrollbar-thumb {
    background: #FF6B6B;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ff8e8e;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Service Card Hover Effects */
.group:hover .absolute {
    transform: scale(1.1);
}

/* Typography Adjustments */
.font-serif {
    line-height: 1.1;
}

/* Navbar Scroll State */
nav.scrolled {
    background-color: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Utility for text blend mode */
.mix-blend-difference {
    mix-blend-mode: difference;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .font-serif {
        font-size: 2.5rem;
    }
    
    header h1 {
        font-size: 2.5rem;
    }
}
