/* Basic reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Page background */
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #f3ede2;
  background-image:
    linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.35)),
    repeating-linear-gradient(
      0deg,
      rgba(120, 94, 58, 0.03),
      rgba(120, 94, 58, 0.03) 1px,
      transparent 1px,
      transparent 4px
    );
  color: #3d3128;
  font-family: Georgia, "Times New Roman", serif;
}

/* Main card */
.card {
  width: 100%;
  max-width: 430px;
  background: #fbf7ef;
  border: 1px solid #c8b79f;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(61, 49, 40, 0.12);
  padding: 10px;
}

/* Thin inner border for old paper effect */
.inner-border {
  border: 1px solid #d8c9b3;
  border-radius: 10px;
  padding: 28px 24px 24px;
  text-align: center;
}

/* Profile image */
.profile {
  width: 108px;
  height: 108px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 18px;
  border: 3px solid #e6d8c2;
  box-shadow: 0 4px 10px rgba(61, 49, 40, 0.10);
}

/* Small intro line */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a6d52;
  margin-bottom: 10px;
}

/* Name */
h1 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 10px;
  color: #2f241d;
}

/* Description */
.tagline {
  font-size: 1rem;
  line-height: 1.6;
  color: #5a4a3d;
  margin-bottom: 24px;
}

/* Links section */
.links {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid #d8c9b3;
}

/* Buttons/links */
.links a {
  display: block;
  text-decoration: none;
  color: #3d3128;
  background: #efe4d2;
  border: 1px solid #cdb89b;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

/* Hover */
.links a:hover {
  background: #e4d4bc;
  transform: translateY(-1px);
}

/* Small mobile adjustment */
@media (max-width: 480px) {
  .inner-border {
    padding: 24px 18px 20px;
  }

  h1 {
    font-size: 1.75rem;
  }

  .tagline {
    font-size: 0.95rem;
  }
}
