/* Custom animations and utilities */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #6b3f5b;
}

/* Input focus styles */
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

/* Image aspect ratio */
img {
    max-width: 100%;
    height: auto;
}

/* Navigation active state */
.nav-link.active {
    color: #d4a373;
}

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

/* Hover effects for cards */
.group:hover .group-hover\:translate-x-2 {
    transform: translateX(0.5rem);
}

/* Print styles */
@media print {
    #navbar,
    #contact-form button {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
