/* Development Stack Section Styles */
.technologies-section {
  padding: 5rem 0;
  background-color: #111827;
  position: relative;
  overflow: hidden;
}

.technologies-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 35%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 75%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  z-index: 0;
}

.technologies-container {
  position: relative;
  z-index: 1;
}

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 640px) {
  .technologies-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

@media (min-width: 1024px) {
  .technologies-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.technology-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.technology-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.technology-icon-container {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.technology-icon {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.technology-item:hover .technology-icon {
  transform: scale(1.1);
}

.technology-name {
  font-weight: 600;
  font-size: 1rem;
  color: #f9fafb;
  margin-bottom: 0.5rem;
}

.technology-description {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.5;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .technology-item,
  .technology-item:hover,
  .technology-icon {
    transform: none;
    transition: none;
  }
}
