/* Home page specific styles */

.doodle {
  position: fixed;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.doodle-1 {
  top: 100px;
  right: 50px;
  width: 80px;
  height: 80px;
  border: 3px solid #ff6b6b;
  border-radius: 50%;
}

.doodle-2 {
  bottom: 150px;
  left: 80px;
  width: 100px;
  height: 100px;
  border: 3px solid #4ecdc4;
  transform: rotate(45deg);
}

.doodle-3 {
  top: 50%;
  right: 100px;
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 80px solid #ffe66d;
}

.wave {
  display: inline-block;
  animation: wave 2s infinite;
  transform-origin: 70% 70%;
}

@keyframes wave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(20deg);
  }
  75% {
    transform: rotate(-20deg);
  }
}

.profile-card {
  background: #fff;
  border: 3px solid #2d2d2d;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 8px 8px 0 #2d2d2d;
  transform: rotate(-0.5deg);
}

.profile-header {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  border: 3px solid #2d2d2d;
  flex-shrink: 0;
}

.avatar .avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  overflow: hidden;
  border-radius: 50%;
}

.intro h2 {
  font-family: "Permanent Marker", cursive;
  font-size: 28px;
  margin-bottom: 10px;
}

.intro p {
  color: #666;
}

.bio-section p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.highlight {
  background: linear-gradient(120deg, #ffe66d 0%, #ffe66d 100%);
  background-repeat: no-repeat;
  background-size: 100% 40%;
  background-position: 0 85%;
  font-weight: 600;
}

.fun-fact {
  background: #f7f7f7;
  border-left: 4px solid #ff6b6b;
  padding: 20px;
  margin: 30px 0;
  border-radius: 8px;
  font-style: italic;
}

.contact-card {
  background: #fff;
  border: 3px solid #2d2d2d;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 8px 8px 0 #2d2d2d;
  transform: rotate(0.5deg);
  text-align: center;
}

.contact-card h2 {
  font-family: "Permanent Marker", cursive;
  font-size: 32px;
  margin-bottom: 20px;
}

.contact-card a {
  color: #4ecdc4;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.contact-card a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .doodle {
    display: none;
  }
}
