/* Smooth rotation for collapse arrows */
#aboutIcon,
#skillsIcon {
  transition: transform 0.3s ease;
}

/* Better spacing between projects */
.project {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: rgba(150, 230, 220, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Link hover underline effect */
a:hover {
  text-decoration-thickness: 2px;
}

/* Button hover for collapsible sections */
button:hover {
  background-color: rgba(150, 230, 220, 0.3) !important;
}

/* Contact section styling */
#contact a {
  font-weight: 500;
}

/* Footer subtle text */
footer {
  font-size: 0.9rem;
  opacity: 0.8;
}

html {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
}
