/* 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;
}

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

  .doodle {
    display: none;
  }
}

/* About page specific styles */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.tech-category {
  background: white;
  padding: 20px;
  border: 3px solid #2d2d2d;
  border-radius: 12px;
  box-shadow: 4px 4px 0 #2d2d2d;
  transform: rotate(-0.5deg);
  transition: all 0.2s;
}

.tech-category:nth-child(even) {
  transform: rotate(0.5deg);
}

.tech-category:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: 6px 6px 0 #2d2d2d;
  cursor: pointer;
}

.tech-category h3 {
  font-family: "Permanent Marker", cursive;
  font-size: 20px;
  margin-bottom: 15px;
  color: #2d2d2d;
  border-bottom: 2px dashed #4ecdc4;
  padding-bottom: 8px;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #f7f7f7;
  border: 2px solid #2d2d2d;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.tech-tag:hover {
  cursor: pointer;
  background: #ffe66d;
  transform: scale(1.05);
}

.tech-tag.highlight {
  background: #4ecdc4;
  color: white;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.skills-section {
  background: white;
  padding: 30px;
  border: 3px solid #2d2d2d;
  border-radius: 20px;
  box-shadow: 8px 8px 0 #2d2d2d;
  margin: 30px 0;
}

.skills-section h2 {
  font-family: "Permanent Marker", cursive;
  font-size: 28px;
  margin-bottom: 20px;
  color: #2d2d2d;
}

.skill-items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.skill-item {
  color: #2d2d2d;
  padding: 12px 24px;
  border: 3px solid #2d2d2d;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 4px 4px 0 #2d2d2d;
}

.skill-item.highlight {
  background: linear-gradient(135deg, #4ecdc4, #45b8b0);
  color: white;
}

.fun-projects {
  background: white;
  padding: 30px;
  border: 3px solid #2d2d2d;
  border-radius: 20px;
  box-shadow: 8px 8px 0 #2d2d2d;
  margin: 30px 0;
}

.fun-projects h2 {
  font-family: "Permanent Marker", cursive;
  font-size: 28px;
  margin-bottom: 20px;
  color: #2d2d2d;
}

.project-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.project-link {
  display: block;
  padding: 20px;
  background: #f7f7f7;
  border: 3px solid #2d2d2d;
  border-radius: 12px;
  text-decoration: none;
  color: #2d2d2d;
  font-weight: 600;
  text-align: center;
  box-shadow: 4px 4px 0 #2d2d2d;
  transition: all 0.2s;
  font-size: 16px;
}

.project-link:hover {
  background: #4ecdc4;
  color: white;
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 #2d2d2d;
}

.project-emoji {
  font-size: 32px;
  display: block;
  margin-bottom: 10px;
}
