.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(160deg, #111 0%, #1a0d3c 100%);
  padding: 3rem 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.profile-card {
  background: rgba(30, 0, 50, 0.4);
  border: 1px solid rgba(255, 0, 255, 0.2);
  box-shadow: 0 0 25px rgba(255, 0, 255, 0.3);
  border-radius: 1.5rem;
  padding: 2rem;
  text-align: center;
  width: 320px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
}

.profile-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(251, 0, 255, 0.3);
  object-fit: cover;
  margin-bottom: 1.5rem;
  animation: float 4s ease-in-out infinite;
}

.profile-card img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(255, 0, 255, 0.6);
  transition: all 0.4s ease;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.name {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.tagline {
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 1rem;
  font-style: italic;
}

.intro {
  font-size: 0.95rem;
  color: #cfcfcf;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-btn {
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 25px;
  background: linear-gradient(90deg, #6a00ff, #ff00d4);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}


.home-dock {
  margin-top: 2.5rem; 
  background-color: rgba(30, 0, 50, 0.6);
  border-radius: 1rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 0, 255, 0.2);
  box-shadow: 0 6px 15px rgba(255, 0, 255, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease-out 0.4s forwards;
}

.home-dock .dock-item {
  width: 45px;
  height: 45px;
  background-color: rgba(120, 100, 160, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
  animation: glowPulse 3s ease-in-out infinite;
}

.home-dock .dock-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 15px rgba(255, 0, 255, 0.4);
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(255, 0, 255, 0.3); }
  50% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.6); }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 1rem;
  }

  .profile-card {
    width: 90%;
  }

  .name {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1rem;
  }

  .intro {
    font-size: 0.9rem;
  }

  .home-dock {
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
  }

  .home-dock .dock-item {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .profile-card img {
    width: 140px;
    height: 140px;
  }

  .contact-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
}
