/* Technologies - Design minimaliste */
.tech-section {
  padding: 3.5rem 0;
  margin-bottom: 0;
}

.tech-intro {
  margin-bottom: 3rem;
}

.tech-title {
  margin-bottom: 1.25rem;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  letter-spacing: -0.01em;
}

.tech-intro p {
  max-width: 650px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.tech-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 2rem;
  display: flex;
  align-items: center;
}

.tech-icon-col {
  flex: 0 0 80px;
}

.tech-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  color: #fff;
  opacity: 0.9;
  position: relative;
}

.tech-icon i {
  position: relative;
  z-index: 2;
}

.tech-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--bg-secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.tech-icon.wordpress {
  color: #2271b1;
}

.tech-icon.palette {
  color: #10b981;
}

.tech-icon.plugins {
  color: #8b5cf6;
}

.tech-icon.frontend {
  color: #ec4899;
}

.tech-content-col {
  flex: 1;
}

.tech-name {
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  display: block;
}

.tech-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  display: block;
}

.tech-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.tech-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.025em;
}

@media (min-width: 768px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tech-row {
    height: 100%;
  }
} 