/* Custom styles for Frontier Floor Sanding & Refinishing */

:root {
    --navy: #1e3a5f;
    --gold: #d4a853;
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --slate-600: #475569;
    --slate-800: #1e293b;
}

body {
    font-family: 'DM Sans', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.font-dm-sans {
    font-family: 'DM Sans', sans-serif;
}

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

/* Custom color classes */
.text-navy {
    color: var(--navy);
}

.bg-navy {
    background-color: var(--navy);
}

.text-gold {
    color: var(--gold);
}

.bg-gold {
    background-color: var(--gold);
}

/* Hover effects */
.hover\\:bg-navy\\/90:hover {
    background-color: rgba(30, 58, 95, 0.9);
}

.hover\\:text-gold:hover {
    color: var(--gold);
}

/* Focus styles */
.focus\\:border-gold:focus {
    border-color: var(--gold);
}

.focus\\:ring-gold\\/20:focus {
    ring-color: rgba(212, 168, 83, 0.2);
}

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

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

/* Intersection Observer animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

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

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

::-webkit-scrollbar-track {
    background: var(--stone-100);
}

::-webkit-scrollbar-thumb {
    background: var(--navy);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}
