:root {
  --peach-skin: #f8eee4;
  --deep-navy: #1a2236;
  --teal: #318272;
  --link-blue: #1c3d7a;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--peach-skin);
  min-height: 100vh;
}

.bg-soft-peach {
  background-color: var(--peach-skin);
}

.profile-card {
  width: min(420px, calc(100vw - 32px));
  background-color: #fff;
  border-radius: 20px;
  border: 0;
  box-shadow: 0 20px 45px rgba(24, 32, 51, 0.15);
}

.profile-card .card-body {
  padding: 3rem 2rem;
}

.avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 6px solid #fff;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(23, 33, 50, 0.25);
}

.profile-subtitle {
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
}

.profile-name {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 2.35rem;
  color: var(--deep-navy);
  margin-bottom: 0.35rem;
}

.profile-divider {
  width: 80px;
  border-top: 2px solid #f0e4d9;
  margin: 0.5rem auto 1.5rem;
}

.profile-description {
  color: #5d5f6d;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.social-link {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}

.social-link.linkedin {
  background: #1c3d7a;
}

.social-link.facebook {
  background: #2b5d97;
}

.social-link.x {
  background: #f9623a;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.contact-form-card .contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form-card .contact-form .form-control {
  width: 100%;
}

