/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* ListLab Brand System - Purple/Creative Theme */

/* CSS Custom Properties for Brand Colors */
:root {
  --primary: #8B5CF6;        /* Purple-500 - Main brand color */
  --primary-dark: #7C3AED;   /* Purple-600 - Hover states */
  --primary-light: #A78BFA;  /* Purple-400 - Light accents */
  --primary-50: #F3F4F6;     /* Purple-50 - Very light backgrounds */
}

/* Hero Background - Professional Light */
.hero-gradient {
  background: #F8FAFC;
}

.hero-gradient-overlay {
  background: rgba(248, 250, 252, 0.95);
}

/* Creative CTA Section - Professional */
.cta-creative {
  background: #F1F5F9;
  position: relative;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}

.cta-creative::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

/* Brand Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: #8B5CF6;
  color: white;
  border: none;
  transform: translateY(0);
}

.btn-primary:hover {
  background: #7C3AED;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.4);
  transform: translateY(-4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  color: #8B5CF6;
  border: 2px solid #8B5CF6;
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: #8B5CF6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.2);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s;
  background: #A78BFA;
  color: white;
  border: none;
}

.btn-accent:hover {
  background: #8B5CF6;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
}

/* Creative Badge Styles */
.badge-creative {
  background: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.badge-pulse {
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { 
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
  }
  50% { 
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  }
}

/* Sector Badge Creative */
.sector-badge {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #8B5CF6;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Brand Card Styles */
.brand-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: 1px solid #E5E7EB;
}

.brand-card:hover {
  transform: translateY(-6px);
  border-color: #8B5CF6;
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

/* Creative Backgrounds */
.bg-creative-light {
  background: rgba(139, 92, 246, 0.05);
}

.bg-creative-medium {
  background: rgba(139, 92, 246, 0.1);
}

/* Logo Animation */
.logo-pulse {
  animation: pulse 3s infinite;
}

/* Logo Color - Convert blue to purple */
img[alt*="Logo"], img[src*="logo"] {
  filter: hue-rotate(30deg) saturate(1.3) brightness(0.85);
}

/* Link Colors - Always blue, even when visited (except navigation and buttons) */
a:not(nav a):not(header a):not([class*="bg-"]):not([class*="button"]):not([class*="btn"]) {
  color: #2563EB; /* blue-600 */
}

a:not(nav a):not(header a):not([class*="bg-"]):not([class*="button"]):not([class*="btn"]):visited {
  color: #2563EB; /* blue-600 */
}

a:not(nav a):not(header a):not([class*="bg-"]):not([class*="button"]):not([class*="btn"]):hover {
  color: #1D4ED8; /* blue-700 */
}

/* Static Panel Style - Like Hero */
.panel-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid #E5E7EB;
}

/* Status Indicator Badges - Reverse Out Style */
.status-indicator {
  background: #1E293B;
  color: #F8FAFC;
  border: none;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
}
