/* Homepage layout */
body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.profile-container {
  margin-bottom: 1.75rem;
}

.profile-photo {
  display: block;
  width: 200px;
  height: 200px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid rgba(58, 83, 67, 0.15);
  border-radius: 50%;
  filter: grayscale(100%) sepia(20%);
  object-fit: cover;
}

h1 {
  margin-bottom: 0.75rem;
  font-size: 2.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

p {
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.02em;
  line-height: 1.5;
  opacity: 0.85;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.icon-links,
.text-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.text-links {
  flex-direction: column;
  align-items: stretch;
  width: min(100%, 260px);
  gap: 0;
  margin-top: 0.5rem;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3a5343;
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.icon-link:hover {
  opacity: 0.65;
  transform: translateY(-2px);
}

.icon-link:focus-visible {
  outline: 2px dashed rgba(58, 83, 67, 0.5);
  outline-offset: 4px;
  border-radius: 2px;
}

.icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.text-link {
  display: block;
  color: #3a5343;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  opacity: 0.55;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  opacity: 1;
  outline: none;
}

/* A short ornamental divider separates Resume and St. Jude Triduum. */
.text-link.lower-menu {
  position: relative;
  margin-top: 5rem;
}

.text-link.lower-menu::before {
  position: absolute;
  top: -1.6rem;
  left: 50%;
  width: 5rem;
  height: 0.9rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 18'%3E%3Cg fill='%233a5343'%3E%3Cpath d='M0 8.5h31v1H0zM89 8.5h31v1H89z' opacity='.55'/%3E%3Cpath d='M31 9 43 3l9 6-9 6zM89 9 77 3l-9 6 9 6z' opacity='.72'/%3E%3Ccircle cx='60' cy='9' r='3.2' opacity='.82'/%3E%3Cpath d='M52 9h4M64 9h4' stroke='%233a5343' stroke-width='1.2' opacity='.6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  content: "";
  opacity: 0.8;
  transform: translateX(-50%);
}
