/* Additional custom styles */

/* Gold gradient text utility */
.gold-gradient-text {
    background: linear-gradient(90deg, #c9952e 0%, #f0d078 50%, #c9952e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Selection color */
::selection {
    background: rgba(201, 149, 46, 0.3);
    color: #fff;
}

/* Smooth focus visible */
*:focus-visible {
    outline: 2px solid #c9952e;
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* Print styles */
@media print {
    .hero-gradient { background: #0d1b2a !important; }
    nav, #mobileMenu { display: none !important; }
}
