/* Custom CSS for Lawson Tree Service */

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #fdfcf8; /* sand-100 */
}

/* Typography Utilities */
.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

.font-sans {
    font-family: 'Montserrat', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Scroll Reveal Class */
.reveal {
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #8a4f3e;
}

/* Image Aspect Ratios */
img {
    max-width: 100%;
    height: auto;
}
