/* LizProCRM Professional Brand Design System */
/* Based on hexagonal logo with vibrant house colors */

/* Force standard cursor everywhere */
* {
  cursor: auto !important;
}

a, button, .btn, [onclick], [role="button"], input[type="button"], input[type="submit"] {
  cursor: pointer !important;
}

input[type="text"], input[type="email"], input[type="password"], textarea, select {
  cursor: text !important;
}

:root {
  /* Brand Colors - Extracted from Logo */
  --brand-primary: #2563eb;
  --brand-secondary: #7c3aed;
  --brand-accent: #f97316;
  --brand-success: #059669;
  --brand-warning: #eab308;
  --brand-danger: #dc2626;
  
  /* Neutral Colors */
  --neutral-50: #f8fafc;
  --neutral-700: #334155;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  
  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
  
  /* Spacing */
  --space-3: 0.75rem;
  --space-4: 1rem;
  
  /* Border Radius */
  --radius-lg: 1rem;
  
  /* Shadows */
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Transitions */
  --transition-normal: 250ms ease-in-out;
}

/* Professional Navigation */
.liz-navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.liz-navbar-brand {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: all var(--transition-normal);
}

.liz-navbar-brand:hover {
  color: white;
  text-decoration: none;
  transform: scale(1.02);
}

.liz-logo {
  height: 50px;
  width: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all var(--transition-normal);
}

.liz-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .liz-logo {
    height: 40px;
  }
  
  .liz-navbar-brand {
    font-size: 1.1rem;
  }
}
/* Fix logo overlap issue */
.liz-navbar-brand {
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition-normal);
  flex-shrink: 0;
  min-width: 200px;
}

.liz-logo {
  height: 45px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 1rem;
  min-height: 70px;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .liz-logo {
    height: 35px;
  }
  
  .liz-navbar-brand {
    font-size: 1rem;
    min-width: 150px;
  }
  
  .navbar-container {
    gap: 1rem;
  }
}

/* Override navigation with consistent gradient */
.liz-navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Ensure nav links have proper contrast */
.liz-nav-link {
  color: white !important;
}

.liz-nav-link:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
}

/* Fix dropdown menus for better visibility */
.dropdown-menu {
  background: white !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2) !important;
}

.dropdown-item {
  color: #334155 !important;
}

.dropdown-item:hover {
  background: #f1f5f9 !important;
  color: #667eea !important;
}
