/* Custom Styles & Animations */
:root {
    --terra-500: #D46A4F;
    --sand-50: #FDF8F5;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1c1917;
}

h1, h2, h3, .font-display {
    font-family: 'Syne', sans-serif;
}

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

/* Service Card Hover */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Navbar Scroll Effect */
.nav-scrolled {
    background-color: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #C0563E;
}
