/* Custom styles for H & L Nails Lounge */

html {
    scroll-behavior: smooth;
}

/* Smooth reveal animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #8a4f3c;
}

/* Service card hover effect */
.group:hover .group-hover\:bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Image hover zoom */
.rounded-2xl:hover img {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

/* Subtle gradient overlay on hero */
.hero-gradient {
    background: linear-gradient(135deg, rgba(181, 108, 82, 0.1) 0%, rgba(252, 242, 237, 0.3) 100%);
}

/* Focus styles for accessibility */
input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(181, 108, 82, 0.2);
}

/* Mobile menu animation */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

#mobile-menu.open {
    max-height: 400px;
}

/* Pulse animation for status dot */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Print styles */
@media print {
    #navbar,
    #mobile-menu-btn {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
