
/* Custom Styles for Align Staff Company Redesign */

/* Typography Base Defaults */
body {
  font-family: 'Inter', sans-serif;
  color: #123B52;
  background-color: #FFFFFF;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Manrope', sans-serif;
}

/* Custom Gradient Meshes & Background Dynamics */
.bg-mesh-soft {
  background-color: #F7FAFC;
  background-image: 
    radial-gradient(at 0% 0%, rgba(234, 246, 251, 0.8) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(113, 213, 198, 0.15) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(255, 130, 108, 0.05) 0px, transparent 50%);
}

.bg-mesh-accent {
  background: linear-gradient(135deg, #EAF6FB 0%, #FFFFFF 50%, #F7FAFC 100%);
}

.bg-glass {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.bg-glass-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(113, 213, 198, 0.2);
}

/* Custom Soft Layered Shadows */
.shadow-soft {
  box-shadow: 0 10px 30px -5px rgba(18, 59, 82, 0.05), 0 4px 12px -2px rgba(18, 59, 82, 0.02);
}

.shadow-hover {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.shadow-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -10px rgba(18, 59, 82, 0.1), 0 8px 16px -4px rgba(47, 174, 155, 0.12);
}

/* Scroll Reveal Animations */
.reveal-init {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delay Utility Classes */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* Accessible Focus Ring */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid #2FAE9B;
  outline-offset: 3px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F7FAFC;
}
::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #2FAE9B;
}

/* Decorative Geometric Elements */
.geo-dots {
  background-image: radial-gradient(#2FAE9B 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.25;
}

/* Image Fallback Container */
.logo-fallback {
  display: inline-flex;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  color: #123B52;
  letter-spacing: -0.02em;
}

/* Print Rules */
@media print {
  .no-print, header, footer, #back-to-top {
    display: none !important;
  }
}

/* Reduced Motion Override */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-init {
    opacity: 1 !important;
    transform: none !important;
  }
}

