/* Page layout */
body {
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
}

/* Card container */
.card {
  position: relative;
  width: 1230px;
  height: 759px;
  background-color: #ffffff;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

/* Decorative top bar */
.card__decorative-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 18px;
  background-color: #7a2f39;
  z-index: 10;
}

/* Background image */
.card__background {
  position: absolute;
  width: 1230px;
  height: 759px;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 1;
}

/* Ellipse background */
.card__ellipse {
  position: absolute;
  width: 560px;
  height: 560px;
  top: 190px;
  left: -55px;
  object-fit: cover;
  z-index: 2;
}

/* Portrait */
.card__portrait {
  position: absolute;
  width: 470px;
  height: 629px;
  top: 130px;
  left: 0;
  object-fit: cover;
  z-index: 3;
}

/* Header */
.card__header {
  position: absolute;
  top: 120px;
  left: 615px;
  z-index: 5;
}

/* Name */
.card__name {
  font-family: "Kaisei Decol", serif;
  font-weight: 500;
  font-size: 76px;
  line-height: 1.05;
  margin: 0;
  color: #000000;
}

/* Title */
.card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 10.4px;
  margin: 18px 0 0 0;
  color: #000000;
}

/* Services section */
.card__services {
  position: absolute;
  top: 340px;
  left: 645px;
  z-index: 5;
}

/* Services list */
.card__services-list {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  color: #000000;

  list-style: disc;
  padding-left: 22px;
  margin: 0;
}

/* Social icons container */

.card__social {
  position: absolute;
  left: 0;
  top: 0;
  width: 1230px;
  height: 759px;
  z-index: 999;
}


.card__social-link {
  position: absolute;
  display: block;
}

/* Behance position */
.card__social-link:nth-child(1) {
  left: 780px;
  top: 525px;
}

/* Upwork position */
.card__social-link:nth-child(2) {
  left: 965px;
  top: 505px;
}

/* Icon sizing */
.card__social-icon {
  width: 120px;
  height: 120px;
  object-fit: contain; /* keeps logos clean like Anima */
  display: block;
}

/* Cursor */
.card__cursor {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 1035px;
  top: 640px;
  z-index: 999;
}
