/* Base & Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

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

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

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

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

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

/* Selection */
::selection {
    background: #e07a5f;
    color: #1a1a1a;
}

/* Mobile Menu Active State */
.mobile-menu-active #bar1 {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-active #bar2 {
    opacity: 0;
}

.mobile-menu-active #bar3 {
    transform: rotate(-45deg) translate(4px, -4px);
    width: 1.5rem;
}

/* Navbar Scrolled State */
.navbar-scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(224, 122, 95, 0.1);
}

/* Reveal on Scroll */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Input Focus Styles */
input:focus,
select:focus,
textarea:focus {
    border-color: #e07a5f !important;
    box-shadow: 0 0 0 1px #e07a5f;
}

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