/* ==========================================
   DEDICATED TEAM PAGE - GLOBAL CSS STYLES
   ========================================== */

/* Design Tokens & Theme Variables */
:root {
  --dt-bg-dark: #070313;
  --dt-bg-dark-secondary: #0d0822;
  --dt-bg-light: #ffffff;
  --dt-bg-light-secondary: #f8fafc;
  
  --dt-purple: #330cb3;
  --dt-blue: #0e4ce9;
  --dt-glow-color: rgba(139, 92, 246, 0.15);
  --dt-accent-purple: #8b5cf6;
  
  --dt-text-light: #f8fafc;
  --dt-text-light-muted: rgba(248, 250, 252, 0.7);
  --dt-text-dark: #1e293b;
  --dt-text-dark-muted: #64748b;
  
  --dt-border-light: rgba(255, 255, 255, 0.1);
  --dt-border-dark: rgba(51, 12, 179, 0.15);
  
  --dt-shadow: 0 10px 30px -10px rgba(7, 3, 19, 0.1);
  --dt-shadow-premium: 0 20px 40px -15px rgba(51, 12, 179, 0.2);
  --dt-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Page Container Defaults */
.dedicated-team-page {
  background-color: var(--dt-bg-dark);
  color: var(--dt-text-light);
  overflow-x: hidden;
}

/* Section Common Layouts */
.dt-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.dt-section.light-theme {
  background-color: var(--dt-bg-light);
  color: var(--dt-text-dark);
}

.dt-section.dark-alt {
  background-color: var(--dt-bg-dark-secondary);
}

.dt-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Section Header Styles */
.dt-section-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.dt-section-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 30%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.light-theme .dt-section-title {
  background: linear-gradient(135deg, var(--dt-purple) 30%, var(--dt-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dt-section-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--dt-text-light-muted);
}

.light-theme .dt-section-subtitle {
  color: var(--dt-text-dark-muted);
}

/* Premium Card (Glassmorphism & Glow Effects) */
.dt-glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--dt-border-light);
  border-radius: 24px;
  padding: 40px;
  transition: var(--dt-transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dt-glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: var(--dt-shadow-premium);
}

.light-theme .dt-glass-card {
  background: #ffffff;
  border: 1px solid var(--dt-border-dark);
  box-shadow: 0 10px 30px rgba(51, 12, 179, 0.05);
  color: var(--dt-text-dark);
}

.light-theme .dt-glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(51, 12, 179, 0.3);
  box-shadow: 0 20px 40px rgba(51, 12, 179, 0.1);
}

/* Animated Interactive Glow Grid Background */
.dt-grid-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(139, 92, 246, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  opacity: 0.6;
}

.light-theme .dt-grid-bg {
  background-image: radial-gradient(
    rgba(51, 12, 179, 0.03) 1.5px,
    transparent 1.5px
  );
  background-size: 30px 30px;
}

/* Entrance Animations */
.dt-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.dt-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay classes for animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .dt-section {
    padding: 80px 0;
  }
  .dt-section-title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .dt-section {
    padding: 60px 0;
  }
  .dt-section-title {
    font-size: 2rem;
  }
  .dt-section-subtitle {
    font-size: 1.1rem;
  }
  .dt-glass-card {
    padding: 30px 20px;
  }
}
