/* Custom CSS for Keyes Ac Heat & Refrigeration */

/* Custom Properties */
:root {
    --navy-900: #0a1628;
    --navy-800: #1a2744;
    --gold: #c9a84c;
    --gold-light: #d4b76a;
    --gold-dark: #b8943f;
}

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

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Color Classes */
.bg-navy-900 {
    background-color: var(--navy-900);
}

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

.text-navy-900 {
    color: var(--navy-900);
}

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

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

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

/* Hover Effects */
.hover\\:bg-gold:hover {
    background-color: var(--gold);
}

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

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

::-webkit-scrollbar-track {
    background: var(--navy-900);
}

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

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .font-playfair {
        font-size: 1.5rem;
    }
    
    .bg-navy-900 {
        background-color: var(--navy-900);
    }
}

/* Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    nav,
    #contact-form,
    button {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
