/**
 * DaniConsult - Linear Design System
 * Dark, sophisticated, premium styling
 */

/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Base styles */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 2px solid #5E6AD2;
  outline-offset: 2px;
}

/* ================================
   Linear Design System - Core
   ================================ */

/* Gradient text effect */
.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient border cards */
.border-gradient {
  border: 1px solid transparent;
  background: linear-gradient(#121214, #121214) padding-box,
              linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.02)) border-box;
}

/* Subtle glow effect */
.glow {
  box-shadow: 0 0 60px rgba(94, 106, 210, 0.15);
}

/* Card hover glow */
.card-hover:hover {
  box-shadow: 0 0 40px rgba(94, 106, 210, 0.1);
}

/* ================================
   Custom Scrollbar (Dark theme)
   ================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0A0A0B;
}

::-webkit-scrollbar-thumb {
  background: #232326;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #363639;
}

/* ================================
   Prose Styles for Legal Pages
   ================================ */

.prose-dark h1 {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.prose-dark h2 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose-dark h3 {
  color: #e5e5e5;
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.prose-dark p {
  color: #a1a1aa;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.prose-dark ul,
.prose-dark ol {
  color: #a1a1aa;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.prose-dark li {
  margin-bottom: 0.5rem;
}

.prose-dark a {
  color: #5E6AD2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose-dark a:hover {
  color: #7C85E0;
}

.prose-dark strong {
  color: #e5e5e5;
}

/* ================================
   Mobile Menu Animation
   ================================ */

#mobile-menu {
  transition: all 0.3s ease;
}

/* ================================
   Status Badge Animation
   ================================ */

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.status-dot {
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ================================
   Print Styles
   ================================ */

@media print {
  body {
    background: white !important;
    color: black !important;
  }

  header, footer {
    display: none;
  }

  main {
    padding: 0;
  }

  a {
    text-decoration: underline;
    color: black !important;
  }

  a[href]:after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  .text-gradient {
    -webkit-text-fill-color: black;
    background: none;
  }
}
