:root {
    --plum-primary: #4c1d95;
    --plum-light: #6d28d9;
    --amber-primary: #f59e0b;
    --amber-dark: #d97706;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

.font-jakarta {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

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

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

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

/* Mobile menu animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button hover effects */
.amber-accent:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.plum-gradient:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
}

/* Card hover effects */
.card-shadow {
    transition: all 0.3s ease;
}

/* Form focus states */
input:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-pattern {
        background-position: 70% center;
    }
    
    .stat-card {
        transform: none !important;
    }
}

/* Print styles */
@media print {
    nav,
    #contact-form,
    .amber-accent {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
