@font-face {
  font-family: "The Seasons";
  src: url("./the-seasons-regular.ttf") format("truetype");
}

body {
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  margin: 0;
  justify-content: center;
  min-height: 100vh;
}

.card {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
    url(./bg-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #ffffff;
  border: 2px solid #ff8fa3;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 450px;
  width: 100%;
  height: auto;
  box-shadow:
    0 8px 16px rgba(255, 143, 163, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.card-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0.7;
  pointer-events: none;
}

.card-decoration.top-left {
  top: -80px;
  left: -80px;
}

.card-decoration.top-right {
  top: -80px;
  right: -80px;
}

.card-decoration.bottom-left {
  bottom: -80px;
  left: -80px;
}

.card-decoration.bottom-right {
  bottom: -80px;
  right: -80px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}
h1 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #ff8fa3;
  font-family: "The Seasons", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;

  text-transform: uppercase;
}
p {
  color: #666;
  margin-bottom: 30px;
  font-weight: 600;
}

.link-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.link-button {
  display: block;
  background-color: #ffffff;
  color: #666;
  text-decoration: none;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-weight: 600;
  transition:
    transform 0.2s,
    background-color 0.2s;
}
.link-button:hover {
  background-color: #ff8fa3;
  color: white;
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  body {
    padding: 15px 10px;
  }

  .card {
    border: 2px solid #ff8fa3;
    border-radius: 10px;
    padding: 25px 15px;
    max-width: 100%;
    width: 100%;
    height: 100vh;
    justify-content: space-around;
  }

  .card {
    border: 2px solid #ff8fa3;
    border-radius: 10px;
    padding: 25px 15px;
    max-width: 90%;
    width: 100%;
    height: auto;
  }

  .profile-pic {
    width: 90px;
    height: 90px;
    margin-bottom: 12px;
  }

  h1 {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }

  p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .link-container {
    width: 100%;
    gap: 12px;
  }

  .link-button {
    padding: 12px;
    font-size: 0.95rem;
  }
}
