/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Service Card Hover Effect */
.service-card {
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4a373, #fbbf24);
    transition: width 0.3s ease;
}

.service-card:hover::after {
    width: 100%;
}

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

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

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

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

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

#mobile-menu.open {
    transform: translateX(0);
}

/* Input Focus Styles */
input:focus,
textarea:focus {
    border-bottom-color: #d4a373 !important;
}

/* Image Hover Zoom */
.group:hover .group-hover\\:scale-105 {
    transform: scale(1.05);
}

.group:hover .group-hover\\:scale-110 {
    transform: scale(1.1);
}

/* Navigation Background on Scroll */
.nav-scrolled {
    background: rgba(45, 27, 46, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Subtle Line Animation */
.w-px {
    transition: height 0.3s ease;
}

/* Gallery Image Hover */
.aspect-square {
    position: relative;
    overflow: hidden;
}

.aspect-square img {
    transition: transform 0.5s ease;
}

/* Footer Border Gradient */
.border-t {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}
