/* Custom styles for Shear Grace Salon & Tanning */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f5f3ef;
}
::-webkit-scrollbar-thumb {
    background: #9db89d;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #729672;
}

/* Selection color */
::selection {
    background: #c7d7c7;
    color: #2a3f2a;
}

/* Subtle pattern overlay for sections */
.bg-pattern {
    background-image: radial-gradient(circle at 1px 1px, rgba(63, 95, 63, 0.05) 1px, transparent 0);
    background-size: 24px 24px;
}

/* Floating animation for decorative elements */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #3f5f3f, #729672);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav scroll effect handled in JS */
.nav-scrolled {
    box-shadow: 0 1px 20px rgba(42, 63, 42, 0.08);
}

/* Image hover zoom handled in HTML */

/* Form focus styles */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(82, 122, 82, 0.15);
}

/* Service card hover */
.group:hover .group-hover\:bg-forest-600 {
    background-color: #729672;
}

/* Mobile menu transitions */
#mobileMenu {
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

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