/* 
   Sciarini Advocacia - Custom Styles
   Pure CSS for animations and theme extensions
*/

:root {
    --gold-50: #fdfaf1;
    --gold-100: #fbf5e2;
    --gold-200: #f7e9ba;
    --gold-300: #f0d583;
    --gold-400: #e7bc4f;
    --gold-500: #d4af37;
    --gold-600: #bc922b;
    --gold-700: #9d7326;
    --gold-800: #825d24;
    --gold-900: #6d4d22;
    --gold-950: #3f2a10;
    
    --slate-900: #0f172a;
    --slate-950: #020617;
}

/* Custom Utilities */
.font-serif {
    font-family: "Cormorant Garamond", "Playfair Display", serif;
}

.font-sans {
    font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

/* Animations */
@keyframes pulse-gold {
    0%, 100% { 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); 
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 20px 10px rgba(212, 175, 55, 0); 
    }
}

.animate-pulse-gold {
    animation: pulse-gold 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease-out;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Specific component styles to mimic Tailwind complexity where needed */
.bg-gold-500 { background-color: var(--gold-500); }
.text-gold-500 { color: var(--gold-500); }
.hover-bg-gold-600:hover { background-color: var(--gold-600); }
