/* basis pagina */
html, body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
 color: #1c1f23;
  background: linear-gradient(135deg, #f7f7f8, #f1e8ec);
  min-height: 100vh;
}

/* contact link */
.contact {
  position: fixed;
  top: 20px;
  right: 25px;
  font-size: 14px;
  color: #6b7c93;
  text-decoration: none;
  transition: 0.2s ease;
}
.contact:hover {
  color: #111;
  transform: translateX(-3px);
}

/* page container */
.page-container {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 0;
}

/* foto */
.photo {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  filter: saturate(0.78) contrast(1.05) brightness(1.03);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* card */
.card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: left;
  align-items: flex-start;
  padding: 44px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
  transition: transform 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
}

/* info */
.info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* tekst */
h1 {
  margin: 0;
  font-size: 42px;
  letter-spacing: 0.3px;
  font-weight: 500;
}

.status {
  font-size: 18px;
  line-height: 1.4;
}

/* verified */
.verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #111;
  font-size: 18px;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background: #1DA1F2;
  border-radius: 50%;
  flex-shrink: 0;
}

.check svg {
  display: block; 
}

/* offline */
.offline {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #9ca3af;
  font-size: 18px;
}

.dot {
  width: 9px;
  height: 9px;
  background: #9ca3af;
  border-radius: 50%;
  position: relative;
}

.dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #9ca3af;
  opacity: 0.6;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  70% { transform: scale(2); opacity: 0; }
  100% { opacity: 0; }
}

/* mobiel */
@media (max-width: 768px) {
  .page-container {
    flex-direction: column;
    align-items: center;
  }

  .photo {
    width: 210px;
    height: 210px;
  }

  .card {
    width: 92%;
    max-width: 240px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
  }

  h1 {
    font-size: 32px;
  }
}
