@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: 0 0% 2%;
  --foreground: 0 0% 98%;
  --card: 0 0% 4%;
  --card-foreground: 0 0% 98%;
  --popover: 0 0% 4%;
  --popover-foreground: 0 0% 98%;
  --primary: 0 72% 51%;
  --primary-foreground: 0 0% 100%;
  --secondary: 215 16% 47%;
  --secondary-foreground: 0 0% 100%;
  --muted: 0 0% 10%;
  --muted-foreground: 215 16% 65%;
  --accent: 0 72% 51%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 0 0% 98%;
  --border: 0 0% 15%;
  --input: 0 0% 15%;
  --ring: 0 72% 51%;
  --radius: 0.75rem;
}

* {
  border-color: hsl(var(--border));
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #DC2626;
}

/* Accent text accent (Crimson) */
.text-accent {
  color: #DC2626;
}

.bg-accent {
  background-color: #DC2626;
}

.border-accent {
  border-color: #DC2626;
}

/* Primary text accent (Crimson) */
.text-primary {
  color: #DC2626;
}

.bg-primary {
  background-color: #DC2626;
}

.border-primary {
  border-color: #DC2626;
}

/* Glassmorphism */
.glass {
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(220, 38, 38, 0.1);
}

/* Glow effect */
.glow-primary {
  box-shadow: 0 0 20px rgba(220, 38, 38, 0.3);
}

.glow-primary:hover {
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.5);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Focus styles */
*:focus {
  outline: 2px solid #DC2626;
  outline-offset: 2px;
}

/* Selection */
::selection {
  background-color: rgba(220, 38, 38, 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;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}