/* styles.css - OmniDeploy AI Premium Light Portal */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #F8FAFC;
  --color-text-primary: #0F172A;
  --color-text-secondary: #475569;
  --color-border: #E2E8F0;
  --color-indigo: #6366F1;
  --color-cyan: #06B6D4;
  --color-panel: rgba(255, 255, 255, 0.75);
}

/* Base Body settings - Font enlarged and scaled up default */
body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  font-size: 18px; /* Scaled up default body size */
  -webkit-font-smoothing: antialiased;
}

/* Premium Tech Grid Background Pattern */
.tech-grid-bg {
  background-color: var(--color-bg-primary);
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(99, 102, 241, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(99, 102, 241, 0.035) 1px, transparent 1px);
}

/* Glassmorphism Panel styles */
.glass-panel {
  background: var(--color-panel);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Gradient Text styles */
.gradient-text-indigo-cyan {
  background: linear-gradient(135deg, #4F46E5 0%, var(--color-indigo) 50%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Shadows and Hover effects */
.premium-shadow {
  box-shadow: 0 15px 45px rgba(99, 102, 241, 0.03), 0 3px 6px rgba(0, 0, 0, 0.01);
}

.hover-border-glow {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-border-glow:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.06), 0 3px 6px rgba(0, 0, 0, 0.01);
}

.hover-cyan-glow {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-cyan-glow:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.06), 0 3px 6px rgba(0, 0, 0, 0.01);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.35);
}

/* Floating Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(0.5deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
  animation: float 6s ease-in-out infinite;
  animation-delay: 3s;
}

/* WhatsApp Typing dots bouncing keyframes */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.dot-bounce {
  animation: bounce 1.2s infinite ease-in-out;
}

.dot-bounce:nth-child(2) {
  animation-delay: 0.2s;
}

.dot-bounce:nth-child(3) {
  animation-delay: 0.4s;
}

/* Glowing Pulse dots */
@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}

.pulse-dot-indigo {
  box-shadow: 0 0 8px var(--color-indigo);
  animation: pulseGlow 2s infinite ease-in-out;
}

.pulse-dot-cyan {
  box-shadow: 0 0 8px var(--color-cyan);
  animation: pulseGlow 2s infinite ease-in-out;
  animation-delay: 1s;
}
