/* ============================================
   Bio Page — Linktree Style
   ============================================ */

.bio-page {
  min-height: 100vh;
  min-height: 100dvh;
  background: linear-gradient(160deg, var(--navy) 0%, #1a4a6e 40%, var(--teal-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.25rem 3rem;
  position: relative;
  overflow: hidden;
}

.bio-page::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(62, 205, 212, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bio-container {
  width: 100%;
  max-width: 420px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bio-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  margin-bottom: 1.25rem;
}

.bio-avatar picture {
  display: block;
  width: 100%;
  height: 100%;
}

.bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bio-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.35rem;
}

.bio-title {
  font-size: 0.9rem;
  color: var(--teal-light);
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.bio-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.35rem;
}

.bio-location svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.bio-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

.bio-rating .stars {
  color: var(--gold);
  letter-spacing: 1px;
}

.bio-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.bio-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.bio-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.bio-link:active {
  transform: scale(0.98);
}

.bio-link-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bio-link-icon svg {
  width: 22px;
  height: 22px;
}

.bio-link-icon.whatsapp {
  background: #25d366;
}

.bio-link-icon.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.bio-link-icon.website {
  background: var(--teal);
}

.bio-link-icon.maps {
  background: #4285f4;
}

.bio-link-icon svg {
  fill: var(--white);
}

.bio-link-text {
  flex: 1;
}

.bio-link-text strong {
  display: block;
  font-size: 0.95rem;
}

.bio-link-text span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 0.1rem;
}

.bio-link-arrow {
  opacity: 0.5;
  flex-shrink: 0;
}

.bio-link-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
}

.bio-divider {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.75rem 0;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bio-divider::before,
.bio-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.bio-social {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.bio-social a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.bio-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.bio-social svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.bio-footer {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.bio-footer a {
  color: var(--teal-light);
  transition: var(--transition);
}

.bio-footer a:hover {
  color: var(--white);
}

.bio-credit {
  margin-top: 1rem;
}

.bio-credit a {
  color: rgba(255, 255, 255, 0.55);
}

.bio-credit a:hover {
  color: var(--white);
}

.bio-highlight {
  background: rgba(37, 211, 102, 0.15) !important;
  border-color: rgba(37, 211, 102, 0.35) !important;
}

.bio-highlight:hover {
  background: rgba(37, 211, 102, 0.25) !important;
  border-color: rgba(37, 211, 102, 0.5) !important;
}

@media (min-width: 480px) {
  .bio-avatar {
    width: 140px;
    height: 140px;
  }

  .bio-name {
    font-size: 1.75rem;
  }
}
