@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Manrope:wght@300;400;500;600;700;800&display=swap');

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #050505;
  color: #F5F5F5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
}

:root {
  --background: 220 33% 3%;
  --foreground: 0 0% 96%;
  --card: 220 33% 5%;
  --card-foreground: 0 0% 96%;
  --popover: 220 33% 5%;
  --popover-foreground: 0 0% 96%;
  --primary: 160 84% 39%;
  --primary-foreground: 0 0% 100%;
  --secondary: 0 0% 89%;
  --secondary-foreground: 0 0% 0%;
  --muted: 220 33% 12%;
  --muted-foreground: 0 0% 63%;
  --accent: 38 92% 50%;
  --accent-foreground: 0 0% 0%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 220 33% 15%;
  --input: 220 33% 15%;
  --ring: 160 84% 39%;
  --radius: 0.75rem;
}

* {
  border-color: hsl(var(--border));
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #050a0f;
}

::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #10b981;
}

/* Accent text accent */
.text-accent {
  color: #f59e0b;
}

.bg-accent {
  background-color: #f59e0b;
}

.border-accent {
  border-color: #f59e0b;
}

/* Primary text accent */
.text-primary {
  color: #10b981;
}

.bg-primary {
  background-color: #10b981;
}

.border-primary {
  border-color: #10b981;
}

/* Glassmorphism */
.glass {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Glow effect */
.glow-primary {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.glow-primary:hover {
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus styles */
*:focus {
  outline: 2px solid #10b981;
  outline-offset: 2px;
}

/* Selection */
::selection {
  background-color: rgba(16, 185, 129, 0.3);
  color: #F5F5F5;
}

/* Hamburger transition helper */
#mobile-menu {
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
}

#mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
