/* Custom styles supplementing inline styles in index.html */

/* Ensure smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Mobile menu transitions handled in index.html styles */

/* Additional utility for form focus states */
.form-input {
    background: rgba(10, 31, 22, 0.8);
    border: 1px solid rgba(201, 162, 39, 0.2);
    color: #fdf9e8;
    padding: 0.875rem 1.25rem;
    border-radius: 4px;
    width: 100%;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #c9a227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.1);
}

.form-input::placeholder {
    color: rgba(253, 249, 232, 0.4);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    * {
        transition: none !important;
        animation: none !important;
    }
}
