/*CONFIGURATION*/

#card-p-section {
  margin-top: 10rem; margin-left: 1rem;
}
.card {
  background-color: #322d2d;
  padding: 1.5rem;
  border-radius: 1rem;
  width: 260px;
  text-align: center;
  color: white;
  border: 4px #4d4747 solid;
  transition: transform 0.3s ease, box-shadow 1s ease, border-color 1.5s ease;
}

#card-p-box{
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.card img {
  display: block;
  margin: 0 auto 1rem auto;
  height: 100px;
  border-radius: 50%;
}

.roles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.role-box {
  background-color: #4d4747;
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
}

.role {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.95rem;
}

.name{
  font-weight: 500;
  font-size: larger;
}

.line-style {
  height: 6px;
  margin: 20px auto;
  border: none;
  border-radius: 5px;

  background: linear-gradient(
    270deg,
    #00f7ff,
    #ff00f7,
    #f7ff00,
    #00f7ff
  );
  background-size: 600% 600%;

  animation: gradientShift 10s ease infinite;
  opacity: 0.9;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/*CARD-1 STYLE (OWNER)*/

#owner{
  color: #ff9e59;
}

#card-1{
  transition: transform 0.3s ease, box-shadow 1s ease, border-color 1.5s ease;
}

#card-1:hover {
  transform: scale(1.05);
  border-color: #ff9e59;
  box-shadow:
    0 10px 20px #e8690e,
    0 0 20px #e8690e,
    0 0 20px #e8690e;
}

/*STAFF COLOR*/

#staff{
  color: #ff0000;
}

/*CARD-2 STYLE (ADMIN)*/

#admin{
  color: #e68ed6;
}

#card-2{
  transition: transform 0.3s ease, box-shadow 1s ease, border-color 1.5s ease;
}

#card-2:hover {
  transform: scale(1.05);
  border-color: #e68ed6;
  box-shadow:
    0 10px 20px #9f398c,
    0 0 20px #9f398c,
    0 0 20px #9f398c;
}

/*CARD-3 STYLE (SENIOR MOD)*/

#senior-mod{
  color: #4754ff;
}

#card-3{
  transition: transform 0.3s ease, box-shadow 1s ease, border-color 1.5s ease;
}

#card-3:hover {
  transform: scale(1.05);
  border-color: #4754ff;
  box-shadow:
    0 10px 20px #6871f5,
    0 0 20px #6871f5,
    0 0 20px #6871f5;
}


