/* Custom Styles for Belvedere Barber Shop */

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

/* Base Typography */
body {
    background-color: #050A07;
    color: #FDFBF7;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #050A07;
}
::-webkit-scrollbar-thumb {
    background: #047857;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #10B981;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.reveal-on-scroll {
    opacity: 1; /* Default visible for accessibility / no-JS */
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Staggered animation delays for children if needed */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

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

/* Gold Gradient Text Utility */
.text-gold-gradient {
    background: linear-gradient(to right, #D4AF37, #F3E5AB);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Button Focus States */
button:focus, a:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 4px;
}

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