/* 
    The Rusty Spoke - Custom Styles
    Color Palette: Deep Navy (#0a192f) & Warm Gold (#c9a227)
*/

/* Base Reset & Typography */
body {
    font-family: 'Lato', sans-serif;
    background-color: #0a192f;
    color: #f8f8f8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

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

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

/* Mobile Menu Transitions */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

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

/* Button Styles */
.btn-gold {
    background: linear-gradient(135deg, #c9a227 0%, #a6851d 100%);
    color: #0a192f;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e5c158 0%, #c9a227 100%);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.3);
}

.btn-outline {
    border: 2px solid #c9a227;
    color: #c9a227;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #c9a227;
    color: #0a192f;
}

/* Form Inputs */
input, select, textarea {
    background-color: #0a192f;
    color: #f8f8f8;
    border: 1px solid #1e3a5f;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #c9a227;
    box-shadow: 0 0 0 2px rgba(201, 162, 39, 0.3);
}

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

::-webkit-scrollbar-track {
    background: #0a192f;
}

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

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