/* Custom styles and animations */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

.animate-fade-in-up {
    animation: fadeInUp 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: 8px;
}

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

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

::-webkit-scrollbar-thumb:hover {
    background: #7d3d58;
}

/* Form focus styles */
input:focus,
textarea:focus {
    border-color: #d97706 !important;
}

/* Navigation scroll effect */
.nav-scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Hover effects for service cards */
.group:hover .group-hover\:bg-amber-50 {
    background-color: #fffbeb;
}

.group:hover .group-hover\:text-amber-600 {
    color: #b45309;
}

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

/* Responsive typography */
@media (max-width: 768px) {
    .font-serif {
        font-size: 2.5rem;
    }
}
