/* Custom Styles for Rachel's Alibi */

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

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.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;
}

.delay-300 {
    animation-delay: 0.3s;
}

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

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

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

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

/* Selection Color */
::selection {
    background: #800020;
    color: #FDF5F5;
}

/* Input Placeholder Styling */
input::placeholder,
textarea::placeholder {
    color: #2C2C2C;
    opacity: 0.5;
}

/* Focus States for Accessibility */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-bottom: 2px solid #800020;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Image Hover Zoom Effect */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}
