/* Priovets Custom CSS */

:root {
    --prioburgundy: #63121B;
    --priogreen: #386623;
}

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

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Subtle pattern for background elements */
.pattern-grid {
    background-image: radial-gradient(rgba(99, 18, 27, 0.08) 1px, transparent 0);
    background-size: 24px 24px;
}

/* Smooth card transitions */
.hover-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.12);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #c5c5c5;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}
