/* Custom Styles for Boyd Hardwood Floor */

/* Smooth scrolling is handled by Tailwind's scroll-smooth class on html */

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

::-webkit-scrollbar-track {
    background: #051810;
}

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

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

/* Gold Gradient Text Utility */
.text-transparent.bg-clip-text.bg-gradient-to-r {
    background-image: linear-gradient(to right, #d4af37, #f3e5ab);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Image Hover Zoom Effect */
.group:hover img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Navbar Blur Effect */
.nav-scrolled {
    background-color: rgba(5, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

/* Button Hover Glow */
button:hover, a:hover {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

button:active, a:active {
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}
