/*
Theme Name: ALSAAS Theme
Theme URI: https://alsaas.com
Author: ALSAAS
Author URI: https://alsaas.com
Description: Custom modern corporate theme for ALSAAS AL MUBTAKIR INFORMATION TECHNOLOGY L.L.C.
Version: 1.0
Text Domain: alsaas
*/

/* 
  We are using Tailwind CSS via CDN for rapid, modern styling.
  Custom styles that override or supplement Tailwind go here.
*/

:root {
  --color-primary: #1D2A5B;
  --color-secondary: #D4AF37;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Glassmorphism Utilities */
.glass-panel-dark {
  background: rgba(29, 42, 91, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.text-primary { color: var(--color-primary); }
.bg-primary { background-color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.bg-secondary { background-color: var(--color-secondary); }
.hover\:bg-secondary:hover { background-color: #B59325; }

/* Micro-animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
