/* Custom Styles for Carlos & Sons Body Shop */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #1c1917;
}
::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* Typography Utilities */
.font-serif {
    font-family: 'Playfair Display', serif;
}
.font-sans {
    font-family: 'Inter', sans-serif;
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Navbar Transition */
.nav-scrolled {
    background-color: rgba(28, 25, 23, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Image Hover Zoom */
.img-zoom-container {
    overflow: hidden;
}
.img-zoom {
    transition: transform 0.5s ease;
}
.img-zoom-container:hover .img-zoom {
    transform: scale(1.05);
}
