@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;500;600;700;800;900&family=Lora:wght@400;500;600;700;800;900&display=swap');

:root {
    --color-primary: #c2410c;
    --color-hover: #ea580c;
    --color-accent: #ffedd5;
    --color-bg: #fff7ed;
    --font-main: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Lora', 'Nunito', Georgia, serif;
    --border-radius: 6px;
    --card-radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

body, html {
    font-family: var(--font-main) !important;
    scroll-behavior: smooth;
    color: #334155;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
}

[class*="bg-[#2d5a27]"], [class*="bg-[#"], .bg-primary {
    background-color: var(--color-primary) !important;
}
[class*="text-[#2d5a27]"], .text-primary {
    color: var(--color-primary) !important;
}
[class*="border-[#2d5a27]"], .border-primary {
    border-color: var(--color-primary) !important;
}
[class*="hover:bg-[#"]:hover {
    background-color: var(--color-hover) !important;
}
[class*="hover:text-[#"]:hover {
    color: var(--color-hover) !important;
}
.text-emerald-600, .text-green-600, .text-teal-600 {
    color: var(--color-primary) !important;
}
.bg-emerald-600, .bg-green-600, .bg-teal-600 {
    background-color: var(--color-primary) !important;
}

.bg-white [class*="text-white"], .bg-white [class*="text-gray-2"],
.bg-white [class*="text-gray-3"], .bg-white [class*="text-gray-4"],
.bg-white [class*="text-slate-3"], .bg-white [class*="text-slate-4"],
.bg-gray-50 [class*="text-white"], .bg-gray-50 [class*="text-gray-2"],
.bg-gray-50 [class*="text-gray-3"], .bg-gray-50 [class*="text-gray-4"],
.bg-gray-100 [class*="text-white"], .bg-gray-100 [class*="text-gray-2"],
.bg-gray-100 [class*="text-gray-3"], .bg-gray-100 [class*="text-gray-4"],
.bg-slate-50 [class*="text-white"], .bg-slate-50 [class*="text-gray-3"],
.bg-slate-50 [class*="text-gray-4"], .bg-blue-50 [class*="text-white"],
.bg-blue-50 [class*="text-gray-3"], .bg-sky-50 [class*="text-white"],
.bg-sky-50 [class*="text-gray-3"] {
    color: #374151 !important;
}

[class*="bg-gray-8"] [class*="text-gray-7"], [class*="bg-gray-8"] [class*="text-gray-8"],
[class*="bg-gray-9"] [class*="text-gray-7"], [class*="bg-gray-9"] [class*="text-gray-8"],
[class*="bg-gray-9"] [class*="text-gray-9"], [class*="bg-slate-9"] [class*="text-gray-8"],
[class*="bg-slate-9"] [class*="text-gray-9"], [class*="bg-black"] [class*="text-gray-8"],
[class*="bg-black"] [class*="text-gray-9"] {
    color: #e2e8f0 !important;
}

.bg-white, .bg-gray-50, .bg-gray-100 {
    color: #1f2937;
}

header a[href*="index"] {
    min-width: 0;
}
header a[href*="index"] > span {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
    vertical-align: middle;
}
@media (min-width: 1024px) {
    header a[href*="index"] > span {
        max-width: 280px;
    }
}