/* Custom 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;
    opacity: 0;
}

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #9e0000;
}

/* Selection Color */
::selection {
    background: rgba(197, 160, 255, 0.3);
    color: white;
}

/* Mobile Menu Transitions */
.mobile-link {
    transition: all 0.3s ease;
}

.mobile-link:hover {
    transform: scale(1.05);
}

/* Form Focus Styles */
input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 1px rgba(197, 160, 255, 0.5);
}

/* Button Hover Glow */
button:hover {
    box-shadow: 0 0 30px rgba(120, 0, 0, 0.6);
}

/* Image Hover Zoom */
.group:hover img {
    transform: scale(1.05);
}

img {
    transition: transform 0.5s ease;
}
