/*
Theme Name: SENA Solutions
Theme URI: https://senasol.ai
Author: SENA Team
Author URI: https://senasol.ai
Description: Technology that hears the soul. Official SENA Solutions WordPress theme with EX5/SX ecosystem information.
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sena
*/

/* ========================================
   SENA WORDPRESS THEME
   ======================================== */

:root {
  --radius: 0.625rem;
  --background: 220 25% 8%;
  --foreground: 210 40% 98%;
  --card: 220 25% 10%;
  --card-foreground: 210 40% 98%;
  --popover: 220 25% 10%;
  --popover-foreground: 210 40% 98%;
  --primary: 250 85% 65%;
  --primary-foreground: 210 40% 98%;
  --secondary: 220 25% 15%;
  --secondary-foreground: 210 40% 98%;
  --muted: 220 25% 15%;
  --muted-foreground: 215 20% 65%;
  --accent: 190 90% 55%;
  --accent-foreground: 210 40% 98%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 210 40% 98%;
  --border: 220 25% 20%;
  --input: 220 25% 20%;
  --ring: 250 85% 65%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: hsl(var(--background));
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--primary) / 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--primary) / 0.5);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, hsl(250 85% 65%), hsl(190 90% 55%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow effects */
.glow-purple {
  box-shadow: 0 0 40px hsl(250 85% 65% / 0.3);
}

.glow-cyan {
  box-shadow: 0 0 40px hsl(190 90% 55% / 0.3);
}

/* Glass effect */
.glass {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

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

.animate-pulse-glow {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* Card hover */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

/* Button gradient */
.btn-gradient {
  background: linear-gradient(135deg, hsl(250 85% 65%), hsl(280 85% 60%));
  transition: all 0.3s ease;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, hsl(250 85% 70%), hsl(280 85% 65%));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Timeline */
.timeline-line {
  background: linear-gradient(180deg, hsl(250 85% 65%), hsl(190 90% 55%));
}

/* Metric card */
.metric-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
  border: 1px solid rgba(139, 92, 246, 0.2);
}

/* Navigation */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-scrolled {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  padding: 12px 0;
}

.nav-transparent {
  background: transparent;
  padding: 20px 0;
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 6, 23, 0.6) 0%, rgba(2, 6, 23, 0.4) 50%, rgba(2, 6, 23, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 80px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section styles */
.section {
  padding: 96px 0;
  position: relative;
}

.section-gradient-1 {
  background: linear-gradient(180deg, rgb(2, 6, 23) 0%, rgba(88, 28, 135, 0.1) 50%, rgb(2, 6, 23) 100%);
}

.section-gradient-2 {
  background: linear-gradient(180deg, rgb(2, 6, 23) 0%, rgba(6, 182, 212, 0.1) 50%, rgb(2, 6, 23) 100%);
}

.section-gradient-3 {
  background: linear-gradient(180deg, rgb(2, 6, 23) 0%, rgba(225, 29, 72, 0.1) 50%, rgb(2, 6, 23) 100%);
}

/* Grid layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 64px 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem !important;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

.text-white { color: #ffffff; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-purple-400 { color: #c084fc; }
.text-cyan-400 { color: #22d3ee; }
.text-rose-400 { color: #fb7185; }
.text-green-400 { color: #4ade80; }
.text-yellow-400 { color: #facc15; }

/* Background colors */
.bg-slate-950 { background-color: #020617; }
.bg-slate-900 { background-color: #0f172a; }

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

.mb-1 { margin-bottom: 4px; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }

.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-6 { padding-top: 24px; padding-bottom: 24px; }

.px-4 { padding-left: 16px; padding-right: 16px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.px-8 { padding-left: 32px; padding-right: 32px; }

.p-4 { padding: 16px; }
.p-5 { padding: 20px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }

.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-2xl { border-radius: 16px; }
.rounded-full { border-radius: 9999px; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* WordPress specific */
.wp-caption {
  max-width: 100%;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
