.skills {
  padding: 6rem 9%;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
}

.section-title {
  font-size: 4rem;
  margin-bottom: 3rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-align: center;
}

.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
  text-align: center;
}

.skills-group {
  flex: 1 1 300px;
  max-width: 450px;
}

.skills-group h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.skills-group ul {
  list-style: none;
  padding: 0;
}

.skills-group li {
  margin-bottom: 1.5rem;
  text-align: left;
}

.skills-group span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.bar {
  width: 100%;
  height: 10px;
  background: #222;
  border-radius: 5px;
  overflow: hidden;
}

.fill {
  height: 100%;
  background: linear-gradient(90deg, #6633FF, #A566FF);
  border-radius: 5px;
  transition: width 1s ease;
}


/* Responsivní */
@media (max-width: 768px) {
  .skills-container {
    flex-direction: column;
    align-items: center;
  }
}
