/* Gübtaş Gübre Custom Styles */
:root {
  --brand-green: #025e3d;
  --brand-light: #a5cd39;
  --brand-dark: #014a30;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; }

.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Prose (for blog content) */
.prose h2 { font-size: 1.5rem; font-weight: 700; margin-top: 1.5em; margin-bottom: 0.5em; color: #025e3d; }
.prose h3 { font-size: 1.25rem; font-weight: 700; margin-top: 1.25em; margin-bottom: 0.5em; color: #374151; }
.prose p { margin-top: 0.75em; margin-bottom: 0.75em; line-height: 1.75; color: #374151; }
.prose a { color: #025e3d; font-weight: 600; text-decoration: underline; }
.prose a:hover { color: #014a30; }
.prose strong { color: #111827; font-weight: 700; }
.prose ul { list-style: disc; padding-left: 1.5em; margin-top: 0.75em; margin-bottom: 0.75em; }
.prose ol { list-style: decimal; padding-left: 1.5em; margin-top: 0.75em; margin-bottom: 0.75em; }

/* Smooth transitions */
a, button { transition: all 0.2s ease; }

/* Scrollbar styling */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #025e3d; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #014a30; }

/* Print styles */
@media print {
  header, footer, nav, .no-print { display: none !important; }
}
