/* Custom Styles for Gunter & Associates */

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

/* Animation Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-out;
}

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

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

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

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

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

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

/* Selection Color */
::selection {
    background: #FF6B4A;
    color: white;
}

/* Nav Scroll Effect */
.nav-scrolled {
    box-shadow: 0 4px 20px rgba(44, 44, 44, 0.1);
}

/* Image Hover Zoom */
img {
    transition: transform 0.3s ease;
}

/* Button Focus States */
button:focus-visible,
a:focus-visible {
    outline: 3px solid #FF6B4A;
    outline-offset: 2px;
}

/* Form Focus States */
input:focus,
textarea:focus,
select:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 74, 0.2);
}

/* Mobile Menu Transition */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#mobile-menu.open {
    max-height: 400px;
}

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