/* 
    Christian Walker - Classic & Elegant Theme
    Colors: Deep Navy (#0A1F35), Warm Gold (#D4AF37), Cream (#F9F7F2)
*/

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F9F7F2;
    color: #0A1F35;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A1F35;
}
::-webkit-scrollbar-thumb {
    background: #D4AF37;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #B8860B;
}

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

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease-in-out;
}
#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

/* Form Focus Styles */
input:focus, select:focus, textarea:focus {
    outline: none;
}

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