/* Contact page specific styles */

.contact {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.contact h1 {
  margin-bottom: 20px;
  font-size: 2rem;
}

#contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact-form input,
#contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

#contact-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #3698cc;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

#contact-form button:hover {
  background: #005983;
}

/* Social icons */
.social-icons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333;
  font-size: 22px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  transform: scale(1.1);
  color: #fff;
}

.social-icons a:nth-child(1):hover {
  background: #0077b5; /* LinkedIn */
}

.social-icons a:nth-child(2):hover {
  background: #333; /* GitHub */
}

.social-icons a:nth-child(3):hover {
  background: #d44638; /* Gmail */
}



#notification {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  color: white;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}
#notification.show {
  opacity: 1;
}
#notification.hide {
  opacity: 0;
}
