
/* 📬 Contact Modal */
#contact-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5,5,5,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#contact-content {
  background: #111;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(255,255,255,0.5);
  color: white;
  text-align: center;
}

/* 📝 Contact Form */
#contact-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: white;
}

#contact-content form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 15px;
}

#contact-content input,
#contact-content textarea {
  padding: 10px;
  background: #222;
  border: 1px solid #555;
  border-radius: 6px;
  color: white;
  resize: none;
  font-size: 1rem;
}

#contact-content button {
  padding: 12px;
  background-color: white;
  color: #050505;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

#contact-content button:hover {
  background-color: #FF5733;
  transform: scale(1.05);
}

/* 🔗 Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: white;
  text-shadow: 0 0 10px white;
}
