.skillspagecontainer {
  background-image: url("./images/BackgroundImage.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}



.skills-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px;
  
}

.myskills{
   display: flex;
   justify-content: center;
  padding-top: 2rem;
}

.skill-card {
  background: rgba(20, 20, 20, 0.8);
  border: 2px solid #523d6c;
  border-radius: 16px;
  padding: 24px 32px;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 0 20px rgba(19, 12, 29, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
  background-color: #111;
}

.skill-card h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 10px;
  text-shadow: 0 0 5px #28222f;
}

.skill-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skill-card li {
  padding: 15px 0;
  font-size: 1rem;
  border-bottom: 1px solid #333;
  color: #ccc;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.delay-1 {
  animation-delay: 0.5s;
}
.delay-2 {
  animation-delay: 1s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hobbies-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.hobby-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #ffffff;
  text-shadow: 0 0 10px #6f00ff;
}

.hobby-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.hobby-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 1rem;
  width: 250px;
  height: 250px;
    display: flex;
    align-items: center;
    flex-direction: column;
   margin-top: 5rem;
   gap: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  transition: transform 0.3s ease;
}

.hobby-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

.hobby-card h3 {
  margin-bottom: 0.5rem;
  color: #dddddd;
}

.hobby-card p {
  color: #bbbbbb;
  font-size: 0.95rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}
.delay-2 {
  animation-delay: 0.6s;
}
.delay-3 {
  animation-delay: 0.9s;
}
.delay-4 {
  animation-delay: 1.2s;
}
.delay-5 {
  animation-delay: 1.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .skills-wrapper,
  .hobby-list {
    flex-direction: column;
    align-items: center;
  }
}
