/* Village Nail Spa — Custom Styles */

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FFF9F2;
}
::-webkit-scrollbar-thumb {
    background: #E08B74;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C46A4A;
}

/* Selection */
::selection {
    background: #F5C4B4;
    color: #3D2217;
}

/* Navbar transition */
#navbar {
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
    background: rgba(255, 249, 242, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(61, 34, 23, 0.08);
}

/* Hero animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(12deg); }
    50% { transform: translateY(-12px) rotate(12deg); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-8px) rotate(45deg); }
}
@keyframes float3 {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-16px) scale(1.05); }
}

.hero-geo-1 { animation: float 6s ease-in-out infinite; }
.hero-geo-2 { animation: float2 8s ease-in-out infinite; }
.hero-geo-3 { animation: float3 7s ease-in-out infinite; }

/* Service cards */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery items */
.gallery-item {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

/* Review cards */
.review-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.review-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile menu */
#mobileMenu {
    animation: slideDown 0.3s ease forwards;
}

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

/* Pulse dot */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Button hover glow */
.btn-glow:hover {
    box-shadow: 0 0 40px rgba(196, 106, 74, 0.4) !important;
}

/* Image lazy load placeholder */
img {
    background-color: #FADCD0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .font-display {
        line-height: 1.1;
    }
}

/* Print styles */
@media print {
    #navbar, .gallery-item, .hero-geo-1, .hero-geo-2, .hero-geo-3 {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
}
