/* Custom Styles for Bowers Collision */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #120E0B;
    color: #E8DCC4;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #120E0B;
}
::-webkit-scrollbar-thumb {
    background: #C25A4E;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #8B3A30;
}

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

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

/* Service Card Hover Effect */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
}

/* Navbar Glass Effect */
.nav-scrolled {
    background: rgba(18, 14, 11, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* Mobile Menu Transition */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

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

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