@charset "UTF-8";

a.btn-button {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin: 8px;
  cursor: pointer;
  transition: 0.5s;
}
a.btn-button:hover {
  color: #fff;
}
a.btn-hover {
  background: #3498db;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  transition: background 0.3s;
}
a.btn-hover:hover {
  background: #2980b9;
}

a.btn-shadow {
  background: #e74c3c;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}
a.btn-shadow:hover {
  transform: translateY(-2px);
}

a.btn-outline {
  background: transparent;
  color: #2c3e50;
  padding: 12px 24px;
  border: 2px solid #2c3e50;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}
a.btn-outline:hover {
  background: #2c3e50;
  color: white;
}

a.btn-gradient {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  transition: opacity 0.3s;
}
a.btn-gradient:hover {
  opacity: 0.8;
}

a.btn-animated {
  position: relative;
  overflow: hidden;
  padding: 12px 24px;
  background: #1abc9c;
  color: white;
  border-radius: 5px;
}
a.btn-animated::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transition: left 0.4s;
}
a.btn-animated:hover::before {
  left: 100%;
}
