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

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

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

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

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

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

/* Selection color */
::selection {
    background: #f2d5c6;
    color: #6e2c1e;
}

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

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid #d46540;
    outline-offset: 2px;
}

/* Subtle hover effects for cards */
.group:hover .group-hover\:bg-terracotta-600 {
    background-color: #d46540;
}

/* Image loading placeholder */
img {
    background-color: #efe5d8;
}
