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

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

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

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

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

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

/* Form Focus Styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(255, 127, 80, 0.2);
}

/* Utility for image aspect ratios */
img {
    max-width: 100%;
    height: auto;
}
