/**
 * Canberra Flooring - Master Stylesheet
 * Compliance: Steve's Premium Gold Refactor
 */

@layer base {
    html {
        scroll-behavior: smooth;
    }
    body {
        -webkit-font-smoothing: antialiased;
        text-rendering: optimizeLegibility;
    }
}

/* Brand Palette Extensions */
.text-brand-gold { color: #C5A059 !important; }
.bg-brand-gold { background-color: #C5A059 !important; }
.border-brand-gold { border-color: #C5A059 !important; }

/* Custom Navigation Animations */
.dropdown-menu {
    display: none;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Button & Link Hover Effects */
.hover-gold:hover {
    color: #E2C285 !important;
}

.bg-brand-gold-hover:hover {
    background-color: #E2C285 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* Form Styles */
input::placeholder, textarea::placeholder {
    color: #555 !important;
}

input:focus, select:focus, textarea:focus {
    border-color: #C5A059 !important;
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.1);
}

/* Responsive Utilities */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
}