/* ========================================
   SUNBURST ABOUT PAGE DESIGN
   ======================================== */

/* Sunburst Hero Section */
.sunburst-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Sunburst Background */
.sunburst-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 100% 50%, 
    rgba(59, 130, 246, 0.1) 0%, 
    rgba(99, 102, 241, 0.05) 50%, 
    transparent 100%);
  border-radius: 50% 0 0 50%;
  z-index: 1;
  animation: sunburstGlow 4s ease-in-out infinite alternate;
}

@keyframes sunburstGlow {
  0% {
    opacity: 0.7;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Content Positioning */
.sunburst-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Profile and Icons Section */
.profile-icons-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 400px;
  gap: 2rem;
}

/* Profile Section */
.profile-section {
  flex: 0 0 40%;
}

.profile-section img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Expertise Icons Container */
.expertise-sunburst {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

/* Individual Expertise Icons */
.expertise-icon {
  width: 4rem;
  height: 4rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.expertise-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.expertise-icon svg {
  transition: transform 0.3s ease;
}

.expertise-icon:hover svg {
  transform: scale(1.1);
}

/* Icon Labels */
.icon-label {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.expertise-icon:hover .icon-label {
  opacity: 1;
}

/* Simple horizontal layout - no complex positioning needed */

/* Entrance Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .sunburst-background {
    width: 500px;
    height: 500px;
  }
  
  .expertise-sunburst {
    gap: 1rem;
  }
  
  .expertise-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
  
  /* Profile photo responsive adjustments */
  .profile-section img {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  .sunburst-background {
    width: 400px;
    height: 400px;
    opacity: 0.5;
  }
  
  .sunburst-content {
    padding: 0 1rem;
  }
  
  /* Mobile layout adjustments */
  .profile-icons-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    min-height: auto;
  }
  
  .profile-section {
    flex: none;
    width: 100%;
    max-width: 400px;
  }
  
  /* Profile photo mobile responsive */
  .profile-section img {
    width: 150px;
    height: 150px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
  }
  
  .expertise-sunburst {
    gap: 0.75rem;
  }
  
  .expertise-icon {
    width: 3rem;
    height: 3rem;
  }
  
  .expertise-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .icon-label {
    font-size: 0.75rem;
    bottom: -25px;
  }
}

@media (max-width: 480px) {
  /* Small mobile profile photo */
  .profile-section img {
    width: 120px;
    height: 120px;
  }
  
  .expertise-sunburst {
    gap: 0.5rem;
  }
  
  .expertise-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .expertise-icon svg {
    width: 18px;
    height: 18px;
  }
  
  .icon-label {
    font-size: 0.625rem;
    bottom: -20px;
  }
}

/* Accessibility Improvements */
.expertise-icon:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.expertise-icon:focus-visible {
  transform: translateY(-4px) scale(1.05);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .expertise-icon {
    border: 2px solid #000;
  }
  
  .sunburst-background {
    opacity: 0.3;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .sunburst-background,
  .expertise-icon,
  .profile-section img {
    animation: none;
    transition: none;
  }
  
  .expertise-icon:hover {
    transform: none;
  }
}

/* Print styles */
@media print {
  .sunburst-background {
    display: none;
  }
  
  .expertise-icon {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .icon-label {
    opacity: 1;
    color: #000;
  }
} 