/* assets/css/main.css - Tailwind Base & Theme Extensions (Dark/Light Support) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--font-heading);
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Theme styles */
html.light body {
  background-color: #f8fafc;
  color: #0f172a;
}

html.light header {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: #e2e8f0;
}

html.light header nav a {
  color: #1e293b !important;
}
html.light header nav a:hover {
  color: #d97706 !important;
}

html.light header .brand-title {
  color: #0f172a !important;
}

html.light .bg-slate-950 {
  background-color: #ffffff !important;
}
html.light .bg-slate-900,
html.light .bg-slate-900\/50,
html.light .bg-slate-900\/60,
html.light .bg-slate-900\/80,
html.light .bg-slate-900\/95 {
  background-color: #f1f5f9 !important;
}

html.light .border-slate-800,
html.light .border-slate-800\/60,
html.light .border-slate-800\/80,
html.light .border-slate-900 {
  border-color: #e2e8f0 !important;
}

html.light .text-white {
  color: #0f172a !important;
}

html.light .text-slate-100,
html.light .text-slate-200,
html.light .text-slate-300 {
  color: #334155 !important;
}

html.light .text-slate-400 {
  color: #64748b !important;
}

html.light .text-slate-500 {
  color: #94a3b8 !important;
}

html.light footer {
  background-color: #0f172a !important;
  color: #cbd5e1 !important;
}
html.light footer .text-white {
  color: #ffffff !important;
}
html.light footer .text-slate-400 {
  color: #94a3b8 !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #060d17;
}
::-webkit-scrollbar-thumb {
  background: #1e3e62;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f59e0b;
}

html.light ::-webkit-scrollbar-track {
  background: #f1f5f9;
}
html.light ::-webkit-scrollbar-thumb {
  background: #cbd5e1;
}

/* Glassmorphism */
.glass-panel {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

html.light .glass-panel {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
}
