/* Custom Styles for Loop 340 Garage */

:root {
    --emerald-dark: #064e3b;
    --emerald-light: #059669;
    --gold: #d97706;
    --cream: #f5f5f4;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--cream);
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--emerald-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

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

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

/* Hover effects for service cards */
.group:hover svg {
    transform: scale(1.1);
}

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