/* Custom styles and overrides */
:root {
    --plum-900: #4A233A;
    --plum-700: #6B3050;
    --plum-100: #F3E5E9;
    --amber-600: #D97706;
    --amber-500: #F59E0B;
    --amber-200: #FDE68A;
    --stone-50: #FAFAF9;
    --stone-100: #F5F5F4;
    --stone-200: #E7E5E4;
    --stone-500: #78716C;
    --stone-600: #57534E;
    --stone-800: #292524;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, .font-syne {
    font-family: 'Syne', sans-serif;
}

/* Reveal animation classes */
.reveal-text {
    opacity: 0;
    transform: translateY(20px);
    animation: reveal 0.8s ease forwards;
}

.reveal-text:nth-child(2) {
    animation-delay: 0.2s;
}

.reveal-text:nth-child(3) {
    animation-delay: 0.4s;
}

.reveal-text:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

::-webkit-scrollbar-track {
    background: var(--stone-100);
}

::-webkit-scrollbar-thumb {
    background: var(--plum-700);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--plum-900);
}

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

#mobile-menu.open {
    transform: translateX(0);
}

/* Navbar background transition */
#navbar.scrolled #nav-bg {
    opacity: 1;
}

/* Form focus styles */
input:focus, textarea:focus {
    outline: none;
    border-color: var(--amber-500) !important;
}

/* Service card hover effect */
.group:hover .group-hover\:bg-amber-100 {
    background-color: var(--amber-200) !important;
}

.group:hover .group-hover\:text-amber-600 {
    color: var(--amber-600) !important;
}
