/* =========================================================
   BUTTONS (colors unchanged)
   ========================================================= */

.fa-btn i {
  margin-right: 8px;
  font-size: 18px;
}

/* specific colors (UNCHANGED) */
.btn.email { background: #f06273; }
.btn.github { background: #24292f; }
.btn.linkedin { background: #0077b5; }
.btn.resume { background: #159957; }

a.btn,
a.btn:visited {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 10px 18px;
  border-radius: 6px;

  color: white !important;
  text-decoration: none !important;
  border-bottom: none !important;

  font-weight: 200;
  margin-right: 10px;
  transition: transform 0.15s ease-in-out;
}

a.btn:hover {
  transform: translateY(-2px);
}

.button-row {
  margin-top: 14px;
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}


/* =========================================================
   CAYMAN HEADER REFINEMENT
   ========================================================= */

/* =========================================================
   CENTERED PHOTO IN CAYMAN TITLE BAR
   ========================================================= */

.cayman-header-wrap {
  display: flex;
  flex-direction: column;   /* stack vertically */
  align-items: center;      /* center horizontally */
  justify-content: center;
  gap: 12px;
  text-align: center;
}

/* Larger circular image */
.cayman-header-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255,255,255,0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Center text */
.cayman-header-text {
  text-align: center;
}

/* Adjust spacing in banner */
.page-header {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

/* Clean title spacing */
.page-header .project-name {
  margin: 0;
  font-size: 2rem;
}

.page-header .project-tagline {
  margin-top: 0.4rem;
  font-size: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
  .cayman-header-photo {
    width: 110px;
    height: 110px;
  }
}