/* Custom CSS for Hydra Link Bio */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", sans-serif;
  background: #F7F6F2;
  min-height: 100vh;
  overflow-x: hidden;
}

.profile-card {
  background: #A8B2A1;
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 40px 30px;
  max-width: 400px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Profile Section */
.profile-section {
  margin-bottom: 40px;
}

.profile-image-container {
  margin-bottom: 20px;
}

.profile-image {
  width: 120px;
  height: 100px;
  /* border-radius: 50%; */
  /* border: 4px solid rgba(255, 255, 255, 0.3); */
  transition: transform 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.05);
}

.profile-name {
  color: #f4f4f4;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.profile-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Links Section */
.links-section {
  margin-bottom: 30px;
}

.link-button {
  display: block;
  background: rgba(255, 255, 255, 0.9);
  color: #A8B2A1;
  text-decoration: none;
  padding: 15px 25px;
  margin-bottom: 15px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.link-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: left 0.5s;
}

.link-button:hover::before {
  left: 100%;
}

.link-button:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #4a5d3a;
  text-decoration: none;
}

.link-button:active {
  transform: translateY(0);
}

/* Social Media Icons */
.social-section {
  margin-bottom: 20px;
}

.social-icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  margin: 0 10px;
  line-height: 50px;
  text-align: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #4a5d3a;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Decorative Fruits */
.decorative-fruits {
  position: absolute;
  bottom: -20px;
  right: -10px;
  pointer-events: none;
}

.fruit {
  position: absolute;
  font-size: 2rem;
  opacity: 0.7;
  animation: float 3s ease-in-out infinite;
}

.fruit-1 {
  bottom: 0;
  right: 0;
  animation-delay: 0s;
}

.fruit-2 {
  bottom: 20px;
  right: 40px;
  animation-delay: 1s;
}

.fruit-3 {
  bottom: 40px;
  right: 20px;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .profile-card {
    margin: 20px;
    padding: 30px 20px;
  }

  .profile-name {
    font-size: 1.8rem;
  }

  .link-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 1.3rem;
    margin: 0 8px;
  }
}

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

  .profile-image {
    width: 100px;
    height: 100px;
  }

  .profile-name {
    font-size: 1.6rem;
  }

  .fruit {
    font-size: 1.5rem;
  }
}