/* Custom styles for Bellezza Beauty Salon & Barber */

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-display {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Navbar scroll state */
.navbar-scrolled {
    background: rgba(254, 252, 251, 0.95) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

/* Service cards - dark hover handled by Tailwind group-hover */
.service-card {
    position: relative;
}

/* Gallery hover */
.gallery-item {
    cursor: pointer;
}

/* Hero decorative elements */
.hero-dot {
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Mobile menu transitions */
.mobile-menu-open {
    opacity: 1 !important;
    pointer-events: all !important;
}

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

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

::-webkit-scrollbar-thumb {
    background: #e8d5d8;
    border-radius: 4px;
}

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

/* Selection color */
::selection {
    background: #c22845;
    color: #fefcfb;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .gallery-item img {
        transition: none;
    }
    
    .service-card {
        transition: none;
    }
    
    .hero-dot {
        animation: none;
    }
}

/* Print styles */
@media print {
    nav, #contact-form, button {
        display: none !important;
    }
}

/* Large screen adjustments */
@media (min-width: 1280px) {
    .hero-title {
        font-size: clamp(3.5rem, 5vw, 5rem);
    }
}
