/* Custom Styles for DG Barber Shop */

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

/* Custom 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;
}

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

::-webkit-scrollbar-track {
    background: #0b1410;
}

::-webkit-scrollbar-thumb {
    background: #14281e;
    border: 1px solid #c5a059;
}

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

/* Focus Styles */
input:focus,
select:focus,
button:focus {
    outline: none;
}

/* Selection Color */
::selection {
    background: #c5a059;
    color: #0b1410;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}
